@charset "UTF-8";
/* CSS Document */

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  	-webkit-text-size-adjust: 100%;
}
img {
	width: 100%;
	display: block;
}
a {
	text-decoration: none;
	color: #000;
}
a:hover {
	opacity: 0.7;
}
p {
	line-height: 1.6;
}
p.catch {
	color: red;
    font-size: 1.8rem;
    font-weight: bold;
}

.right {
float: right;
}
/*==================================================================================
ヘッダー
==================================================================================*/
#header{
position:fixed;
top:0;
padding:0;
margin:0;
width:100%;
background-color:#FFFFFF;
/* height:154px; */
z-index: 10;
}

.btm_border {
	padding: 8px 0!important;
	border-bottom: 2px #fc0000 solid!important;
}
header .logo {
	display: block;
	width: 350px;
}
header .guide {
	display: block;
	width: calc(100% / 7);
	padding: 8px 0;
	background: #6E6E6E;
	color: #fff;
	font-size: 12px;
	text-align: center;
}
.head_nav {
	background: linear-gradient(to bottom, #e4e4e4 0, #fff 80%, #fff 100%);
	border-bottom: 1px #999 solid;
}
.head_nav ul {
	display: flex;
	justify-content: space-between;
	max-width: calc(1200px - 40px);
	width: calc(100% - 40px);
	padding: 0 20px;
	margin: auto;
}
.head_nav ul li {
	display: block;
	width: calc(100% / 6);
	text-align: center;
	border-right: 1px #999 solid;
	background: linear-gradient(to bottom, #e4e4e4 0, #fff 80%, #fff 100%);
}
.head_nav ul li:first-child {
	border-left: 1px #999 solid;
}
/* .head_nav ul li:last-child {
	background: #1e6c93;
} */
.head_nav ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: calc(100% - 12px);
	padding: 6px 0;
	font-size: 12px;
	position: relative;
}
.head_nav ul li a p {
	padding: 0 10px 0 20px;
    line-height: 1.3;
}
/* .head_nav ul li:last-child a {
	color: #fff;
} */
/* ロールオーバー */
.head_nav ul li a:hover {
	opacity: 1;
}
.head_nav ul li a::before {
	content: "\025b6";
	font-size: 10px;
	color: #000;
	position: absolute;
	top: 50%;
	left: 10px;
	margin-top: -5px;
}
/* .head_nav ul li:last-child a::before {
	color: #fff;
} */
.head_nav ul li a.on::before {
	color: #fc0000;
}
.head_nav ul li a:hover::before {
	color: #fc0000;
}


/* スマホ版 メニュー -----------------------*/
nav.globalMenuSp {
	width: calc(100% - 40px);
	max-width: calc(480px - 40px);
	height: calc(100% - 40px);
	padding: 20px;
    background: rgba(0,0,0,0.85);
    color: #fff;
    transition: all 0.6s;
    z-index: 2;
    position: fixed;
    top: 0;
    right: -100%;
}
nav.globalMenuSp ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    width: 100%;
}
nav.globalMenuSp ul li {
	width: 100%;
	border-bottom: 1px #fff solid;
}
nav.globalMenuSp ul li:nth-child(1),
nav.globalMenuSp ul li:nth-child(2) {
	width: auto;
	border-bottom: none;
	margin-bottom: 20px;
}
nav.globalMenuSp ul li:nth-child(1) p {
    font-size: 18px;
	font-weight: bold;
}
nav.globalMenuSp ul li:nth-child(2) {
	margin: 0 0 20px 40px;
}
nav.globalMenuSp ul li:nth-child(2) a {
	display: inline;
    padding: 0;
	cursor: pointer;
	font-size: 12px;
}
nav.globalMenuSp ul li:nth-child(2) p {
	font-size: 12px;
}
nav.globalMenuSp ul li a {
    display: block;
    padding: 12px 0;
    color: #fff;
	font-size: 14px;
}
/* 投票ボタン */
/* nav.globalMenuSp ul li:last-child {
	border-bottom: none;
	margin-top: 20px;
}
nav.globalMenuSp ul li:last-child a {
	background: #fff;
	color: #000;
	text-align: center;
}
nav.globalMenuSp ul li:last-child a:hover {
	opacity: 0.8;
} */

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    right: 0;
}
.navToggle {
    display: block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    text-align: center;
    z-index: 3;
    position: absolute;
	top: 7px;
    right: 20px;
}
.navToggle span {
    display: block;
    width: 34px;
    border-bottom: 2px #000 solid;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    position: absolute;
    left: 0;
}
.navToggle span:nth-child(1) {
    top: 6px;
}
.navToggle span:nth-child(2) {
    top: 16px;
}
.navToggle span:nth-child(3) {
    top: 26px;
}

/* 最初のspanをマイナス45度に */
.navToggle.active span {
    border-bottom: 2px #fff solid;
}
.navToggle.active span:nth-child(1) {
    top: 16px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}



/*==================================================================================
メイン
==================================================================================*/
.container {
	max-width: calc(1200px - 40px);
	width: calc(100% - 40px);
	padding: 0 20px;
	margin: auto;
}
.row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.row.align_center {
	justify-content: space-between;
	align-items: center;
}
.col3 {
	width: calc(100% / 3 - 22px);
	border: 1px #ccc solid;
	background: rgba(255,255,255,0.50);
	overflow: hidden;
	position: relative;
}
.col3 + .col3 {
	margin-left: 30px;
}
.col4 {
	width: calc(100% / 4 - 17px);
	border: 1px #ccc solid;
	background: rgba(255,255,255,0.50);
	overflow: hidden;
	position: relative;
	font-size: 0.9em;
}
.col4 + .col4 {
	margin-left: 20px;
}
.row .col3 div, .row .col4 div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
}
.row .col3 p, .row .col4 p {
	padding: 0 10px;
}
.row .col3 p + p, .row .col4 p + p {
	margin-top: 5px;
}
.dummy {
	width:100%;
}



h1 {
	font-size: 36px;
	font-weight: normal;
	text-align: center;
	padding: 60px!important;
	box-shadow: 0 0 3px #aaa;
}
h1.top {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background: #000;
	padding: 20px!important;
	box-shadow: none;
}
h1.parts {
	background: linear-gradient(to bottom, #ef5c4a, #fff);
}
h1.assemble {
	background: linear-gradient(to bottom, #ffdd49, #fff);
}
h1.welding {
	background: linear-gradient(to bottom, #5067b0, #fff);
}
h1.formative {
	background: linear-gradient(to bottom, #fab34c, #fff);
}
h1.students {
	background: linear-gradient(to bottom, #4ab779, #fff);
}
h1.special {
	background: linear-gradient(to bottom, #05e1cf, #fff);
}
.container h2 {
	margin-top: 50px;
	margin-bottom: 20px;
	font-size: 24px;
}

.mb_10 {
	margin-bottom: 10px;
}
.mb_15 {
	margin-bottom: 15px;
}
.mb_30 {
	margin-bottom: 30px;
}
.mt_10 {
	margin-top: 10px;
}
.mt_15 {
	margin-top: 15px;
}
.font_20 {
	font-size: 20px;
}
.txt_center {
	text-align: center;
	line-height: 1.2;
}
.bold {
	font-weight: bold;
}
small {
	font-size: 0.8rem;
}

.btn {
	display: block;
	width: 180px;
	padding: 10px 0;
	background: #1e6c93;
	color: #fff;
	text-align: center;
	margin: 0 auto 60px;
}

.gold {
	padding: 10px;
	background: repeating-linear-gradient(0deg, #B67B03 0.1em, #DAAF08 0.2em, #FEE9A0 0.3em, #DAAF08 0.4em, #B67B03 0.5em);
	background: #fceabb;
	background: -moz-linear-gradient(top,  #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%);
	background: -webkit-linear-gradient(top,  #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%);
	background: linear-gradient(to bottom,  #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0 );
}
.red {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #ef5c4a, #ef5c4a80);
}
.yellow {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #ffdd49, #ffde4980);
}
.blue {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #5067b0, #5067b080);
}
.orange {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #fab34c, #fab34c80);
}
.green {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #4ab779, #4ab77980);
}
.sky {
	padding: 7px 10px;
	background: linear-gradient(to bottom, #05e1cf, #05e1cf80);
}


/* index ----------------------------------------*/
.bg_img {
	width: 100%;
	background: url("../img/bg.jpg") center top / cover no-repeat;
	padding: 30px 0;
}

.tb {
	display: none;
}
.sp {
	display: none;
}
.pc {
	display: block;
}
.pc_inline {
	display: inline;
}


/*==================================================================================
フッター
==================================================================================*/
footer {
	padding: 10px 20px!important;
	border-top: 1px #ccc solid!important;
	position: relative;
	width: calc(100% - 40px);
	padding: 0 20px;
	margin: auto;
}

#bottom_menu{
  list-style: none;
  overflow: hidden;
  padding-bottom: 10px;
}


#bottom_menu li {
  float: left;
padding-right:10px;
}
 
#bottom_menu li a {
	font-size:12px;
  text-decoration: none;
}

#bottom_menu li a:hover{
	color:#ff0000;
	}

.logo_amada a {
	display: block;
	width: 100px;
}
.right {
	float: right;
}
#copy{
	padding: 5px 0px!important;
	font-size:10px;
}


@media screen and (max-width : 980px) {	
	
	.tb {
		display: inline;
	}
	p {
		font-size: 14px;
	}
	.sp {
		display: block;
	}
	.pc, .pc_inline {
		display: none;
	}
	
	/*==================================================================================
	ヘッダー
	==================================================================================*/
	#header{
	position:fixed;
	width:100%;
	background-color:#FFFFFF;
	height:50px;
	}

	header .logo {
		width: 260px;
	}
	header .guide {
		display: none;
	}
	.head_nav {
		display: none;
	}
	

	/*==================================================================================
	メイン
	==================================================================================*/
	.row {
		justify-content: space-between;
	}
	.col3 {
		width: calc(100% / 2 - 20px);
		border: 1px #ccc solid;
		padding-bottom: 10px;
	}
	.col3.mb_30 {
		margin-left: 0;
	}
	.col4 {
		width: calc(100% / 3 - 20px);
		border: 1px #ccc solid;
		padding-bottom: 10px;
	}
	.col4.mb_30 {
		margin-left: 0;
	}
	
	h1 {
		font-size: 20px;
		padding: 20px!important;
	}
	h1.top {
		font-size: 20px;
		line-height: 1.2;
	}
	.container h2 {
		font-size: 20px;
	}
	
	.mb_10 {
		margin-bottom: 5px;
	}
	.mb_15 {
		margin-bottom: 10px;
	}
	.mb_30 {
		margin-bottom: 20px;
	}
	.mt_15 {
		margin-top: 10px;
	}
	.font_20 {
		font-size: 16px;
	}
	p.catch {
		font-size: 1.6rem;
	}
	
/*==================================================================================
フッター
==================================================================================*/

#bottom_menu li {
  width: 100%;
  text-align: left;
  float: left;
}
 
#bottom_menu li a {
	font-size:12px;
  text-decoration: none;
}

#bottom_menu li a:hover{
	color:#ff0000;
	}

.logo_amada a {
	display: block;
	width: 100px;
}

#copy{
	padding: 5px 0px!important;
	font-size:10px;
}

}

@media screen and (max-width : 480px) {
	.tb {
		display: none;
	}
	.sp {
		display: inline;
	}
	.col3 {
		width: calc(100% - 2px);
	}
	.col3.dummy {
		width: 100%;
	}
	.col4 {
		width: calc(100% / 2 - 10px);
	}
}

/*==================================================================================
追記
==================================================================================*/
.anker{
font-size:14px;
text-align: right;
margin-top: 30px;
margin-bottom: 10px;
}
.anker a:hover{
color:#ff0000;
}


/*
.new {
	font-size: 16px;
	width: 150px;
	padding: 5px 10px;
	background:#d31c2e;
	color: #fff;
	text-align: center;
	display: inline-block;
	position: absolute;
	top: 30px;
	left: -43px;
	text-transform: uppercase;
	transform: rotate(315deg);
}
*/
.new {
	font-size: 12px;
	padding: 5px 10px;
	background:#d31c2e;
	color: #fff;
	text-align: center;
	display: inline-block;
	position: absolute;
	text-transform: uppercase;
	border-radius: 3px;
	left: 5px;
	top: 5px;
}


table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
table th,table td{
	padding: 10px;
	text-align: left;
}
table th {
	background-color: #dadada;
}
table tr:nth-child(odd){
	background-color: #eee;
}
table th:nth-child(1){
	width: 40%;
}
table th:nth-child(3){
	width: 15%;
}
table th + th, table td + td {
	border-left: 1px solid #cecece;
}
table tr:nth-last-of-type(1) {
	border-bottom: 1px solid #eee;
}
@media screen and (max-width : 980px) {
	table th,table td{
		font-size: 14px;
	}
}