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

/* ★★★全体設定 */
html {
    overflow: auto;
}
body{
	background-color: #FFFFFF;
	font-family: YuGothic,'游ゴシック','DIN Next W01 Regular','ＭＳ Ｐゴシック','MS P Gothic','MS-PGothic','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',Osaka,arial,helvetica,clean,sans-serif;
	font-weight:normal;
	font-size: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
}
body.page{
	padding-left: 0;
	padding-right: 0;
}
.page .entry-content{
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
}
a {
	text-decoration: none;
}
li {
	list-style-type: none;
}
/* ★★★罫線設定 */
hr {	
	border: 0.5px solid #CCCCCC;
	width: 100%;
	margin-top: 3px;
	margin-bottom: 3px;
}
.dotted{	
	border: 0.5px dotted #CCCCCC;
	width: 100%;
	margin-top: 3px;
	margin-bottom: 3px;
}
/* ★★★フッターの共通設定 */
#footer {
	background: #002060;
	color: #FFFFFF;
	width：100%;
    border-top: solid 3px #000000;
	padding-top: 0em;
	padding-bottom: 0em;
}
#footer a{
	color: #FFFFFF;
	text-decoration: none;
}

/* ★★★ヘッダー設定 */
/* ★PC用 */
#header {
	width: 100%; /*★ヘッダーの幅*/
	background: #FFF2CC;
	color: #000000;
    text-align: center;
    border-top: solid 3px #000000;
    border-bottom: solid 3px #000000;}
#header a{
	color: #000000;
	text-decoration: none;
}
#header img{
    display: flex;
    align-items: center;
}

/* ★スマホ用 */
#headerismobile {
	width: 100%; /*★ヘッダーの幅*/
	background: #FFF2CC;
	color: #000000;
    text-align: center;
    border-top: solid 3px #000000;
    border-bottom: solid 3px #000000;}
}
#headerismobile a{
	color: #000000;
	text-decoration: none;
}
#headerismobile img{
    display: flex;
    align-items: center;
}

/*★ヘッダーメニューの設定*/
#header_menu{
	width: 100%;
	position: fixed;
	z-index: 9999;
}
/* ★ハンバーガーメニュー */
.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: #002060;
}
.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: #002060;
}
.menu-content ul {
    padding: 100px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
    line-height:200%;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    position: relative;
    line-height:200%;
    margin-top: 10px;
}
.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の値を変更してメニューを画面外へ*/
    background-color: #002060;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
/* ★★★メニューの設定 */
/* ★PC用 */
#menubar {
	width:100%;
	text-align: center;
	vertical-align: middle;
	background: #0F288C;
	display: inline-block;
}
#menubar li{
	display: inline-block;
	vertical-align: middle;
	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用 */
#content {
	width: 70%;
	text-align: center;
	height: auto;
	color: #000000;
	background: #FFFFFF;
	vertical-align: top;
	margin: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15%;
	padding-right: 15%;
	word-wrap: break-word;
	line-height:140%;
}
#content_en {
	width: 100%;
	height: auto;
	color: #000000;
	background: #FFFFFF;
	vertical-align: top;
	margin: 0;
	padding-top: 100px;
	word-wrap: break-word;
	line-height:140%;
}
#content img {
	padding-top: 0;
	padding-bottom: 0;
}
/* ★スマホ用 */
#contentismobile {
	width: 90%;
	height: auto;
	color: #000000;
	background: #FFFFFF;
	margin-left: 0;
	margin-right: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 5%;
	padding-right: 5%;
   	line-height: 140%;
}
#contentismobile_en {
	width: 100%;
	height: auto;
	color: #000000;
	background: #FFFFFF;
	margin-top: 0;
	margin-left: 0;
	margin-right: 0;		
   	line-height: 140%;
}
/* ★トップページの画像の上のスペースをマイナスに */
.topimage {
	margin-top: -2em;
}
/* ★★★見出しの設定 */
/*（「トップページ」のタイトル用）*/
h1 {
	font-size: 30px;
	color: #000000;
	text-align: center;
	margin-bottom: 20px;
	font-style:nomal;
	text-decoration: none;
}
/*（「会社概要 #DDEBF7」「事業概要 #E2EFDA」「採用情報 #FCE4D6」のタイトル用）*/
h2 {
	font-size: 20px;
	color: #333333;
	border:solid 1px #333333;
	padding: 10px 0 10px 20px; 
	margin: 0 0 20px 0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	text-align: center;
}
/*（事業概要の「トラック配送 #F4B183」「倉庫保管 #A9D18E」「流通加工 #9DC3E6」「一日の仕事内容（例）」＋「ココがポイント！ #A6A6A6」タイトル1用）*/
h3 {
	font-size: 20px;
	color: #FFFFFF;
	border:solid 1px #333333;
	padding: 10px 0 10px 20px; 
	margin: 0 0 20px 0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	text-align: center;
	border-top-right-radius:5px;
	border-bottom-right-radius:5px;
	border-top-left-radius:5px;
	border-bottom-left-radius:5px;
}

/* ★★★テーブルの設定（PC用） */
/* ★class="hyou1「トップページの枠td」用 */
#content .hyou1{
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse:separate;
	padding:0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
	border: 0.5px solid #333333;
}
#content .hyou1 th{
	padding: 5px;
	overflow: hidden;
	text-align: left;
	color: #333333;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: middle;
	background: #CCCCCC;
	border-spacing: 0;
	border: 0.5px solid #333333;
}
#content .hyou1 td{
	padding: 5px 10px;
	vertical-align: top;
	text-align: left;
	border-spacing: 0;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
/* ★class="hyou2"（会社概要の表 横線を点線に）用 */
#content .hyou2{
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	padding:0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
	border: 0.5px solid #333333;
}
#content .hyou2 th{
	padding: 5px;
	overflow: hidden;
	text-align: left;
	color: #000000;
	font-style: normal;
	font-weight: bold;
	font-size: 100%;
	word-break: break-all;
	word-wrap: break-word;
	vertical-align: middle;
	background: #F2F2F2;
	border-collapse: collapse;
	border-spacing: 0;
	border-style: dashed none; /* 線種 */
	border-width: 0.5px; /* 線の太さ */
	border-color: #333333; /* 線色 */
}
#content .hyou2 td{
	padding: 5px 10px;
	vertical-align: top;
	text-align: left;
	border-spacing: 0;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	border-style: dashed none; /* 線種 */
	border-width: 0.5px; /* 線の太さ */
	border-color: #333333; /* 線色 */
}
/* ★class="hyou3"（事業概要の「トラック配送[一日の仕事内容（例）] #FBE5D6」「倉庫保管[一日の仕事内容（例）] #E2F0D9」「流通加工[一日の仕事内容（例）] #DEEBF7」「ココがポイント！ #EDEDED」テーブル用） */
#content .hyou3{
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border: 0.5px solid #000000;
	background-color: #FBE5D6;
}
#content .hyou3 td{
	padding: 10px;
}
/* ★class="hyou4"「事業概要」のhyou3内の行間を狭くする為 */
#content .hyou4{
}
#content .hyou4 td{
	line-height: 1.0;
	padding: 0;
}
/* ★class="hyou5"（採用情報の表）用 */
#content .hyou5{
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	padding:0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
	border: 0.5px solid #333333;
}
#content .hyou5 th{
	padding: 5px 10px;
	vertical-align: top;
	text-align: center;
	border-spacing: 0;
	background-color: #F2F2F2;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	border: 0.5px solid #333333;
}
#content .hyou5 td{
	padding: 5px 10px;
	vertical-align: top;
	text-align: center;
	border-spacing: 0;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	border: 0.5px solid #333333;
}
/* ★class="hyou1"スマホ用 */
#contentismobile .hyou1{
	width:100%;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border: 1px solid #333333;
	border-collapse:separate;
	padding:0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
}
#contentismobile .hyou1 th{
	display: block;
	padding: 5px;
	overflow: hidden;
	color: #333333;
	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 #333333;
}
#contentismobile .hyou1 td{
	display: block;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #333333;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
/* ★class="hyou2"スマホ用 */
#contentismobile .hyou2{
	width:100%;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border: 1px solid #333333;
	border-collapse:separate;
	padding:0;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
}
#contentismobile .hyou2 th{
	display: block;
	padding: 5px;
	overflow: hidden;
	color: #333333;
	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 #333333;
}
#contentismobile .hyou2 td{
	display: block;
	padding: 5px 10px;
	vertical-align: top;
	border: 0.5px solid #333333;
	background-color: #FFFFFF;
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
}
/* ★class="hyou3"（事業概要の「トラック配送[一日の仕事内容（例）] #FBE5D6」「倉庫保管[一日の仕事内容（例）] #E2F0D9」「流通加工[一日の仕事内容（例）] #DEEBF7」「ココがポイント！ #EDEDED」テーブル用） */
#contentismobile .hyou3{
	overflow: hidden;
	word-break: break-all;
	word-wrap: break-word;
	border-collapse: collapse;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4); 
	border-spacing: 0;
	border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	border-top-left-radius: 5px;
	border-bottom-left-radius: 5px;
	border: 0.5px solid #000000;
	background-color: #FBE5D6;
}
#contentismobile .hyou3 td{
	padding: 8px;
}
/* ★class="hyou4"「事業概要」のhyou3内の行間を狭くする為 */
#contentismobile .hyou4{
}
#contentismobile .hyou4 td{
	line-height: 1.0;
	padding: 0;
}
/* ★★★ページの一番上にもどるボタンの設定 */
/* （参考）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: #305496;
	color: #FFFFFF !important; /* 白 */
	font-weight: bold;
	text-decoration: none;
	text-align: center;
	vertical-align:bottom;
}

/* ★★★Webアイコンフォントの設定 */
.fa {
	display: inline-block;
	color:#FFFFFF; /* 白 */
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
/*この下、酒造組合用*/
#content .btn_hp{
	display: table;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF; /* 白 */
	text-align: center;
	border-top-right-radius:15px;
	border-top-left-radius:15px;
	border-bottom-right-radius:15px;
	border-bottom-left-radius:15px;
	background: #000000;
	padding: 20px 50px 20px 50px;
	margin-bottom: 10px;
	text-decoration: none;
}
#content_en .btn_hp{
	display: table;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF; /* 白 */
	text-align: center;
	border-top-right-radius:15px;
	border-top-left-radius:15px;
	border-bottom-right-radius:15px;
	border-bottom-left-radius:15px;
	background: #000000;
	padding: 20px 50px 20px 50px;
	margin-bottom: 10px;
	text-decoration: none;
}
#contentismobile .btn_hp{
	display: table;
	font-size: 18px;
	font-weight: bold;
	color: #FFFFFF; /* 白 */
	text-align: center;
	border-top-right-radius:15px;
	border-top-left-radius:15px;
	border-bottom-right-radius:15px;
	border-bottom-left-radius:15px;
	background: #000000;
	padding: 20px 20px 20px 20px;
	margin-bottom: 10px;
	text-decoration: none;
}
/* ★★★トピックス・新着情報・インフォメーションの設定 */
.topics ul, .news ul, .information ul {
	padding: 5px 10px 0 10px;
}
.topics li, .news li, .sakagura, .information li {
	font-size: 100%;
	line-height:100%;
	list-style: none;
}
.topics li a, .news li a, .information li a {
	text-decoration: none;
}
.shadow{
	/* 角を丸くする */
	border-top-right-radius:0;
	border-bottom-right-radius:0;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
	/* 影をつける */
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4);/* 影を付ける */
	/* ボーダー色 */
	border: none;
}
#archive img{
	/* 角を丸くする */
	border-top-right-radius:0;
	border-bottom-right-radius:0;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
	/* 影をつける */
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4);/* 影を付ける */
	/* ボーダー色 */
	border: none;
}
#content .news img{
	/* 角を丸くする */
	border-top-right-radius:0;
	border-bottom-right-radius:0;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
	/* 影をつける */
	box-shadow: 5px 5px 5px rgba(0,0,0,0.4);/* 影を付ける */
	/* ボーダー色 */
	border: none;
}
/* ★★★お問い合わせフォームの設定 */
.forms {
	margin-top: 0;
	margin-left: -2.5em;
	margin-right: 0;
	margin-bottom: 0;
}
.forms li {
	margin: 0;
	list-style: none
}
.forms label {
	cursor: pointer;
	display: block;
}
.forms input,.forms textarea {
	border: 1px solid #333333;
	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
}
/* ★★応募フォームの設定 */
input, select, option {
	font-size: 100%;
}
#content textarea {
	width:100%;
	height:100px;
}
#contentismobile textarea {
	width:90%;
	height:100px;
}

/* ★Gtranslateの設定*/
.gtranslate_wrapper{
	margin-top: 1px;
	margin-bottom: 5px;
	position: fixed;
	font-size: 14px;
}
/* ★Gtranslateの[gt-list]の設定*/
.drop-down-menu {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  font-size: 14px;
  font-weight: bold;
  width: auto;
  position: fixed;
}
.drop-down-menu li {float: left; width: 200px;}
.drop-down-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  background-color: #000000;
  display: block;
  padding: 5px;
}
.drop-down-menu li:hover a {
  background-color: #000000;
}
.drop-down-menu1 li:hover ul {
  display: block;
}
.drop-down-menu li ul {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: none;
}
.drop-down-menu li:hover ul {display: block;}
.drop-down-menu li ul a {
  display: block;
  text-decoration: none;
  color: #FFFFFF;
  text-align: left;
  vertical-align: middle;
  background-color: #000000;
}
.drop-down-menu li ul a img{
  vertical-align: bottom;
}
.drop-down-menu li ul li:hover a {
  background-color: #555555;
}

