
/* --------------------------------------------
 ・共通
 --------------------------------------------*/
body {
  margin: 0; /* 初期値のスペースを無くす */
  /* background: #ccc; */
  background: white;
  font-size: 12px
}
h1, h2, h3 {
  margin-top: 0; /* 初期値のスペースを無くす */
}
/* 全部をラップしているラップの設定 */
#wrapper {
  background: white;
  width: 960px;
  margin: 0 auto; /* 中央揃え */
}


/* マウスストーカー */
#stalker {
  pointer-events: none;
  position: fixed;
  top: -8px;     /* 座標調節（カーソル位置と円の中心を合わせる）*/
  left: -8px;    /* 座標調節（カーソル位置と円の中心を合わせる）*/
  width: 16px;   /* マウスストーカーの直径 */
  height: 16px;  /* マウスストーカーの直径 */
  background: rgba(134,245,8,1);
  border-radius: 50%;
  transform: translate(0,0);
  transition: transform 0.2s;  /* ちょっと遅れてついてくるように */
  transition-timing-function: ease-out;
  z-index: 999;
}

/*upページ上部に戻るボタン*/
#up {
	width:33px;
	height:34px;
	padding:0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 930px;
	background-position: center;
  margin-top: 0px;
  opacity: 0.8;
}
.clear {
  clear: left;
}
.title-description p {
  font-size: 14px;
}

/* --------------------------------------------
・ヘッダー
 --------------------------------------------*/
#header {
  background: #3E3A39;
  overflow: hidden; /* オーバーフローを無くす */
  height: 120px;
  margin-bottom: 70px;
}
.container {
  width: 960px;
  margin: 0 auto;
}
#contact {
  float: right;
  color: #BFC0C0;
  padding: 5px 0px 5px 0px;
}
#logo {
  float: left;
  width: 260px;
  clear: both; /* 前のfloatの影響を受けない */
  padding-top: 13px;
}
#global-navi {
  float:right;
  margin-top: 35px;
}
#header li {
  float: left;
  margin-left: 10px;
}
#header a {
  color: #FFF;
}
ul {
  list-style: none;
}
.cp_btn {
  position: relative;
	display: block;
	text-align: center;
	text-decoration: none;
	color: #FFF;
  opacity: 0.7;
  border-radius: 10px;
  /* border: 1px solid #302c2c; */
}
.cp_btn:hover {
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
  opacity: 1.0;
  color: #FFF;
  transition: .2s;
  padding: 0px 0px ;
  border-radius: 10px;
  background: #201e1e;
  /* border: 1px solid rgba(255, 255, 255, 0.5); */
}

/* ヘッダーメニューアイコン */
/* .menu-icon {
  font-size: 25px;
  padding-top: 21px;
  float: right;
  color: white;
  display: none;
} */
/* 回り込みを解除 */
.clear {
  clear: left;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : rgb(126, 126, 126);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  background :#fff;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);
}

.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  visibility: hidden; /* 領域を確保したまま非表示 */
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible; /* 領域を確保したまま表示 */
}

/* --------------------------------------------
・メイン
 --------------------------------------------*/
#main-feature {
  margin-bottom: 50px;
}
#feature-wrapper {
  text-align: center;
}
#f-image {
  display: cover;
}

/* メインスライドギャラリー */
.gallery-cell {
  width: 33%;
  height: 768px;
  margin-right: 10px;
  }
  .gallery-cell.size-180 { width: 1920px; }
  .gallery-cell.size-large { width: 75%; }

.js-flickity {
  margin-top: 50px;
}
/* ウィンドーで拡大縮小 */
.swiper-slide img { width: 100%; }

/* テキストフェードインー */
.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 500ms;
	}
/* 画面内に入った状態 */
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
  }

/* --------------------------------------------
・メインセクション
 --------------------------------------------*/
#flex-wrapper {
  width: 960px;
  margin: 0 auto;
  display:flex;
  flex-wrap: wrap;
}
.title-text {
  display:block;
}
.left-column {
  width: 75%;
  display:block;
}
.right-column {
  width: 25%;
  display:block;
}
#main-features {
  float: left;
  overflow: hidden;
}
.main-f-section {
  float: left;
  opacity: 1;
}
.main-f-section:hover {
  opacity: 0.5;
  cursor: pointer;
}
.main-f-section-image {
  float: left;
  margin-bottom: 30px;
}
.main-f-section-description {
  float: left;
  width: 350px;
  margin-left: 20px;
  color: #3E3A39;
}
.main-f-section-description h2 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 20px 0 0 0;
}
.main-f-section-description h3 {
  font-size: 16px;
  font-weight: bold;
  border-bottom: 1px solid  #3E3A39;
  padding-bottom: 10px;
  letter-spacing: 1px;
}
.main-f-section-description p {
  padding-top: 3px;
  letter-spacing: 1px;
  line-height: 18px;
}
.swiper-container {
  margin-bottom: 50px;
}

/* レスポンシブ（スマホ）追加しましたー */
@media all and (max-width: 670px) {

  #header {
    background: #3E3A39;
    overflow: hidden; /* オーバーフローを無くす */
    height: 120px;
    margin-bottom: 40px;
  }

  /* .main-f-section-description {
    clear: both;
    overflow-wrap: break-word;
    margin-right: 20px;
    margin-left: 0px;
    margin-bottom: 30px;
    padding-right: 10px;
    padding-left: 10px;   
  } */
  .main-f-section-image {
    margin-bottom: 0px;
    width: 100%;
    overflow: hidden;
    text-align: center;
    margin-left: 10px;
  }
  .main-f-section img {
    width: 80%;
    text-align: center;
  }
  /* #main-features {
    overflow: hidden;
  } */

}

/* --------------------------------------------
・アサイドセクション
 --------------------------------------------*/
#aside-feature {
  float: right;
  overflow: hidden;
  display: inline-block;
}
.aside-f-section-image {
  opacity: 1;
}
.aside-f-section-image:hover {
  opacity: 0.5;
  cursor: pointer;
}
.aside-f-section-description {
  width: 200px;
  margin-bottom: 30px;
}
.aside-f-section-description p {
  color: #3E3A39;
  line-height: 15px;
  margin-top: 5px;
}

/* --------------------------------------------
・新着コメント
 --------------------------------------------*/
 #tsubuyaki {
  color: white; 
  font-size: 18px;
  font-weight: bold;
  padding: 5px auto;
  background: #3E3A39;
  border-radius: 5px;
  text-align: center;
  letter-spacing: 2px;
  width: 960px;
  margin: 0 auto;
  margin-top: 50px;
 }
 #scroll-bar {
  width: 960px;
  height: 500px;
  background-color: #FFF;
  overflow: scroll;
  margin: 0 auto;
  border: 1px solid #E5E5E5;
  margin-top: 20px;
  margin-bottom: 100px;
}
.media-comment {
  margin-top: 30px;
}
.container {
  width: 960px;
  margin: 0 auto;
}
.img-thumbnail {
  width: 100px;
  margin: 0 auto;
  float: left;
}
.media-body {
  margin: 5px 15px 30px 15px;
}
.media-body {
  float: left;
}
.text-message {
  float: left;
}
.text-message {
  letter-spacing: 1px;
}
.hr {
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
}

/* --------------------------------------------
・お問い合わせ
 --------------------------------------------*/
 #contact-space {
  height: 400px;
  background: #E5E5E5;
  text-align: center;
  clear: both;
} 
.c-container {
  width: 960px;
  margin: 0 auto;
}
.contact-description {
  width: 350px;
  color: #3E3A39;
  display: inline-block;
  text-align: center;
}
.contact-description h2 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 3px;
  padding: 90px 0 0 0;
}
.contact-description h3 {
  font-size: 16px;
  font-weight: bold;
  padding-bottom: 15px;
  letter-spacing: 1px;
}
.contact-description p {
  font-size: 14px;
  padding-top: 3px;
  letter-spacing: 1px;
  line-height: 20px;
}
.contact-btn img {
  width: 300px;
  text-align: center;
  margin-top: 5px;
  opacity: 1;
}
.contact-btn img:hover {
  opacity: 0.6;
}

/* --------------------------------------------
・フッター
 --------------------------------------------*/
 #fade-message {
  width: 960px;
  margin: 0 auto;
  text-align: center;
  margin: 50px auto;
 }

/* --------------------------------------------
・フッター
 --------------------------------------------*/
#footer {
  background: #3E3A39;
  overflow: hidden; /* オーバーフローを無くす */
  height: 270px;
}
.f-container {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
.f-container li {
  font-size: 14px;
}
nav {
  text-align: center;
  margin-top: 60px;
  }
  nav ul {
  margin: 0 ;
  padding: 0 ;
  }
  nav li {
  list-style: none;
  display: inline-block;
  width: 10%;
  min-width: 90px;
  }
  nav li:not(:last-child){
  border-right:1px solid #BFC0C0;
  }
  nav a {
  text-decoration: none;
  color: #BFC0C0;
  }
  nav a:hover {
  color:#FFF;
  /* border-bottom:1px solid #FFF; */
  opacity: 1.0;
  }
ul {
  list-style: none;
}
.btn-wrapper {
  text-align: center;
  margin-bottom: 30px;
}
.facebook {
  background: #546a92;
  color: white;
}
.btn {
  width: 200px;
  padding: 8px 30px;
  color: white;
  display: inline-block;
  opacity:0.7;
  border-radius: 4px;
}
.btn:hover {
  opacity: 0.9;
  color: white;
}
.fa {
  margin-right: 5px;
}
.footer-copy {
  color: white;
  opacity: 0.5;
  text-align: center;
  clear: both;
  margin-top: 10px;
  letter-spacing: 1px;
}
.footer-copy p {
  margin-bottom: 10px;
}
.fa-stack {
  color: #554f4e;
}
.sns-icon ul {
  margin: 0 auto;
  justify-content: center;
  align-items: center;
}
.list-unstyled li {
  max-width: 100%;
  justify-content: center;
  margin-left: 20px;
}
.background-circle {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto;
  text-align: center;
  border-radius: 50%;
  background: #01DFA5;
  color: white;
  font-size: 18px;
  padding-top: 8px;
}


/* --------------------------------------------
・お問い合わせページ
 --------------------------------------------*/

.form-container {
  width: 960px;
  margin: 0 auto;
  text-align: center;
}
input, textarea {
  width: 400px;
  margin: 10px 0 10px 0;
  font-size: 18px;
  border: 1px solid #dee7ec;
}
.btn-submit {
  background: #dee7ec;
  color: #889eab;
}
#gender {
  margin: 20px 0 20px 0;
  font-size: 14px;
}
.custom-control-label {
  cursor: pointer;
}
.col-xs-4 {
  margin-left: 15px;
}
.col-xs-8 {
  margin-left: 10px;
  width: 747px;
}
.col-sm-10 {
  text-align: center;
}
.form-control {
  text-align: left;
  font-size: 14px
}
.form-control-lg {
  cursor: pointer;
}
.form-group {
  font-size: 14px;
}
.btn-box {
  text-align: center;
}
.btn-primary {
  margin: 50px 0 100px 0;
  width: 300px;
  background: #3E3A39;
  border: 1px solid #3E3A39;
}
.btn-primary:hover {
  background: #889eab;
  border: 1px solid #889eab;
}

/* --------------------------------------------
・制作実績
 --------------------------------------------*/
.title-line {
  border-bottom: thin solid #BFC0C0;
  margin-bottom: 10px;
}
.callout-primary {
  margin-bottom: 70px;
}
.work-container {
  width: 960px;
  margin-bottom: 80px;
}
.work-container-p1 {
  width: 960px;
  margin-top: 10px;
  margin-bottom: 30px;
  float: left;
  margin: 0 auto;
}
.work-container-p2 {
  width: 960px;
  margin-top: 10px;
  margin-bottom: 30px;
  float: right;
  margin: 0 auto;
}
.sakuhin-content-1 {
  letter-spacing: 10px;
  text-align: center;
  color: #3E3A39;
  font-size: 16px;
  padding: 5px 0;
  width: 140px;
  border: thin solid #BFC0C0;
  border-radius: 5px;
  margin-bottom: 15px;
}
.works-pointer {
  opacity: 1;
  font-style: none;
}
.works-pointer:hover {
  opacity: 0.5;
}
.col-md-7 p {
  width: 430px;
}
.col-md-6 a {
  text-decoration: none;
  color: #3E3A39;
}
/* .col-md-6 a:hover {
  text-decoration: underline;
} */

/* .flex-container {
  display: flex;
  justify-content: space-between;
}
.box-1 {
  flex: 1;
  width: 100%;
  height: 100%;
}
.box-2 {
  flex: 2;
  width: 100%;
  height: 100%;
}
.mov-1 {
  width: 100vw;
}
.mov-2 {
  width: 100vw;
} */

/* --------------------------------------------
・会社について
 --------------------------------------------*/
.tbody-fontsize {
  font-size: 18px;
}


