
/*----------------------------------
           article.aspx
----------------------------------*/

/*▼reset.css (触らない)*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small_right, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    list-style-type: none;
}
body {
    line-height: 1;
}
h1,h2,h3 {
	background-color: transparent;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
nav ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}
input, select {
    vertical-align: middle;
}
/*▲reset.css (触らない)*/

/*----------------------------------
         article.aspx 本文
----------------------------------*/
* {
	box-sizing: border-box;
}
a, a img {
		transition: none;
	}
	a:hover img {
		opacity: 1;
	}
	@media screen and (min-width: 769px) {
		a, a img {
    transition: none;
}
		a:hover img {
		opacity: 1;
	}
	}
/*----------------------------------
         レスポンシブ　画像出し分け
----------------------------------*/
.view_pc {
	display: block;
}
.view_sp {
	display: none;
}
@media screen and (max-width: 768px){
.view_pc {
	display: none;
}
.view_sp {
	display: block;
}
}

.column_wrap .txtlead {
  margin: 3em 0 3em;
}

.column_wrap .txtbox p {
  margin: 0 0 2em;
  line-height: 2em;
}
.column_wrap .banner {
  margin: 2em auto;
  text-align: center;
}
.column_wrap .banner img {
  width: 100%;
}
.column_wrap .width10 {
  width: 10% !important;
}
.column_wrap .width20 {
  width: 20% !important;
}
.column_wrap .width30 {
  width: 30% !important;
}
.column_wrap .width40 {
  width: 40% !important;
}
.column_wrap .width50 {
  width: 50% !important;
}
.column_wrap .width60 {
  width: 60% !important;
}
.column_wrap .width70 {
  width: 70% !important;
}
.column_wrap .width80 {
  width: 80% !important;
}
.column_wrap .width90 {
  width: 90% !important;
}
.column_wrap .width100 {
  width: 100% !important;
}
.column_wrap .width33 {
  width: 33.3% !important;
}
.column_wrap .width15 {
  width: 15% !important;
}
.column_wrap .width25 {
  width: 25% !important;
}
.column_wrap .width35 {
  width: 35% !important;
}
.column_wrap .width65 {
  width: 65% !important;
}
.column_wrap .width75 {
  width: 75% !important;
}
.column_wrap .width85 {
  width: 85% !important;
}
.wauto {
  width: auto !important;
}
.column_wrap .mb0 {
  margin-bottom: 0 !important;
}
.column_wrap .mb1em {
  margin-bottom: 1em !important;
}
.column_wrap .mb2em {
  margin-bottom: 2em !important;
}
.column_wrap .mt0 {
  margin-top: 0 !important;
}
.column_wrap .pb0 {
  padding-bottom: 0 !important;
}
.column_wrap .pb1em {
  padding-bottom: 1em !important;
}
.column_wrap .pb2em {
  padding-bottom: 2em !important;
}
.column_wrap .text_right {
  text-align: right !important;
}
.column_wrap .text_left {
  text-align: left !important;
}
.column_wrap .text_center {
  text-align: center !important;
}
.column_wrap .txtbox p.mb0 {
  margin-bottom: 0 !important;
}
.column_wrap .txtbox p.mb1em {
  margin-bottom: 1em !important;
}
.column_wrap .txtbox p.mb2em {
  margin-bottom: 2em !important;
}
.column_wrap .txtbox p.mt0 {
  margin-top: 0 !important;
}
.column_wrap a {
  color: #ac7717;
  text-decoration: underline;
  cursor: pointer;
}

.column_wrap .mauto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.column_wrap .btn a {
  display: block;
  padding: 0.7em 2em 0.8em;
  text-align: center;
  color: #fff;
  border-radius: 100px;
  font-weight: bold;
  border: solid 1px #ac7717;
  background: #ac7717;
  text-decoration: none;
  max-width: 800px;
  margin: 0 auto 2em;
}
.column_wrap .btn a:hover {
  background-color: #fff;
  color: #ac7717;
  opacity: 1;
}
.bread {
  display: flex;
}
.bread li {
  position: relative;
  letter-spacing: 2px;
  font-size: 12px;
}
.bread li:after {
  content: '> ';
  margin: 0 .5em;
}
.bread li:last-child:after {
  display: none;
}
.column_wrap .icatch {
  width: 100%;
  max-width: 600px;
  margin: 3em auto;
}
.column_wrap .editor1 {
  max-width: 620px;
  margin: 3em auto 6em;
}
.column_wrap .editor2 {
  margin: 7em auto 0;
}
.column_wrap .editor1 > p, .column_wrap .editor2 > p {
  font-size: 1.2em;
  margin: 0 0 1em;
  font-weight: bold;
  border-bottom: 1px solid #c9c9c9;
  padding: 0.4em;
}
.column_wrap .editor1 > div {
  display: flex;
  align-items: center;
}
.column_wrap .editor1 img {
  max-width: 110px;
  margin-right: 3em;
}
.column_wrap .editor2 > div {
  display: grid;
  grid-template-columns: 110px auto;
  grid-column-gap: 2em;
  grid-row-gap: 1em;
}
.column_wrap .editor2 > div > img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  max-width: 110px;
}
.column_wrap .editor2 > div > div {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.column_wrap .editor2 > div > p {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

/* ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ CONTENT～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ */
.column_wrap h2,.column_wrap h1.deco {
  margin: 2em 0 1.8em;
  letter-spacing: 0.02em;
  font-size: 1.9em;
  font-weight: bold;
  text-align: center;
}
.column_wrap h2 span,.column_wrap h1.deco span {
  display: inline-block;
  padding: 0 58px 0 61px;
  letter-spacing: 0.025em;
  line-height: 1.3;
  position: relative;
}
.column_wrap h2 span::before,.column_wrap h1.deco span::before {
  content: "";
  display: block;
  position: absolute;
  width: 51px;
  height: 70px;
  top: calc(50% - 35px);
  background: url(https://www.imini.jp/component/product/img/product_title_deco_l.png) no-repeat;
  background-size: contain;
  left: 0;
}
.column_wrap h2 span::after,.column_wrap h1.deco span::after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 66px;
  top: calc(50% - 33px);
  background: url(https://www.imini.jp/component/product/img/product_title_deco_r.png) no-repeat;
  background-size: contain;
  right: 0;
}

.column_wrap h3 {
  font-size: 1.3em;
  margin: 0 0 1.5em;
  font-weight: bold;
}
.column_wrap h3 span {
  border-bottom: 1px solid #8f8e8e;
  padding: 0.3em 0.7em 0.3em 0.3em;
}
.column_wrap .txt_bold {
  font-weight: bold;
}
.column_wrap .txt_size_big {
  font-size: 1.2em;
}
.column_wrap .bg_red {
  background: #fff4f9 !important;
}
.column_wrap .bg_blue {
  background: #edf8ff !important;
}
.column_wrap .bg_green {
  background: #f5ffed !important;
}
.column_wrap .bg_yellow {
  background: #fffef2 !important;
}
.column_wrap .bg_violet {
  background: #fef4ff !important;
}
.column_wrap .bg_orange {
  background: #fbf3e7 !important;
}
.column_wrap .bg_stripe {
  background: -webkit-repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px, #f5f5f5 3px, #f5f5f5 7px) !important;
  background: repeating-linear-gradient(-45deg, #ffffff, #ffffff 3px, #f5f5f5 3px, #f5f5f5 7px) !important;
}
.column_wrap .borderbox {
  margin: 0 auto 2em;
  padding: 2em;
  background: #f6f3e7;
}
.column_wrap .borderbox p:last-child, .column_wrap .borderbox li:last-child {
  margin-bottom: 0 !important
}
.column_wrap ul {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}
.column_wrap ol {
  list-style-type: none !important;
  padding: 0;
  margin: 0;
}
.column_wrap .txtbox li {
  list-style: none;
}
.column_wrap .list_dot li {
  list-style: inside disc !important;
  padding: 0;
}
.column_wrap .list_num li {
  list-style: inside decimal !important;
  padding: 0;
}
.column_wrap .listTab table {
  margin: 0 auto 2em;
  border: 1px solid #595959;
  border-collapse: collapse;
}
.column_wrap .listTab table th {
  border: 1px solid #7b7b7b;
  padding: 1rem;
  background: #333;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  color: #fff;
}
.column_wrap .listTab table td {
  padding: 1rem;
  background: #fff;
  border: 1px solid #A0A0A0;
  vertical-align: middle;
}
.column_wrap .listTab table td p:last-child, .column_wrap .listTab table td li:last-child {
  margin-bottom: 0 !important;
}
.column_wrap .txtbox .va_m {
  vertical-align: middle !important;
}
.column_wrap .clm_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.column_wrap .clm_box.vtop {
  align-items: flex-start;
}
.column_wrap .clm_box.clm2 > * {
  width: 48%;
}
.column_wrap .clm_box.clm3 > * {
  width: 30%;
}
.column_wrap .clm_box.clm4 > * {
  width: 22%;
}
.column_wrap .bq {
  margin: 2em auto 0;
  padding: 2em;
  background: #eee;
  border-left: 8px solid #ac7717;
}
.column_wrap blockquote {
  margin: 0 !important;
  word-break: break-all;
}
.column_wrap q {
  background: #eee;
  padding: 0.2em;
}
.column_wrap q::before, .column_wrap q::after {
  content: "";
} 

/*----------------------------------
         article_list 
----------------------------------*/
.column_wrap h1 {
	margin-top: 10px;
}

.column_wrap {
  margin: 1em auto 8em;
  padding: 0;
  box-sizing: border-box;
  line-height: 2em;
  letter-spacing: 1px;
  max-width: 900px;
}

.column_wrap .article_clm a {
	display: block;
	line-height: 1.5;
	font-size: 16px;
    letter-spacing: 0.1px;
	font-weight: 600;
	color: #000;
}
.column_wrap .article_clm a:hover {
  opacity: 0.7;
  transition: .5s;
}
.column_wrap .article_clm a:link, span .column_wrap .article_clm a:active span {
	text-decoration: none;
}
.column_wrap .article_clm a:hover span, .column_wrap .article_clm a:visited span{
    text-decoration: underline;
}

.column_wrap .article_clm span.article_tit {
    display: inline-block;
    margin-top: 10px;
    line-height: 1.3;
}
@media screen and (max-width: 768px){
	.column_wrap .article_clm span.article_tit {
    margin-top: 4px;
}
}
.column_wrap .txtbox {
  margin: 1em 0 4em;
}
@media screen and (max-width: 768px){
	.column_wrap .txtlead {
		line-height: 1.5;
		margin: 1.5rem 0 1.5rem;
}
}

.column_wrap section {
    border-top: 1px solid #c9c9c9;
}
.column_wrap section:nth-of-type(n+2) {
	margin-top: 60px;
}
@media screen and (max-width: 768px){
	.column_wrap section:nth-of-type(n+2) {
	margin-top: 3em;
}
}
.column_wrap ul.article_list {
    display: flex;
	flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}
.column_wrap ul.article_list li.article_clm {
    width: calc((100% - 60px) / 4);
	margin-left: 20px;
}
.column_wrap ul.article_list li.article_clm:nth-of-type(4n+1) {
	margin-left: 0;
}

.column_wrap ul.article_list li.article_clm {
	margin-bottom: 20px;
}


@media only screen and (max-width:768px) {
	.column_wrap ul.article_list {
    justify-content: space-between;
}
	
	.column_wrap ul.article_list li.article_clm {
    width: calc(344 / 750 * 100vw);
	margin-left: 0;
}
	.column_wrap ul.article_list li.article_clm:nth-of-type(n+3) {
	margin-top: 20px;
}
	
	li.article_clm span.article_tmb {
    display: inline-block;
    line-height: 0;
}
	
	li.article_clm span.article_tmb img {
    display: inline-block;
    width: 100vw;
    height: 25vw;
    object-fit: cover;
}
}
/*------------ サムネイル上アイコン/カテゴリ ------------*/
span.article_tmb {
	position: relative;
    display: inline-block;
    border: 2px solid #c9c9c9;
}

	span.article_tmb.new:before {
    position: absolute;
    content: "New";
    top: -2px;
    left: -2px;
    margin: 0;
    color: #fff;
    background: #a40000;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.6% 5.5% 1.3%;
	}
	
	span.article_tmb.skin:before {
    position: absolute;
    content: "Skin";
    top: -2px;
    left: -2px;
    margin: 0;
    color: #fff;
    background: #C5AA65;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.6% 5.5% 1.3%;
	}
	
	span.article_tmb.hair:before {
    position: absolute;
    content: "Hair";
    top: -2px;
    left: -2px;
    margin: 0;
    color: #fff;
    background: #20ac48;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.6% 5.5% 1.3%;
	}

	span.article_tmb.kounenki:before {
    position: absolute;
    content: "更年期";
    top: -2px;
    left: -2px;
    margin: 0;
    color: #fff;
    background: #c56598;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.6% 5.5% 1.3%;
	}
	
	span.article_tmb.health:before {
    position: absolute;
    content: "Health";
    top: -2px;
    left: -2px;
    margin: 0;
    color: #fff;
    background: #ed971b;
    font-size: 0.7rem;
    font-weight: 300;
    line-height: 1;
    padding: 1.6% 4.5% 1.3%;
	}

/* ～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～ RESPONSIVE～～～～～～～～～～～～～～～～～～～～～～～～～～～～～～*/ 
@media only screen and (min-width: 768px) {
  .column_wrap .pcnone {
    display: none !important;
  }
  .column_wrap .spnone {
    display: block !important;
  }
}
@media only screen and (max-width:768px) {
	
  .container {
    width: 100%;
    display: block !important;
  }
  .column_wrap {
    margin: 0;
    width: 100%;
    padding: 3% 3% 20%;
  }
  .column_wrap .pcnone {
    display: block !important;
  }
  .column_wrap .spnone {
    display: none !important;
  }
  .column_wrap .banner img {
    width: 100%;
  }
  .column_wrap .listTab table {
    width: 100%;
    word-break: break-all;
  }
  .column_wrap .bq, .column_wrap .borderbox {
    padding: 1em;
  }
  .column_wrap .pageindex {
    padding: 1.5em 1em;
  }
  .column_wrap h2 {
    margin: 2em 0 1.8em;
    font-size: 1.5em;
  }
  .column_wrap h2 span {
    padding: 0;
  }
  .column_wrap h2 span::before, .column_wrap h2 span::after {
    opacity: 0.4;
  }
	.column_wrap h2 span::before {
  left: -12vw;
}
.column_wrap h2 span::after {
  right: -12vw;
}

  .column_wrap h3, .column_wrap .editor1 > p, .column_wrap .editor2 > p {
    font-size: 1.1em;
  }
  .column_wrap .txt_size_big {
    font-size: 1.05em;
  }
  .column_wrap .clm_box.clm4 > * {
    width: 48%;
  }
  .column_wrap .clm_box.spclm1 {
    display: block;
  }
  .column_wrap .clm_box.spclm1 > * {
    width: 100% !important;
  }
  .column_wrap .scroll {
    overflow: auto;
  }
  .column_wrap .scroll table {
    white-space: nowrap;
  }
  .bread {
    overflow-x: scroll;
    width: 100%;
    white-space: nowrap;
    margin: 3% 0;
  }
  .column_wrap .editor2 > div {
    align-items: center;
  }
  .column_wrap .editor2 > div > img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .column_wrap .editor2 > div > div {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .column_wrap .editor2 > div > p {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

/*ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ
　　　　　　　pagination 位置
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/	
div#cat_skincare-wrap,
	div#cat_hair-wrap,
	div#cat_kounenki-50s-wrap
	{
    position: relative;
	
}
	.column_wrap nav.panel-footer-cat-skin,
	.column_wrap nav.panel-footer-cat-hair,
	.column_wrap nav.panel-footer-cat-kounenki-50s {
	display: flex;
    justify-content: center;
	margin: 0;
	position: absolute;
	top: -80px;
    right: 0;
}

@media only screen and (max-width: 768px) {
	.column_wrap nav.panel-footer-cat-skin,
	.column_wrap nav.panel-footer-cat-hair,
	.column_wrap nav.panel-footer-cat-kounenki-50s {	
	margin: 10px 0 30px;
	position: static;
}
	}	
/* pager */	

.back_home.cat {
		margin: 80px 0 0;
	}
	
	@media only screen and (max-width: 768px) {
	.back_home.cat {
		margin: 30px 0 0;
	}	
	}

	.column_wrap .pagination_skin,
	.column_wrap .pagination_hair,
	.column_wrap .pagination_kounenki-50s
	{
		display: flex;
	}
	
	.column_wrap .pagination_skin > li,
	.column_wrap .pagination_hair > li,
	.column_wrap .pagination_kounenki-50s > li{
    list-style-type: none;
    float: left;
    margin-left: -1px;
    padding: 4px 8px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
		text-decoration: none;
		color: #000;
	cursor : pointer;

}
	.column_wrap .pagination_skin > li:hover,
	.column_wrap .pagination_hair > li:hover,
	.column_wrap .pagination_kounenki-50s > li:hover,
.column_wrap .pagination > li:hover
{
		background-color: #eee;
	}
	.column_wrap .page-item a {
		pointer-events: none;
		text-decoration: none;
	}
	.column_wrap .page-item.number.active a {
		color: #c00;
	}
	.column_wrap .page-item.number.active {
		background: #dcdcdc;
	}
	
	.column_wrap li.page-item.prev {
    margin-right: 10px;
}
	
	.column_wrap li.page-item.next {
    margin-left: 10px;
}

/* btn */
.column_wrap .cat-btn-wrapper {
	margin: 20px auto 0;
	width: calc(500 / 750 * 100vw);
}
@media screen and (min-width: 769px){
	.column_wrap .cat-btn-wrapper {
		margin: 25px auto 0;
		width: 250px;
	}
}
.column_wrap .cat-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 45px;
	border: 1px solid #333333;
	border-radius: 45px;
	background-color: #ffffff;
	color: #333333;
	font-size: 14px;
	letter-spacing: 0.025em;
	line-height: 1;
	text-decoration: none;
}
@media screen and (min-width: 769px){
	.column_wrap .cat-btn {
		margin: 25px auto 0;
		width: 250px;
	}
}

.column_wrap .cat-btn:hover {
	background-color: #333333;
	color: #ffffff;
}	