@charset "utf-8";
/* このCSSは、グループページ、フリーページ、商品ページ使えます */
/* 共通 */
:root{
  --L_BTN_COLOR: var(--BDCOLOR_GRAY_2);
  --L_BGCOLOR_GRAY: #f2f2f2;
  --L_BDCOLOR_GRAY: #3e3e3e;
  --L_BDCOLOR_BLACK: #2d2d2d;
  --L_MARK: #fff799;
  --L_TEXT_RED: #ff0000;
}
.l-container{
  letter-spacing: 0.1em;
}
.l-container h2,
.l-container h3{
  font-weight: bold;
}
.l-container h2 mark{
  background: linear-gradient(transparent 70%, var(--L_MARK) 30%);
}
.l-container h2 u{
  text-decoration: none;
  border-bottom: 1px solid var(--L_BDCOLOR_BLACK);
}
span.l_heading--bgcolorGray{
  background-color: var(--L_BGCOLOR_GRAY);
  display: inline-block;
}
.l_heading--bdcolorBlack{
  border-left: 5px solid var(--L_BDCOLOR_BLACK);
}
.l_heading--center{
  text-align: center;
}
.l-container p strong{
  font-weight: bold;
}
.l-container p u{
  text-decoration: none;
  border-bottom: 1px solid var(--L_BDCOLOR_BLACK);
}
span.l-text__red{
  color: var(--L_TEXT_RED);
  font-weight: bold;
}
.l-container p mark{
  background: linear-gradient(transparent 70%, var(--L_MARK) 30%);
}
@media screen and (min-width: 768px){
  .l-container h2{
    font-size: 20px;
    margin-bottom: 12px;
  }
  .l-container h3{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .l-container > [class*="l-"]{
    margin-bottom: var(--GENERALSEC);
  }
  .l-container > .l-btn,
  .l-container > .l-more{
    margin-bottom: 0;
  }
  span.l_heading--bgcolorGray{
    padding: 8px 15px;
  }
  .l_heading--bdcolorBlack{
    padding-left: 15px;
  }

}
@media screen and (max-width: 767px){
  .l-container h2{
    font-size: 18px;
    margin-bottom: 8px;
  }
  .l-container h3{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .l-container > [class*="l-"]{
    margin-bottom: 40px;
  }
  .l-container > .l-btn,
  .l-container > .l-more{
    margin-bottom: 0;
  }
  span.l_heading--bgcolorGray{
    padding: 5px 12px;
  }
  .l_heading--bdcolorBlack{
    padding-left: 10px;
  }

}

/* l-btn */
.l-btn{
	display: block;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.2em;
	border: 1px solid var(--L_BTN_COLOR);
	border-radius: 2px;
	position: relative;
  width: 100%;
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}
.l-btn--small{
  max-width: 150px;
  margin: 0;
}
.l-btn::after{
  font-family: 'Font Awesome 5 Pro';
	font-weight: 100;
	content: '\f054';
	color: var(--BDCOLOR_GRAY_2);
	position: absolute;
}
.l-btn--reverse{
  background-color: var(--WHITE);
  color: var(--L_BTN_COLOR);
}
.l-btn--center{
  margin-left: auto;
  margin-right: auto;
}
.l-btn--left{
  margin: 0;
}
.l-btn--right{
  margin: 0 0 0 auto;
}
@media (hover: hover){
  .l-btn:hover{
		opacity: 1;
		background-color: var(--GRAY01);
  }
  .l-btn--reverse:hover{
    background-color: var(--L_BTN_COLOR);
    color: var(--WHITE);
    opacity: 1;
  }
}
@media screen and (min-width: 768px){
  .l-btn{
    padding: 10px 0;
  }
  .l-btn::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
  .l-btn--small{
    padding: 8px 0;
  }
  .l-btn--small::after{
    font-size: 10px;
  }
}
@media screen and (max-width: 767px){
  .l-btn{
    padding: 8px 0;
  }
  .l-btn::after{
		font-size: 12px;
		top: 28%;
		right: 5px;
	}
}

/* l-more */
.l-more{
  width: fit-content;
  display: block;
  color: var(--THEME_COLOR_1);
  background: url(../images/ec/common/article-arrow-blue.svg) no-repeat right center / 10px;
  padding-right: 15px;
}
.l-more--center{
  margin-left: auto;
  margin-right: auto;
}
.l-more--left{
  margin: 0;
}
.l-more--right{
  margin: 0 0 0 auto;
}
.l-more--small{
  font-size: 12px;
  padding-right: 12px;
  background-size: 8px;
}
/* l-titleWithText */
.l-titleWithText h2{
  text-align: center;
  border-bottom: 1px solid var(--L_BDCOLOR_GRAY);
}
@media screen and (min-width: 768px){
  .l-titleWithText h2{
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px){
  .l-titleWithText h2{
    padding-bottom: 8px;
  }
}

/* l-imageWithText */
@media screen and (min-width: 768px){
  .l-imageWithText > img{
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px){
  .l-imageWithText > img{
    margin-bottom: 8px;
  }
}

/* l-imageListWithText */
.l-imageListWithText > ul:has(li img){
  display: grid;
}
@media screen and (min-width: 768px){
  .l-imageListWithText > ul:has(li img){
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 12px;
  }
  .l-imageTitleTextList > ul:has(li .l-btn) p{
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px){
  .l-imageListWithText > ul:has(li img){
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 8px;
  }
  .l-imageTitleTextList > ul:has(li .l-btn) p{
    margin-bottom: 20px;
  }
  .l-imageListWithText:has(.l-btn) p{
    margin-bottom: 30px;
  }
}

/* l-imageTitleTextList */
.l-imageTitleTextList > ul:has(li img){
  display: grid;
}
@media screen and (min-width: 768px){
  .l-imageTitleTextList > ul:has(li img){
    grid-template-columns: repeat(2, 1fr);
    gap: 50px var(--GAP_50);
  }
  .l-imageTitleTextList > ul:has(li img) li img{
    margin-bottom: 10px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3{
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px){
  .l-imageTitleTextList > ul:has(li img){
    gap: 30px;
  }
  .l-imageTitleTextList > ul:has(li img) li img{
    margin-bottom: 8px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3{
    margin-bottom: 3px;
  }
}

/* l-imageTextSide */
.l-imageTextSide > ul:has(li div){
  display: grid;
}
.l-imageTextSide figcaption{
  font-size: var(--FZ_12);
  margin-top: 3px;
}
@media screen and (min-width: 768px){
  .l-imageTextSide > ul:has(li div){
    gap: 50px;
  }
  .l-imageTextSide > ul > li:has(div){
    display: flex;
    gap: var(--GAP_50);
  }
  .l-imageTextSide > ul > li:has(div) figure{
    width: 40%;
  }
  .l-imageTextSide > ul > li:has(div) div{
    flex: 1;
  }
  .l-imageTextSide > ul > li:has(div .l-btn) p{
    margin-bottom: 30px;
  }
  .l-imageTextSide__reverse{
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px){
  .l-imageTextSide > ul:has(li div){
    gap: 30px;
  }
  .l-imageTextSide > ul > li:has(div) figure{
    margin-bottom: 8px;
  }
  .l-imageTextSide > ul > li:has(div) h3{
    margin-bottom: 3px;
  }
  .l-imageTextSide > ul > li:has(div .l-btn) p{
    margin-bottom: 20px;
  }
}

/* l-explainWidthImage */
.l-explainWidthImage ul{
  display: grid;
}
@media screen and (min-width: 768px){
  .l-explainWidthImage ul{
    gap: var(--GAP_80);
  }
  .l-explainWidthImage ul li{
    display: grid;
    grid-template-columns: clamp( 200px, 25vw, 300px) 1fr;
    gap: var(--GAP_50);
  }
  .l-explainWidthImage ul li .l-btn{
    margin: 30px 0 0 auto;
  }
}
@media screen and (max-width: 767px){
  .l-explainWidthImage ul{
    gap: 30px;
  }
  .l-explainWidthImage ul li{
    display: grid;
    align-items: flex-start;
    grid-template-columns: repeat(2,1fr);
    column-gap: 15px;
  }
  .l-explainWidthImage ul img{
    grid-row: span 2;
  }
  .l-explainWidthImage ul div{
    display: contents;
  }
  .l-explainWidthImage ul li .l-btn{
    margin-top: 20px;
    grid-column: span 2;
  }
  .l-explainWidthImage ul li p{
    font-size: var(--FZ_12_CONST);
  }
}


/* l-productList */
.l-productList > ul:has(li .l-btn){
  display: grid;
}
@media screen and (min-width: 768px){
  .l-productList > ul:has(li .l-btn){
    grid-template-columns: repeat(3,1fr);
    gap: 50px var(--GAP_50);
  }
  .l-productList > ul:has(li .l-btn) img{
    margin-bottom: 10px;
  }
  .l-productList > ul:has(li .l-btn) p{
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px){
  .l-productList > ul:has(li .l-btn){
    grid-template-columns: repeat(2,1fr);
    gap: 40px 10px;
  }
  .l-productList > ul:has(li .l-btn) img{
    margin-bottom: 8px;
  }
  .l-productList > ul:has(li .l-btn) p{
    margin-bottom: 12px;
    font-size: 12px;
  }
  .l-productList > ul:has(li .l-btn) .l-btn{
    font-size: 12px;
  }
}

/* l-textLinkContainer */
.l-textLinkContainer--bgcolorGray{
  background-color: var(--L_BGCOLOR_GRAY);
  border: 1px solid var(--L_BGCOLOR_GRAY);
}
.l-textLinkContainer--bdcolorGray{
  border: 1px solid var(--L_BDCOLOR_GRAY);
}
@media screen and (min-width: 768px){
  .l-textLinkContainer{
    padding: 40px 30px;
  }
  .l-textLinkContainer .l-btn{
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px){
  .l-textLinkContainer{
    padding: 20px 15px;
  }
  .l-textLinkContainer .l-btn{
    margin-top: 20px;
  }
}


/* l-table */
.l-table table{
  width: 100%;
}
.l-table tr{
  display: flex;
  flex-wrap: wrap;
}
.l-table--bgcolorGray th,
.l-table--bgcolorGray td{
  background-color: var(--L_BGCOLOR_GRAY);
}
.l-table--border table{
  border-collapse: collapse;
}
.l-table--border th,
.l-table--border td{
  border: 1px solid var(--L_BDCOLOR_GRAY);
}
.l-table--border th{
  font-weight: normal;
}
@media screen and (min-width: 768px){
  .l-table td,
  .l-table th{
    padding: 25px 30px;
  }
  .l-table th{
    width: 30%;
  }
  .l-table td{
    flex: 1;
  }
  .l-table--bdcolorGray tr:first-child th,
  .l-table--bdcolorGray tr:first-child td{
    border-top: 1px solid var(--L_BDCOLOR_GRAY);
  }
  .l-table--bdcolorGray th,
  .l-table--bdcolorGray td{
    border-bottom: 1px solid var(--L_BDCOLOR_GRAY);
  }
  .l-table--bdcolorGray th{
    position: relative;
  }
  .l-table--bdcolorGray th::after{
    content: "";
    display: inline-block;
    background: var(--L_BDCOLOR_GRAY);
    width: 1px;
    height: calc(100% - 30px);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .l-table--bgcolorGray tr{
    gap: 10px;
  }
  .l-table--bgcolorGray tr:not(:first-child) th,
  .l-table--bgcolorGray tr:not(:first-child) td{
    margin-top: 10px;
  }
  .l-table--border th{
    border-right: none;
  }
  .l-table--border tr:not(:last-child) th,
  .l-table--border tr:not(:last-child) td{
    border-bottom: none;
  }
}
@media screen and (max-width: 767px){
  .l-table td,
  .l-table th{
    width: 100%;
  }
  .l-table th{
    padding: 15px 10px 0;
  }
  .l-table td{
    padding: 15px 10px;
  }
  .l-table--bdcolorGray tr:first-child th{
    border-top: 1px solid var(--L_BDCOLOR_GRAY);
  }
  .l-table--bdcolorGray td{
    border-bottom: 1px solid var(--L_BDCOLOR_GRAY);
  }
  .l-table--bgcolorGray tr:not(:first-child) th{
    margin-top: 10px;
  }
  .l-table--border th{
    width: 40%;
  }
  .l-table--border td{
    flex: 1;
  }
  .l-table--border th{
    border-right: none;
  }
  .l-table--border tr:not(:last-child) th,
  .l-table--border tr:not(:last-child) td{
    border-bottom: none;
  }
}

/* 個別余白調整用クラス */
.mgb10{
	margin-bottom: 10px;
}
.mgb20{
	margin-bottom: 20px;
}
.mgb30{
	margin-bottom: 30px;
}
.mgb40{
	margin-bottom: 40px;
}
.mgb50{
	margin-bottom: 50px;
}
.mgb60{
	margin-bottom: 60px;
}
.mgb70{
	margin-bottom: 70px;
}
.mgb80{
	margin-bottom: 80px;
}
.mgb90{
	margin-bottom: 90px;
}
.mgb100{
	margin-bottom: 100px;
}