@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;
}
.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(--l-btn-bg-c);
  border: 1px solid var(--l-btn-bg-c);
  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(--l-btn-bg-c);
}
@media (hover: hover){
  .l-btn:hover{
    background-color: var(--c-white);
    color: var(--l-btn-bg-c);
    opacity: 1;
  }
  .l-btn--reverse:hover{
    background-color: var(--l-btn-bg-c);
    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;
}
/* -----------------自作レイアウト----------------- */
/* -----------------l-ttlImgTxt----------------- */
.l-ttlImgTxt{
  margin-bottom: var(--sec-spc);
}
.l-ttlImgTxt h2{
  font-weight: bold;
  margin-bottom: var(--spc-30);
}
.l-ttlImgTxt p img{
  border-radius: var(--bdrs-md);
  aspect-ratio: 1000/480;
  object-fit: cover;
  object-position: center;
}
.l-ttlImgTxt p{
  font-weight: bold;
  line-height: 2.3;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px){
  .l-ttlImgTxt h2{
    font-size: var(--fz-40);
  }
  .l-ttlImgTxt p{
    font-size: var(--fz-18);
  }
  .l-ttlImgTxt p:has(img){
    margin-bottom: var(--spc-80);
  }
}
@media screen and (max-width: 767px){
  .l-ttlImgTxt h2{
    font-size: var(--fz-24);
  }
  .l-ttlImgTxt p{
    font-size: var(--fz-16);
  }
  .l-ttlImgTxt p:has(img){
    margin-bottom: var(--spc-60);
  }
}
/* -----------------l-ttlList5col----------------- */
.l-ttlList5col{
  margin-bottom: var(--sec-spc);
}
.l-ttlList5col h2{
  text-align: center;
  margin-bottom: var(--spc-40);
}
.l-ttlList5col h2 span{
  font-weight: bold;
  line-height: 2;
  padding-bottom: var(--spc-10);
  border-bottom: 3px solid var(--c-yellow-200);
}
@media screen and (min-width: 768px){
  .l-ttlList5col h2 span{
    font-size: var(--fz-24);
  }
  .l-ttlList5col ul span{
    font-size: var(--fz-18);
  }
}
@media screen and (max-width: 767px){
  .l-ttlList5col h2 span{
    font-size: var(--fz-20);
  }
  .l-ttlList5col ul span{
    font-size: var(--fz-17);
  }
}
/* -----------------l-ttlList5col----------------- */
.l-staffComment{
  background-color: var(--c-sand-100);
  position: relative;
  margin-bottom: var(--sec-spc);
}
.l-staffComment::after{
  content: "";
  position: absolute;
  background: url(/asset2025/images/common/chicks.png) no-repeat center / contain;
  right: 5%;
  aspect-ratio: 179 / 46;
}
.l-staffComment h2{
  font-size: var(--fz-24);
  font-weight: bold;
  margin-bottom: var(--spc-30);
  position: relative;
}
.l-staffComment h2 span{
  position: absolute;
  background: var(--this-image) no-repeat center center / 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid var(--c-gray-300);
  transition: .3s ease;
  max-width: 120px;
}
.l-staffComment p{
  font-size: var(--fz-16);
}
@media screen and (min-width: 768px){
  .l-staffComment{
    padding: var(--spc-50) var(--spc-150) var(--spc-80);
    border-radius: 166px;
  }
  .l-staffComment h2 span{
    bottom: 0;
    right: -5%;
    width: 18%;
  }
  .l-staffComment{
    margin-top: var(--spc-150);
  }
  .l-staffComment::after{
    width: 179px;
    bottom: -5%;
  }
}
@media screen and (max-width: 767px){
  .l-staffComment{
    padding: var(--spc-80) 12% var(--spc-80);
    border-radius: 100px;
  }
  .l-staffComment h2 span{
    bottom: 110%;
    right: -10%;
    width: 30%;
    max-width: 80px;
  }
  .l-staffComment{
    margin-top: var(--spc-100);
  }
  .l-staffComment::after{
    width: 150px;
    bottom: -2%;
  }
}
/* -----------------l-ttlList5col----------------- */
.l-imgTxt2col{
  margin-bottom: var(--sec-spc);
}
.l-imgTxt2col h2{
  font-size: var(--fz-35);
  font-weight: bold;
  margin-bottom: var(--spc-30);

}
.l-imgTxt2col ul li{
  display: flex;
  gap: var(--spc-20);
}
.l-imgTxt2col ul li + li{
  margin-top: var(--spc-40);
}
.l-imgTxt2col ul li h3{
  font-size: var(--fz-24);
  font-weight: bold;
  line-height: 1;
}
.l-imgTxt2col ul li h3 .tag{
  background-color: var(--c-yellow-200);
  font-size: var(--fz-14);
  margin-left: 0;
  margin-bottom: var(--spc-15);
}
@media screen and (min-width: 768px){
  .l-imgTxt2col ul li > p{
    width: 300px;
  }
  .l-imgTxt2col ul li > div{
    flex: 1;
  }
  .l-imgTxt2col ul li h3{
    margin-bottom: var(--spc-30);
  }
}
@media screen and (max-width: 767px){
  .l-imgTxt2col ul li{
    flex-direction: column;
  }
  .l-imgTxt2col ul li > p{
    width: 100%;
  }
  .l-imgTxt2col ul li > div{
    width: 100%;
  }
  .l-imgTxt2col ul li h3{
    margin-bottom: var(--spc-20);
  }
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}
/* ------------------- -------------------- */
@media screen and (min-width: 768px){
  
}
@media screen and (max-width: 767px){
  
}