@charset "utf-8";
/* このCSSは、グループページ、フリーページ、商品ページ使えます */
/* 共通 */
:root{
  /* ボタン背景色 */
  --l-btn-bg-c: #2d2d2d;
  /* 背景色 */
  --l-bg-c-gray: #f2f2f2;
  /* ボタン色 */
  --l-bd-c-gray: #c2c2c2;
  --l-bd-c-black: #2d2d2d;
  /* マーカー */
  --l-mark: #fff799;
  /* 強調文字色 */
  --l-txt-emphasis: #ff0000;
  --c-white: #fff;
}
@media screen and (min-width: 768px){
	:root{
		/* --inner-width */
		--inner-w: 95%;
		/* --section-space */
		--sec-spc: clamp(70px, 8vw, 100px);
	}
}
@media screen and (max-width: 767px){
	:root{
		--inner-w: 87.201%;
		--sec-spc: 50px;
	}
}
.l-container{
  letter-spacing: 0.1em;
  padding: var(--sec-spc) 0;
}
.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-bd-c-black);
}
span.l_heading--bgcolorGray{
  background-color: var(--l-bg-c-gray);
  display: inline-block;
}
.l_heading--bdcolorBlack{
  border-left: 5px solid var(--l-bd-c-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-bd-c-black);
}
span.l-text__red{
  color: var(--l-txt-emphasis);
  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;
  }
  .l-container > [class*="l-"]{
    margin-bottom: 70px;
  }
  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;
  }
  .l-container > [class*="l-"]{
    margin-bottom: 40px;
  }
  span.l_heading--bgcolorGray{
    padding: 5px 12px;
  }
  .l_heading--bdcolorBlack{
    padding-left: 10px;
  }

}

/* l-btn */
.l-btn{
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--THIN_GREEN_COLOR);
  border: 1px solid var(--THIN_GREEN_COLOR);
  color: var(--c-white);
  border-radius: 70px;
  margin-left: auto;
  margin-right: auto;
}
.l-btn:visited{
  color: var(--c-white);
}
.l-btn--reverse{
  background-color: var(--c-white);
  color: var(--THIN_GREEN_COLOR);
}
@media (hover: hover){
  .l-btn:hover{
    background-color: var(--c-white);
    color: var(--THIN_GREEN_COLOR);
    opacity: 1;
  }
  .l-btn--reverse:hover{
    background-color: var(--THIN_GREEN_COLOR);
    color: var(--c-white);
    opacity: 1;
  }
}
@media screen and (min-width: 768px){
  .l-btn{
    padding: 10px 0;
    max-width: 400px;
  }
}
@media screen and (max-width: 767px){
  .l-btn{
    padding: 8px 0;
    max-width: 300px;
  }
}

/* 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;
  }
}
@media screen and (max-width: 767px){
  .l-imageListWithText > ul:has(li img){
    gap: 10px;
    margin-bottom: 8px;
  }
}

/* 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 20px;
  }
  .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;
}
@media screen and (min-width: 768px){
  .l-imageTextSide > ul:has(li div){
    gap: 50px;
  }
  .l-imageTextSide > ul > li:has(div){
    display: flex;
    gap: 30px;
  }
  .l-imageTextSide > ul > li:has(div) img,
  .l-imageTextSide > ul > li:has(div) div{
    flex: 1;
  }
  .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) img{
    margin-bottom: 8px;
  }
  .l-imageTextSide > ul > li:has(div) h3{
    margin-bottom: 3px;
  }
}

/* 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 30px;
  }
  .l-productList > ul:has(li .l-btn) img{
    margin-bottom: 10px;
  }
  .l-productList > ul:has(li .l-btn) p{
    margin-bottom: 15px;
  }
}
@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-bg-c-gray);
  border: 1px solid var(--l-bg-c-gray);
}
.l-textLinkContainer--bdcolorGray{
  border: 1px solid var(--l-bd-c-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-bg-c-gray);
}
@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-bd-c-gray);
  }
  .l-table--bdcolorGray th,
  .l-table--bdcolorGray td{
    border-bottom: 1px solid var(--l-bd-c-gray);
  }
  .l-table--bdcolorGray th{
    position: relative;
  }
  .l-table--bdcolorGray th::after{
    content: "";
    display: inline-block;
    background: var(--l-bd-c-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;
  }
}
@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-bd-c-gray);
  }
  .l-table--bdcolorGray td{
    border-bottom: 1px solid var(--l-bd-c-gray);
  }
  .l-table--bgcolorGray tr:not(:first-child) th{
    margin-top: 10px;
  }
}

/* 個別余白調整用クラス */
.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;
}


/* 事例 */
.jirei-article h1{
	font-size: 24px;
	font-weight: 900;
  margin-bottom: 10px;
}

.jirei-article h2,
.jirei-article h3,
.jirei-article h4 {
  font-weight: bold;
  font-size: revert;
  line-height: 1.4;
  margin-bottom: 10px;
}
.youtube{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube > iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}