@charset "utf-8";
/*
* CSS for boxLayout
*
* @version			0.0.2
* @lastmodified 2018/12/27
* @link					https://www.landcomp.co.jp/
* @copyright		Copyright 2018, LAND COMPUTER Co.,Ltd.All rights reserved.
*------------------------------------------------------------------------- */
/*
* layoutCell 	: table - table-cell width 50%
* layoutImage 	: block - float (right / left) width 50% - last
*------------------------------------------------------------------------- */

/* table cell ============================================================ */
div.layoutCell {
	display: block;
	overflow: hidden;
}
div.layoutCell {
  display: block;
}
div.layoutCell div.cell {
  display: block;
  margin-bottom: 1rem;
  width: 100%;
}
div.layoutCell div.cell.image {
  text-align: center;
}
div.layoutCell div.cell.left {
  display: block;
}
div.layoutCell div.cell.last {
  display: none;
}
div.layoutCell div.cell.image .explain { 
  display: block;
  text-align: left;
  font-size: 0.88em;
  padding: 8px 10px 5px;
  background-color: #F3F3F3;
}
div.cell.image .caption span.sub { 
  font-size: 0.8em;
}
div.cell.image .imgBox { 
  position: relative;
}
div.cell.image .imgBox span { 
  box-sizing: border-box;
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 33%;
  border: 3px solid #C92243;
}
@media all and (min-width: 480px) {
  div.layoutCell {
    display: table;
  }
  div.layoutCell div.cell {
    display: table-cell;
    width: 50%;
    vertical-align: top;
  }
  div.layoutCell div.cell.wp65 {
    width: 65.38;
  }
  div.layoutCell div.cell.image img {
    width: 100%;
    max-width: auto;
  }
  div.layoutCell div.cell:first-child {
    padding-right: 0.5rem;
  }
  div.layoutCell div.cell:last-child {
    padding-left: 0.5rem;
  }
  div.layoutCell div.cell.left {
    display: none;
  }
}

/* float image =========================================================== */
div.layoutImage {
	overflow: hidden;
}
div.layoutImage .cell.image {
  float: none;
  width: 100%;
  padding-left: 0;
  margin-left: 0;
  padding-right: 0 !important;
  margin-right: 0 !important;
}
div.layoutImage .cell.image.top {
  display: none;
}
div.layoutImage .cell.last {
  display: block;
}
@media all and (min-width: 480px) {
  div.layoutImage .cell.image {
    box-sizing: border-box;
    float: right;
    width: 50%;
    padding-left: 10px;
    margin-left: 10px;
    margin-bottom: 15px;
  }
  div.layoutImage .cell.last {
    display: none;
  }
}
div.layoutImage .cell.image.left {
	float: left;
	padding-right: 10px;
	margin-right: 10px;
}
div.layoutImage .cell.image img {
	width: 100%;
}
div.cell.image img {
	width: 100%;
}
/* ------------- */
div.rightAjust {
  overflow: hidden;
  text-align: center;
}
div.rightAjust p.figure {
}
@media all and (min-width: 480px) {
  div.rightAjust {
    overflow: hidden;
    text-align: right;
  }
  div.rightAjust p.figure {
    display: inline-block;
    margin-left: 0.5rem;
  }
}
div.cell p.figure img {
  width: 100%;
  max-width: auto;
}