@charset "utf-8";
/*--------------------------------------------------------
                        PC用
----------------------------------------------------------*/

/* 共通の設定 */

* {
  margin: 0px;
}

body {
  margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: #ffffff;	/*背景色*/
	color: #78736f;		/*文字色*/
	line-height: 2;		/*行間*/

}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

p {
  margin-top: 10px;
  font-size: 92%;
  text-align: left;
}

/* ヘッダー設定 */

header {
  width: 100%;
  background-color: #000000;
  padding: ;
  margin: 0px;
}

header h1 {
  font-size: 65%;
}

.header {
  display: inline-block;
}

/* リンク設定 */


/* 画像リンクホバー設定 */

a:hover img {
  opacity: 0.4;
  filter: alpha(opacity=40);
  -ms-filter: "alpha( opacity=40 )";
  transition: all 0.3s linear;
}

/* 画像に文字を重ねる設定 */
.img-text {/*親div*/
  position: relative;/*相対配置*/
  }
.img-text img {
  margin-top: 80px;
}
.img-text h1 {
  color: #696969;
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }
.img-text p {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  }

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

/*----- 見出し設定 -----*/

h1 {
  color: rgb(255, 255, 255);
  font-size: 200%;
  font-weight: bold;
}

h2 {
  color: rgb(70, 70, 70);
  width: 100%;
  font-size: 200%;
  font-weight: bold;
  padding-left: 10px;
  padding-bottom: 7px;
  text-align: center;
}

h3 {
  font-size: 120%;
  margin-top: 25px;
  margin-left: 0px;
  text-align: center;
}

h4 {
  font-size: 120%;
  font-weight: bold;
  padding-top: 20px;
  padding-left: 1px;
  text-align: center;
  color: rgb(85, 85, 85);
}

h5 {
  padding-top: 15px;
  text-align: left;
}

/*----- リスト設定 -----*/
ul {
  list-style: none;
  padding-left: 1px;
}


/*----- フォント設定 -----*/

.font-red {
  color: #ff0000;
}

.font-blue {
  color: #3580c9;
  font-size: 120%;
  font-weight: bold;
  font-family: fantasy;
}

.font-yellow {
  color: #ffb100;
  font-size: 170%;
  font-weight: bold;
}

.font-orange {
  color: orange;
  font-size: 150%;
}

.font-green {
  color: #798662;
  font-weight: bold;
}

.font-bold {
  font-weight: bold;
}

.font-plantitle {
  font-size: 100%;
  color: black;
  font-weight: bold;
}

.font-small {
  font-size: 65%;
}

/*----- フィギュア設定 -----*/
.relative {
    position: relative;
}
.absolute {
    position: absolute;
    bottom: 0px;
    color: #fff;
    background: rgba(100, 100, 100, 0.6);
    width: 100%;
    padding: 1px 0;
}
.absolute p {
    margin: 0;
    padding: 0 1px;
    font-size: 14px;
    text-align: center;
}

/*----- 価格設定 -----*/
.price h2{
  font-size: 130%;
  color: rgb(82, 82, 82);
  border: solid 3px;
  border-radius: 15px;	/*角丸の指定*/
  padding: 1px 1px;
  text-align: center;
  width: 80%;
  margin: 20px auto;
}
.priceTable {
    border-collapse: collapse;     /* セルの線を重ねる */
    margin: auto;
}
.priceTable th,td {
    border: solid 1px;              /* 枠線指定 */
    padding: 10px;      /* 余白指定 */
    font-weight: bold;
}

/*----- footer -----*/
.footer-content {
	padding: 20px;		/*ブロック内の余白*/
	text-align: center;	/*テキストを中央に*/
	font-size: 11px;	/*文字サイズ*/
  background: #282828;
}

.footer-content li {
	display: inline-block;	/*簡易的に横並びにする*/
	padding: 0 10px;		/*上下、左右への余白*/
}

.footer-content a {
	text-decoration: none;
}


.copyright {
  width: 100%;
  margin: 0 auto;
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  text-align: center;
  font-size: 100%;
  color: #b5b5b5;
  text-decoration: none;
}
.copyright a {
  color: #b5b5b5;
  text-decoration: none;
}


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}


/*---------------------------------------------------------------------
 以下、タブレット縦（ディスプレイ幅が768px）より小さい画面に使われるCSS
-----------------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  h1 {
    color: black;
    width: 80%;
    font-size: 90%;
    font-weight: normal;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 7px;
    text-align: left;
    z-index: 2;
  }
h2{
  font-size: 150%;
}
 /* 画像に文字を重ねる設定 */
.img-text {
  position: relative;/*相対配置*/
  }
.img-text h1 {
  color: #696969;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 20px;
  }
.img-text p {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 13px;
  }

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

  .footer_content {
    position: relative;
    bottom: 0;
    width: 100%;
    clear: both;
  }
  .image-none {
    display: none;
  }
}

/*------------------------------------------------------------------------
 以下、スマートフォン（ディスプレイ幅480px以下）より小さい画面に使われるCSS
--------------------------------------------------------------------------*/

@media screen and (max-width: 480px) {
  body {
    font-size: 90%;
  }

  h1 {
    font-size: 30%;
    font-weight: bold;
  }

  h2 {
    font-size: 120%;
  }

  h3 {
    font-size: 120%;
  }

  /* 画像に文字を重ねる設定 */
.img-text {
  position: relative;/*相対配置*/
  }
.img-text h1 {
  color: #696969;
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  font-size: 20px;
  }

.img-text p {
  font-size: 13px;
  }
  /*----- テーブル設定 -----*/
  table {
    font-size: 10px;
  }

  .head-dial {
    padding-top: 50ex;
  }

  .image-none {
    display: none;
  }

  /* 下部リンクアイコン設定 */
  .copyright {
    font-size: 90%;
  }

  
}
