@charset "utf-8";
/* 
Theme Name:ST304 for G-SYOSHI.COM
Theme URI:http://nkkc.sml.jp/
Description:SympleThemeシリーズ ST304 for G-SYOSHI.COM
Version:20220130
Author:NKKC Inc.(株式会社日本開発カンコーセンター)
Author URI:http://nkkc.sml.jp/
*/


/* ★★★全体設定 */
html {
    overflow: auto;
}
body {
	background: #FFFFFF;
	color: #000000; /* 黒 */
	font-family:'Lato', 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-weight:normal;
	font-size: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	line-height: 140%;
}
/* ★★★リンク色共通設定 */
a {
	color: #000000; /* 黒 */
}
a:hover {
	color: #FF9900; /* オレンジ */	
}
/* ★★★罫線の共通設定 */
hr {
	border: 0.5px solid #666666;
}
.dot{
	border-top: none;
	border-bottom: 1px dashed #666666;
}
/* ★★★imgの共通設定 */
img {
	border: 0.5px solid #666666;
}
/* ★★★フッターの共通設定 */
#footer {
	clear:right;
	width:100%;
	height:auto;
	font-size:14px;
	color:#FFFFFF; /* 白 */
	text-align:center;
	margin-top:0;
	padding:0;
	background: #000000; /* 黒 */
	line-height:200%;
}
#footer img {
	border: solid 0.5px #666666;
}
#footer a {
	color: #FFFFFF !important; /* 白 */
}
#footer a:hover {
	color: #FF9900; /* オレンジ */
}
/* ★★★ヘッダー設定 */
/* ★PC用 */
#header {
	width: 100%;
	text-align: center;
	background: #FFFFFF;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: auto;
	margin-right: auto;
	vertical-align: bottom;
}
#header img{
	margin:0;
	vertical-align:bottom;
	box-shadow: none;
}
#header a{
	color: #FFFFFF; /* 白 */
}
/* ★スマホ用 */
#headerismobile {
	width: 100%;
	background: #000000; /* 黒 */
	margin-top: 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -10px;
}
#header_menu{
	background: #000000; /* 黒 */
}
/* ★★★メニューの設定 */
/* ★PC用 */
#menubar {
	width:100%;
	text-align:left;
	background: #000000; /* 黒 */
	display: inline-block;
	padding: 0px;
}
#menubar li{
	display: inline-block;
	list-style-type:none;
	color:#FFFFFF;
	margin-left:0px;
	margin-right:30px;
}
#menubar li a{
	color:#FFFFFF;
	text-decoration: none;
}
#menubar li a:hover{
	color:#FF9900;
}
.menu{
	padding-left: 15px; /* 一番左のメニュー項目の左の隙間 */
}
/* ★ハンバーガーメニュー（PC・スマホ共通） */
.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 50px;
    width: 50px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #000000; /* 黒 */
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #000000; /* 黒 */
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #000000; /* 黒 */
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/* ★★★コンテンツ（ヘッダーとフッターの間）の設定 */
/* ★PC用 */
#content {
	width:100%;
	text-align:center;
	background: url(img/bg.gif) #FFFFFF;
	margin: 0px;
	padding: 0px;
}
#content a {
	color: #000000; /* 黒 */
}
#content a:hover {
	color: #FF9900; /* オレンジ */
}
/* ★スマホ用 */
#contentismobile {
	width: 100%;
	background: #FFFFFF;
	margin-left: auto;
	margin-right: auto;
	margin-top: 0;
	margin-bottom: 0;
	text-align: left;
	padding-top: 10px;
}
/* ★PC用 */
#main {
	width: 80%;
	height: auto;
	background: #FFFFFF;
	text-align: left;
	vertical-align: top;
	margin-right: auto;
	margin-left: auto;
	padding: 20px 10px 10px 20px;
	word-wrap: break-word;
	line-height:220%;
}
/* ★スマホ用 */
#mainismobile {
	width:95%;
	height:auto;
	background:#FFFFFF;
	margin-top:10px;
	margin-left:auto;
	margin-right:auto;		
   	line-height:210%;
}
/* ★★★見出しの設定 */
h1 {
	font-size: 24px;
	color: #FFFFFF; /* 白 */
	text-align: center;
	background: #666666;
	padding: 5px 0 5px 20px;
	margin: 10px 0 5px 0;
}
/* ★サブタイトルの設定 */
h2 {
	font-size: 20px;
	color: #FFFFFF; /* 白 */
	background: #888888;
	padding: 5px 0 5px 20px;
	margin: 10px 0 5px 0;
}
/* ★Welcartお客様情報「お届け先」用 */
h3 {
	font-weight: bold;
	text-align: center;
	padding: 0;
	margin: 10px 0 5px 0;
	color: #000000; /* 黒 */
}
/* ★新着情報・インフォメーション・トピックスのタイトル用（タブ表示） */
h4 {
	display: table;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF; /* 白 */
	text-align: center;
	border-top-right-radius:5px;
	border-top-left-radius:5px;
	background: #000000; /* 黒 */
	border-top: solid 0.5px #999999;
	border-left: solid 0.5px #999999;
	border-right: solid 0.5px #999999;
	border-bottom: solid 0.5px #999999;
	padding: 5px 15px 0 15px;
	margin-bottom: 0;
	box-shadow: 3px 3px 3px rgba(0,0,0,0.4); /* 影をつける */
}
/*★トピックス用*/
h5 {
	color: #000000; /*黒*/
	border-left:solid 20px #333333; /*濃いグレー*/
	border-bottom: solid 0.5px #333333; /*濃いグレー*/
	padding: 0 5px 0 5px; 
	margin-bottom: 10px;
}
h5 a:hover{
	color: #FF9900 !important;	
}
/* ★Welcart用のサブタイトルの設定 */
h6 {
	font-size: 20px;
	color: #FFFFFF; /* 白 */
	background: #888888;
	padding: 5px 0 5px 20px;
	margin: 10px 0 5px 0;
}
/* ★★★テーブルの設定 */
/* ★class="hyou1"PC用 */
#main .hyou1{
	width: 100%;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border: 0.5px solid #999999;
	border-collapse:separate;
	padding:0;
	border-spacing: 0;
}
#main .hyou1 th{
	width: 20%;
	padding: 5px;
	overflow: hidden;
	color: #221815;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: top;
	background: #CCCCCC;
	border: 0.5px solid #999999;
}
#main .hyou1 td{
	width: 80%;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
/* ★class="hyou1"スマホ用 */
#mainismobile .hyou1{
	width: 100%;
	border: 0.5px solid #666666;
	border-collapse: separate;
	padding: 0;
	border-spacing: 0;
}
#mainismobile .hyou1 th{
	display: block;
	width: auto;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #CCCCCC;
}
#mainismobile .hyou1 td{
	display: block;
	width: auto;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #FFFFFF;
}
/* ★class="hyou2"PC用 */
#main .hyou2{
	width: auto;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border: 0.5px solid #999999;
	border-collapse:separate;
	padding:0;
	border-spacing: 0;
}
#main .hyou2 th{
	width: 25%;
	padding: 5px;
	overflow: hidden;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: top;
	background: #CCCCCC;
	border: 0.5px solid #999999;
}
#main .hyou2 td{
	width: auto;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
/* ★class="hyou2"スマホ用 */
#mainismobile .hyou2{
	width:100%;
	border: 0.5px solid #666666;
	border-collapse:separate;
	padding:0;
	border-spacing: 0;
}
#mainismobile .hyou2 th{
	text-align: left;
	display: block;
	width: auto;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #CCCCCC;
}
#mainismobile .hyou2 td{
	display: block;
	width: auto;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #999999;
	background-color: #FFFFFF;
}
/* class="hyou3"PC用 */
#main .hyou3 table{
	width:100%;
	overflow: hidden;
	padding: 0;
	border: none;
	border-collapse: separate;
	border-radius: 0;
	box-shadow: none; 
	border-spacing: 0;
	word-break: break-all;
	word-wrap: break-word;
}
#main .hyou3 th{
	padding: 5px;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
	vertical-align: top;
	border: none;
}
#main .hyou3 td{
	width: 50%;
	padding: 5px;
	text-align: left;
	vertical-align: top;
	border: none;
}
/* ★class="hyou3"スマホ用 */
#mainismobile .hyou3{
	width:100%;
	border: none; 
	margin-bottom: 10px;
	border: 0.5px solid #666666;
	box-shadow: none; 
	background-color: #FFFFFF;
}
#mainismobile .hyou3 th{
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: none;
	display: block;
	padding: 5px 5px 5px 5px;
	border-radius: 0;
	box-shadow: none;
	vertical-align: top;
}
#mainismobile .hyou3 td{
	border-top: none;
	border-right: none;
	border-left: none;
	border-bottom: none;
	display: block;
	padding: 5px 5px 5px 5px;
	border-radius: 0;
	box-shadow: none; 
}
/* ★★★Q&A、news、informationの設定 */
.qa {
	font-size: 100%;
	color: #000000; /* 黒 */
	line-height:120%;
	list-style-type: none;
}
.qa a{
	text-decoration: none;

}
.qa ul, .news ul, .information ul {
	padding: 5px 10px 0 10px;
}
.qa li, .news li, .information li {
	font-size: 100%;
	color: #000000; /* 黒 */
	line-height:120%;
	list-style-type: none;
}
.qa li a, .news li a, .information li a {
	text-decoration: none;
}
/* ★Q&A、news、informationのテーブル設定 */
.qa table, .news table, .information table {
	width: 100%;
	border-collapse:separate;
	border-spacing: 0;
	margin-top: 0;
}
.qa th, .news th, .information th {
	background-color: #FFFFFF; /* 白 */
	border: none;
}

.qa td, .news td, .information td {
	background-color: #FFFFFF; /* 白 */
	border: 0.5px solid #000000; /* 黒 */
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	line-height: 140%;
}
#archive img{
	border: #666666;
}
#content .topics img{
	border: #666666;
}
/* ★★★お問い合わせフォームの設定 */
.forms {
	margin:0;
}
.forms li {
	margin:0;
	list-style:none
}
.forms label {
	cursor:pointer;
	display:block;
}
.forms input,.forms textarea {
	border:1px solid #000000; /* 黒 */
	border-radius:5px;
	padding:8px;
}
.forms li .error {
	color:red
}
.forms li.textarea .error {
	display:block;
	position:absolute;
	right:0;
	top:0
}
.forms li.buttons button {
	cursor:pointer;
	padding:8px
}
/* ★★★ページの一番上にもどるボタンの設定 */
/* （参考）http://wp.myafi.net/social_box/ */
#pageTop {
	position: fixed;
	bottom: 20px;
	right: 20px;
}
#pageTop a {
	display: inline-block;
	padding: 12px 4px 0 4px;
	border-radius: 30px;
	box-shadow:#ccc 0px 3px 3px; /* 影を付ける */
	width: 35px;
	height: 35px;
	background-color: #999999;
	color: #FFFFFF; /* 白 */
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	vertical-align:bottom;
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
	color: #FF9900 !important; /* オレンジ */
}
/* ★Google翻訳 */
#google_translate_element{
	width:100%;
	background:#FFFFFF;
	text-align:center;
	border-bottom:solid 0.5px #000000; /* 黒 */
}
/* ★以下usces-cartの設定 */
.skuquantity{
	width:50px;
	text-align: center;
	line-height:140%;
	vertical-align: middle;
}
.quantity{
	width:50px;
	text-align: center;
	line-height:140%;
	vertical-align: middle;
}
.skuform .price{
	color: #000000; /* 黒 */
	font-size: 24px;
}
.skuform .em{
	color: #000000; /* 黒 */
	font-size: 20px;
}
.footer_explanation{
	text-align: right;
}
#content .point{
	width:50px;
	text-align: center;
	line-height:140%;
	vertical-align: middle;
}
.used_point{
	width:50px;
	text-align: center;
	line-height:140%;
	vertical-align: middle;
}
/* ★パスワード入力枠が2つ表示されるので、1つをhiddenに*/
input.hidden {
    display: none;
}
.iopt_select{
	font-size: 18px;
}

