@charset "utf-8";

/* -------- basic -------- */

html {
  font-size:62.5%;
}

body {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
  padding: 10px;
/*  background-color: #f6f7fb; 2018/10/22 */
  background-color: #f8f8f8;
  color: #333;
  font-size: 1.2rem;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

a:link, a:visited, a:hover, a:active {
  color: #000080;
  text-decoration: none;
}
.language {
  position:absolute;
/*  top:488px; */
  top: 600px;
/*  left:730px; */
  left: 860px;
  background-color:#003399;
  line-height: 20px;
}

.language a {
  color:#ffffff;
}

/* -------- header and footer -------- */

.header {
  padding: 25px 0;
  border-bottom: none;
}

.header h1 {
/*  width: 800px; */
  width: 940px;
/*  height: 320px; 2018/10/22 */
/*  height: 490px; */
  height: 600px;
  background-color: #ffffff;
}

.header h1 p {
/*  margin-top: 4px; 2018/10/22 */
  display: inline-block;
/*  line-height: 280px; 2018/10/22 */
  line-height: 60px;
  vertical-align: middle;
}

.title {
/*  position: absolute; 2018/10/22 */
/*  top: -50px; 2018/10/22 */
  left: 20px;
/*  width: 800px; */
  width: 940px;
  font-size: 2.5rem;
/*  color: #ff3333; */
/*  color: #fa58ac; 2018/10/22 */
  color: #800080;
  text-align:center;
}

.footer {
  padding: 25px 0;
  border-bottom: none;
}

.footer div {
/*  width: 800px; */
  width: 940px;
  height: 80px;
  text-align: center;
/*  background-color: #ff6600; */
/*  background-color: #fa58ac; 2018/10/22 */
  background-color: #ffffff;
}

.footer div p {
  margin-top: 4px;
  line-height: 80px;
  display: inline-block;
  vertical-align: middle;
/*  color: #ffffff; 2018/10/22 */
  color: #800080;
  font-weight: bold;
}

/* -------- logo -------- */

.logo {
  margin-left: 0px;
  width: 96px;
  height: 48px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}

.logo:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

/* -------- navigation -------- */

.nav {
  margin: 0 auto 10px;
/*  height: 1160px; 2018/10/22 */
/*  height: 1062px; */
  height: 1110px;
}

.nav-j {
  margin: 0 auto 10px;
/*  height: 1160px; 2018/10/22 */
/*  height: 1062px; */
  height: 1068px;
}

.nav-item {
  margin-top: 20px;
  text-align: center;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 1.4rem;
}

.nav-item a {
  display: inline-block;
}

.nav-item a::after {
  content: '';
  display: block;
  width: 0px;
  margin: 6px auto 0;
  border-bottom: 1px solid #000080;
  transition: width 0.3s ease-in-out;
}

.nav-item a:hover::after {
  width: 100%
}

.trick ul {
  display: none;
}

.trick:hover ul {
  display: block;
}

.nav-item .sub {
  margin-left: 32px;
  text-align: left;
  list-style-type: disc;
  color: #0000e0;
  font-size: 1.4rem;
}

.nav-item .sub2 {
  margin-left: 20px;
  text-align: left;
  list-style-type: disc;
  color: #0000e0;
  font-size: 1.4rem;
}

.nav-item .sub a {
  color: #0000e0;
}

.nav-item .sub a::after {
  border-bottom: 1px solid #0000e0;
}

.nav-item .sub2 a {
  color: #0000e0;
}

.nav-item .sub2 a::after {
  border-bottom: 1px solid #0000e0;
}

.counter {
  width: 120px;
  height:30px;
}

/* -------- item -------- */

.item {
/*  width: 160px; */
  width: 188px;
  margin-bottom: 4px;
  padding: 8px;
/*  border-bottom: 3px solid; 2018/10/22 */
  border-radius: 5px;
  background-color: #fff;
  font-size: 1.4rem; 
}

.item .image {
/*  margin: auto; */
  display: block;
  width: 100%;
  height: 96px;
}

.item .category {
  margin: 15px 9px 10px;
/*  color: #aaa; 2018/10/22 */
  color: #333;
  letter-spacing: 1px;
  font-family: "trebuchet MS", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.item .category::before {
  content: '';
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 5px;
  border: 2px solid;
  border-radius: 50%;
  vertical-align: -5px;
}

.item .description {
  margin: 10px;
  line-height: 1.5;
}

.item .urgent {
  margin: 10px;
  line-height: 1.5;
  color: #800080;
  font-weight: bold;
  font-size: 1.4rem;
}

.item > a {
  display: block;
  margin: -8px -8px -11px;
  padding: 8px 8px 11px;
  border-radius: inherit;
/*  color: #777; 2018/10/22 */
  color: #333;
  transition: all 0.3s;
}

.item > a:hover {
  box-shadow: 0 0 6px -1px rgba(0, 0, 0, 0.3);
  opacity: 0.6;
}

.item-info,
.item-info .category::before {
  border-color: #800080;
}

.item-sub,
.item-sub .category::before {
  border-color: #ff00ff;
}

.item-main,
.item-main .category::before {
  border-color: #0000ff;
}

.item-tools,
.item-tools .category::before {
  border-color: #00ff00;
}

.item-everybody,
.item-everybody .category::before {
  border-color: #00ffff;
}

.item-others,
.item-others .category::before {
  border-color: #ffff00;
}

.item-m {
/*  width: 324px; */
  width: 380px;
}

.item-m .image {
  width: 100%;
/*  height: 204px; 2018/10/22 */
  height: 120px;
}

.item-l {
/*  width: 652px; */
  width: 764px;
}

.item-l .image {
  height: 300px;
/*  height: 403px; */
}

.item-x {
/*  width: 816px; */
  width: 956px;
}

/* --------  -------- */
