
/*===========================================
StyleModel Area
===========================================*/
#stylemodel #stylemodel_grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto 26px auto 26px auto 26px auto;
  grid-template-rows: auto auto auto auto;
  grid-gap: 26px;
  padding: 30px 0;
}
@media screen and (min-width: 0) and (max-width: 799px) {
  #stylemodel #stylemodel_grid {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 15px auto;
    grid-template-rows: auto auto;
    grid-gap: 15px;
  }
}
#stylemodel #stylemodel_grid #model {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  position: relative;
}
#stylemodel #stylemodel_grid #model .model_title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
#stylemodel #stylemodel_grid #model .model_title:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center center;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
}
#stylemodel #stylemodel_grid #model .model_title:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1px solid #ffffff;
  pointer-events: none;
}
#stylemodel #stylemodel_grid #model .model_title span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  font-weight: bold;
  word-break: keep-all;
  line-height: 1.2;
  text-align: center;
  color: #ffffff;
  pointer-events: none;
}
#stylemodel #stylemodel_grid #model section h2, #stylemodel #stylemodel_grid #model article h2 {
  padding: 15px 20px;
  font-size: 25px;
  font-size: 1.5625rem;
  -webkit-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  -moz-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  -ms-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  -o-text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);
  background: none;
}
#stylemodel #stylemodel_grid #model section:nth-child(odd) h2, #stylemodel #stylemodel_grid #model article:nth-child(odd) h2 {
  text-align: left;
}
#stylemodel #stylemodel_grid section, #stylemodel #stylemodel_grid article {
  position: relative;
}
#stylemodel #stylemodel_grid section h2, #stylemodel #stylemodel_grid article h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Yu Mincho", "YuMincho", serif;
  word-break: keep-all;
  line-height: 1.2;
  text-align: right;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  z-index: 1;
  pointer-events: none;
}
#stylemodel #stylemodel_grid section img, #stylemodel #stylemodel_grid article img {
  width: 100%;
  height: auto;
}
#stylemodel #stylemodel_grid section .gimmick, #stylemodel #stylemodel_grid article .gimmick {
  overflow: hidden;
}
#stylemodel #stylemodel_grid section a:hover h2, #stylemodel #stylemodel_grid article a:hover h2 {
  background: rgba(0, 53, 89, 0.5);
  color: #ffffff;
}
#stylemodel #stylemodel_grid section a:hover .gimmick img, #stylemodel #stylemodel_grid article a:hover .gimmick img {
  -webkit-transform: translate(0, 0) scale(1.1);
  -moz-transform: translate(0, 0) scale(1.1);
  -ms-transform: translate(0, 0) scale(1.1);
  -o-transform: translate(0, 0) scale(1.1);
  transform: translate(0, 0) scale(1.1);
}
#stylemodel #stylemodel_grid > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}
#stylemodel #stylemodel_grid > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
#stylemodel #stylemodel_grid > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 7;
}
#stylemodel #stylemodel_grid > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
#stylemodel #stylemodel_grid > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 7;
}
#stylemodel #stylemodel_grid > *:nth-child(6) {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
}
#stylemodel #stylemodel_grid > *:nth-child(7) {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
}
#stylemodel #stylemodel_grid > *:nth-child(8) {
  -ms-grid-row: 5;
  -ms-grid-column: 5;
}
#stylemodel #stylemodel_grid > *:nth-child(9) {
  -ms-grid-row: 5;
  -ms-grid-column: 7;
}
#stylemodel #stylemodel_grid > *:nth-child(10) {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
}
#stylemodel #stylemodel_grid > *:nth-child(11) {
  -ms-grid-row: 7;
  -ms-grid-column: 3;
}
#stylemodel #model > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
#stylemodel #model > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
#stylemodel #model > *:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}
#stylemodel #model > *:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}

/*===========================================
StyleModel Detail Area
===========================================*/
#stylemodeldetail .parts_thumbnail {
  align-items: center;
  padding: 30px 0;
  text-align: left;
}
#stylemodeldetail .parts_lineup > * {
  align-items: center;
  padding: 30px 0;
  text-align: left;
}
#stylemodeldetail .parts_gallery {
  margin: 30px 0;
  list-style: none;
}
#stylemodeldetail .parts_gallery li img {
  width: 100%;
  height: auto;
}

