/* ===================================================================
CSS / elephant studio 2011
=================================================================== */

@charset "utf-8";
body {
  background-color: #000;
}

/*フッタ固定用*/
body main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a img {
  transition: 0.3s; /*0.3秒かけて変化させる（hoverとセット）*/
}
a img:hover {
  opacity: 0.7; /*要素の透明度を指定*/
  filter: alpha(opacity=70); /*ie6、7の透明度指定*/
  transition: 0.3s;
}
a:focus, *:focus {
  outline:none; /*画像リンクの破線・青線を消す*/
}

/* メニュー ************************/
.bg-dark {
    background-color: rgba(0, 0, 0, 0.8)!important;
}
#navbarCollapse .navbar-nav .nav-item {
  border-right: solid 1px #666;
  padding: 0 10px;
}
/* ▼表示領域が768px未満の場合 */
@media screen and (max-width: 767px) {
  #navbarCollapse .navbar-nav .nav-item {
  border-right: none;
}
}

/* メインビジュアル ************************/
#main_wrp {
  position: relative;
  width: 100%;
}
#main_wrp img{
  width: 100%;
}

/* メインビジュアルの切り替え ************************/
img.small { display: none; }

/* ▼表示領域が1200px以上の場合 */
@media screen and (min-width: 1200px) {
  img.small { display: none; }  /* miniを非表示 */
  img.midium  { display: none; } /* bigを表示 */
  img.large  { display: block; } /* bigを表示 */
}

/* ▼表示領域が768px-1200pxの場合 */
@media screen and (max-width: 1199px) {
  img.small { display: none; } /* miniを表示 */
  img.midium  { display: block; }  /* bigを非表示 */
  img.large  { display: none; }  /* bigを非表示 */
}

/* ▼表示領域が768px未満の場合 */
@media screen and (max-width: 767px) {
  img.small { display: block; } /* miniを表示 */
  img.midium  { display: none; }  /* bigを非表示 */
  img.large  { display: none; }  /* bigを非表示 */

/*   #main_wrp img{
  width: 100%;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
} */
}

/* コンテンツイメージ ************************/
.contents_wrp {
  width: 100%;
  margin: 0;
  background-color: #000;
  padding-bottom: 100px;
}

.contents_box {
  padding: 0;
}

.contents_box img {
  width: 100%;
}

/* フッター ************************/
.footer_wrp {
  width: 100%;
  text-align: right;
  padding: 30px 16px 0px;
  margin-top: auto;/*フッタ固定用*/
}
.footer_img {
  margin: 0;
}

/* コーポレート ************************/
.corporate_wrp {
  background-image: url(../images/corporate_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-attachment: fixed;
}
.corporate_title {
  width: 80%;
  max-width: 960px;
  margin: 100px auto 0px auto;
  font-size: 1.5rem;
  color: #ccc;
}
.corporate-tbl {
  width: 80%;
  max-width: 960px;
  margin-bottom: 100px;
  border-collapse: collapse;
  margin-top: 10px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}
.corporate-tbl td, .corporate-tbl th {
	border: 1px solid #444;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
	color: #ccc;
  font-size: 15px;
  background-color: rgba(17,17,17,0.8);
}
.corporate-tbl th {
  font-weight: normal;
  background-color: rgba(51, 51, 51, 0.8);
}

@media screen and (max-width: 767px) {
  .corporate_wrp {
  background-image: url(../images/corporate_bg.jpg);
  background-repeat: no-repeat;
  background-position: 60% 0%;
  background-attachment: fixed;
  }
  .last td:last-child {
    border-bottom: solid 1px #444;
    width: 100%;
  }
  .corporate-tbl {
    width: 80%;
  }
  .corporate-tbl th, .corporate-tbl td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
  .corporate-tbl th {
  padding-top: 2px;
  padding-bottom: 2px;
}
}

/* 商品説明 ************************/
.new_item_wrp {
  position: relative;
  width: 100%;
  margin: 0 0 50px;
}
.new_item_wrp .col-md-6 {
  padding: 0px;
}
.new_item_wrp img{
  width: 100%;
}
/* 商品名画像の切り替え ************************/
/* ▼表示領域が768px以上の場合 */
@media screen and (min-width: 768px) {
  .pc_txt { display: none; }
}
/* ▼表示領域が768px未満の場合 */
@media screen and (max-width: 767px) {
  .sp_txt { display: none; }
}

.item_txt_wrp {
  width: 80%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #ccc;
}
.item_txt_jp {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #666;
}
.item_name {
  font-size: 22px;
  line-height: 1.1;
  border-left: solid 10px #1e9121;
  padding-left: 6px;
}
.item_price {
  color: #d00;
}

.order_btn_wrp {
  text-align: center;
  height: 100px;
}
.btn-push {
  display: inline-block;
  width: 70%;
  text-align: center;
  background-color: #1e9121;
  font-size: 22px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 6px;
  border-radius: 4px;
  border-bottom: 4px solid #060;
  margin: 30px 0px;
}

.btn-push:hover {
    text-decoration: none;
    color: #FFF;
}

.btn-push:active {
    transform: translateY(4px);
    border-bottom: none;
    text-decoration: none;
    color: #FFF;
}


@media screen and (min-width: 768px) {
  .sp_br {display: none;}
}


/* メールフォーム ************************/
.mf_wrp {
  background-image: url(../images/mf_bg.jpg);
  background-repeat: no-repeat;
  background-position: 60% 0%;
  background-attachment: fixed;
}
.mf_title {
  width: 80%;
  max-width: 960px;
  margin: 50px auto 0px auto;
  font-size: 1.5rem;
  color: #ccc;
  text-align: left;
}
#mailformpro {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  color: #ccc;
}
.must {
  background-image: none;
  box-shadow: none;
  padding: 0px 2px;
  border-radius: 3px;
}
form#mailformpro dl dt {
  border-top:none;
  /* width: 240px; */
}
form#mailformpro dl dd {
  border-top: solid 1px #666;
  /* padding: 10px 5px 20px 250px; */
}
@media screen and (max-width: 767px) {
  .mf_wrp {
  background-image: url(../images/mf_bg.jpg);
  background-repeat: no-repeat;
  background-position: 40% 0%;
  background-attachment: fixed;
}
form#mailformpro dl dd {
  margin-bottom: 10px;
  border-top: none;
}
form#mailformpro dl dt {
  padding-top: 13px;
  border-top: solid 1px #666;
}
}
select.todofuken {
  height: 2em;
  margin-bottom: 5px;
  background-color: #888;
  border: solid 1px #444;
}
input {
  background-color: #ccc;
  border: solid 1px #444;
  color: #333;
}
textarea {
  background-color: #ccc;
  border: solid 1px #444;
  color: #333;
}
button {
  background-color: #1e9121;
  border: none;
  color: #fff;
  border-radius: 4px;
  width: 100px;
}


.mailform_thanks {
  width: 80%;
  max-width: 960px;
  margin: 100px auto 0px auto;
  font-size: 1.1rem;
  color: #ccc;
}









