@charset "utf-8";
/* このCSSは、グループページ、フリーページ、商品ページ使えます */
:root{
  --l-sec-spc: clamp( 50px, 6vw, 80px);
  --l-bg-c-main: #f2f2f2;
  --l-theme-c-main: #F0005F;
  --l-theme-c-sub: #262626;
  --l-txt-c-base: #262626;
  --wp--preset--color--black: #000000;
  --wp--preset--color--cyan-bluish-gray: #abb8c3;
  --wp--preset--color--white: #ffffff;
  --wp--preset--color--pale-pink: #f78da7;
  --wp--preset--color--vivid-red: #cf2e2e;
  --wp--preset--color--luminous-vivid-orange: #ff6900;
  --wp--preset--color--luminous-vivid-amber: #fcb900;
  --wp--preset--color--light-green-cyan: #7bdcb5;
  --wp--preset--color--vivid-green-cyan: #00d084;
  --wp--preset--color--pale-cyan-blue: #8ed1fc;
  --wp--preset--color--vivid-cyan-blue: #0693e3;
  --wp--preset--color--vivid-purple: #9b51e0;
  --wp--preset--font-size--small: 13px;
  --wp--preset--font-size--medium: 20px;
  --wp--preset--font-size--large: 36px;
  --wp--preset--font-size--x-large: 42px;
}

.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}
.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}

/* l-heading */
.l-heading{
  display: flex;
  flex-direction: column;
  font-weight: 500 !important;
}
@media screen and (min-width: 768px){
  .l-heading{
    font-size: 25px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px){
  .l-heading{
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* l-subHeading */
.l-subHeading{
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 500 !important;
}
.l-heading+.l-subHeading::before{
  content: none;
}
@media screen and (min-width: 768px){
  .l-subHeading{
    font-size: 20px;
  }
  .l-heading+.l-subHeading{
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px){
  .l-subHeading{
    font-size: 16px;
  }
  .l-heading+.l-subHeading{
    margin-top: -5px;
  }
}

/* l-cols */
@media screen and (min-width: 768px){
  .l-cols{
    display: flex;
    gap: 30px;
  }
  .l-cols__item{
    flex: 1;
  }
}
@media screen and (max-width: 767px){
  .l-cols{
    display: grid !important;
    gap: 20px;
  }
}

/* l-figure */
.l-figure img{
  height: auto;
  width: 100%;
  box-sizing: unset;
  line-height: 1rem;
  display: block;
}
.l-figure figcaption{
  text-align: center;
  font-size: clamp(10px, 1.1vw, 11px);
  margin-top: 10px;
}
*+.l-figure{
  margin-top: 20px;
}

/* l-paragraph */
.l-paragraph{
  font-size: clamp(13px, 1.4vw, 15px);
  margin-top: clamp( 15px, 1.7vw, 20px);
  letter-spacing: 0.1em;
}
.l-cols .l-paragraph{
  font-size: clamp(12px, 1.3vw, 14px);
}
.l-paragraph--sm{
  font-size: clamp(12px, 1.3vw, 14px);
  margin-top: clamp( 10px, 1.2vw, 15px);
}
.l-paragraph--lg{
  font-size: clamp(16px, 1.7vw, 18px);
  margin-top: clamp( 20px, 2.3vw, 30px);
}
.l-paragraph[class*="center"]{
  text-align: center;
}
.l-paragraph[class*="right"]{
  text-align: right;
}
/* l-btn */
.l-btn{
  display: block !important;
}
.l-btn :is(a,.wp-block-button__link){
  display: flex;
  justify-content: center;
  align-items: center;
	letter-spacing: 0.1em;
  background-color: #fff !important;
	border: 1px solid var(--l-txt-c-base, #2c2c2c);
	border-radius: 4px;
  text-align: center;
  position: relative;
}
.l-btn a:after,
.l-btn .wp-block-button__link:after{
	/* content: "";
	display: inline-block;
	--this-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMzcyMzFDO30KPC9zdHlsZT4KPHBhdGggY2xhc3M9InN0MCIgZD0iTTgxLjM2LDMwMC40OGMtMy4xMiwwLTYuMjMtMS4xOS04LjYxLTMuNTdjLTQuNzYtNC43Ni00Ljc2LTEyLjQ3LDAtMTcuMjNsMTI5LjIxLTEyOS4yTDcyLjc1LDIxLjI4CgljLTQuNzYtNC43Ni00Ljc2LTEyLjQ3LDAtMTcuMjNzMTIuNDctNC43NiwxNy4yMywwTDIyNy44LDE0MS44OGMyLjI4LDIuMjgsMy41Nyw1LjM4LDMuNTcsOC42MXMtMS4yOCw2LjMzLTMuNTcsOC42MUw4OS45OCwyOTYuOTEKCUM4Ny42LDI5OS4yOSw4NC40OCwzMDAuNDgsODEuMzYsMzAwLjQ4eiIvPgo8L3N2Zz4K) no-repeat center center / 100%;
	mask: var(--this-mask);
	-webkit-mask: var(--this-mask);
	background-color: var(--l-txt-c-base, #2c2c2c);
	aspect-ratio: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%); */
}
@media (hover: hover){
  .l-btn :is(a:hover,.wp-block-button__link:hover){
    opacity: 1;
    background-color: #F0F7F0;
  }
}
@media screen and (min-width: 768px){
  .l-btn{
    width: 100%;
    max-width: 300px;
    margin: clamp( 30px, 3.5vw, 50px) auto 0;
  }
  .l-btn :is(a,.wp-block-button__link){
    min-height: 50px;
  }
  .l-btn a:after,
  .l-btn .wp-block-button__link:after{
    width: 10px;
		right: 10px;
  }
}
@media screen and (max-width: 767px){
  .l-btn{
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
  }
  .l-btn :is(a,.wp-block-button__link){
    min-height: 50px;
  }
  .l-btn a:after,
  .l-btn .wp-block-button__link:after{
    width: 10px;
		right: 10px;
  }
}
.l-btn .wp-block-button{
  display: block;
  width: 100%;
}
.l-btn .wp-block-button__link{
  color: unset;
  background: unset;
}
/* l-freeBtn */
.l-freeBtn--color1.l-btn :is(a,.wp-block-button__link){
  background-color: var(--l-theme-c-main, #F0005F) !important;
  border: 1px solid var(--l-theme-c-main, #F0005F) !important;
  color: #fff !important;
}
.l-freeBtn--color1.l-btn a:after,
.l-freeBtn--color1.l-btn .wp-block-button__link:after{
  background-color: #fff;
}
.l-freeBtn--color2.l-btn :is(a,.wp-block-button__link){
  background-color: var(--l-theme-c-sub, #262626) !important;
  border: 1px solid var(--l-theme-c-sub, #262626) !important;
  color: #fff !important;
}
@media screen and (min-width: 768px){
  .l-freeBtn.l-btn[class*="left"]{
    margin: clamp( 30px, 3.5vw, 50px) 0 0 0 !important;
  }
  .l-freeBtn.l-btn[class*="right"]{
    margin: clamp( 30px, 3.5vw, 50px) 0 0 auto !important;
  }
}
@media screen and (max-width: 767px){
  .l-freeBtn.l-btn[class*="left"]{
    margin: 20px 0 0 0;
  }
  .l-freeBtn.l-btn[class*="right"]{
    margin: 20px 0 0 auto;
  }
}
/* l-txtLink */
.l-txtLink{
  display: flex;
  margin-top: 20px;
}
.l-txtLink[class*="center"]{
  justify-content: center;
}
.l-txtLink[class*="right"]{
  justify-content: flex-end;
}
.l-txtLink :is(a,.wp-block-button__link){
  background: unset;
  color: var(--l-theme-c-main, #bf2020);
  text-decoration: underline;
  display: block;
  width: fit-content;
  padding: 0 30px;
}
@media (hover: hover){
  .l-txtLink a:hover{
    text-decoration: underline;
  }
}

/* l-slick */
.l-slick{
  display: block !important;
  opacity: 0;
	transition: opacity .3s linear;
}
.l-slick.slick-initialized,
.l-slick.block-editor-block-list__block{
  opacity: 1;
}
.l-slick__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  box-shadow: 0px 0px 15px -5px var(--c-gray-300);
  border-radius: 50%;
  aspect-ratio: 1;
  z-index: 2;
  transition: .3s;
}
.l-slick__arrow::before{
  content: "";
  display: inline-block;
  --this-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDI3LjkuNiwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDkuMDMgQnVpbGQgNTQ5ODYpICAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSLjg6zjgqTjg6Tjg7xfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IgoJIHk9IjBweCIgdmlld0JveD0iMCAwIDMwMCAzMDAiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDMwMCAzMDA7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4KCS5zdDB7ZmlsbDojMjYyNjI2O30KPC9zdHlsZT4KPGcgaWQ9IuOCsOODq+ODvOODl18yODEyMiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE2MDIuOTUzIC0xMDA3LjIyMykiPgoJPHBvbHlnb24gY2xhc3M9InN0MCIgcG9pbnRzPSIxODM1LjA5LDEyOTIuOTQgMTgyMC44MSwxMzA3LjIyIDE2NzAuODEsMTE1Ny4yMiAxODIwLjgxLDEwMDcuMjIgMTgzNS4wOSwxMDIxLjUxIDE2OTkuMzgsMTE1Ny4yMiAJCgkJIi8+CjwvZz4KPC9zdmc+Cg==) no-repeat center center / 35%;
  mask: var(--this-mask);
  -webkit-mask: var(--this-mask);
  background-color: var(--l-txt-c-base, #262626);
  aspect-ratio: 1/1;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.l-slick__arrow--prev{
  left: -10px;
}
.l-slick__arrow--next{
  right: -10px;
  transform: scale(-1, 1) translateY(-50%);
}
@media (hover: hover){
  .l-slick__arrow:hover{
    cursor: pointer;
    background-color: var(--l-theme-c-main, #F0005F);
  }
  .l-slick__arrow:hover::before{
    background-color: #fff;
  }
}
@media screen and (min-width: 768px){
  .l-slick{
    padding-inline: 40px;
  }
  .l-slick__arrow{
    width: clamp( 30px, 3.2vw, 40px);
  }
}
@media screen and (max-width: 767px){
  .l-slick{
    padding-inline: 30px;
  }
  .l-slick__arrow{
    width: 30px;
  }
}
.block-editor-block-list__block.l-figure.l-slideTxt__slide__item{
  margin-bottom: 20px;
}

/* l-slideTxt */
.l-slideTxt{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-slideTxt__slide{
  margin-top: 20px;
}
.l-slideTxt__slide.is-layout-flex{
  display: block;
}

/* l-imgTxt */
.l-imgTxt{
  margin-bottom: var(--l-sec-spc, 100px);
}

/* l-txt */
.l-txt{
  margin-bottom: var(--l-sec-spc, 100px);
}

/* l-img2Txt */
.l-img2Txt{
  margin-bottom: var(--l-sec-spc, 100px);
}

/* l-card2Col */
.l-card2Col{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-card2Col .l-subHeading{
  text-align: center;
}
.l-card2Col .l-subHeading::before{
  content: none;
}
.l-card2Col .l-figure{
  margin-bottom: 20px;
}
@media screen and (max-width: 767px){
  .l-card2Col .l-cols{
    gap: 40px;
  }
}
/* l-card3Col */
.l-card3Col{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-card3Col .l-subHeading{
  text-align: center;
}
.l-card3Col .l-subHeading::before{
  content: none;
}
.l-card3Col .l-figure{
  margin-bottom: 20px;
}
@media screen and (max-width: 767px){
  .l-card3Col .l-cols{
    gap: 40px;
  }
}

/* l-tileImgs */
.l-tileImgs{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-tileImgs .l-cols{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: clamp( 10px, 1.5vw, 20px);
}
.l-tileImgs .l-cols__item .wp-block{
  margin-bottom: 0;
  margin-top: 0;
}


/* l-colTxtImgRight */
.l-colTxtImgRight{
  margin-bottom: var(--l-sec-spc, 100px);
}
@media screen and (min-width: 768px){
  .l-colTxtImgRight.l-cols{
    align-items: flex-start;
  }
}

/* l-colTxtImgLeft */
.l-colTxtImgLeft{
  margin-bottom: var(--l-sec-spc, 100px);
}
@media screen and (min-width: 768px){
  .l-colTxtImgLeft.l-cols{
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px){
  .l-colTxtImgLeft.l-cols{
    display: flex;
    flex-direction: column-reverse;
  }
}

/* l-bgBox */
.l-bgBox{
  background-color: var(--l-bg-c-main, #f2f2f2);
  margin-bottom: var(--l-sec-spc, 100px);
  padding: clamp( 20px, 2.5vw, 30px) clamp( 15px, 2vw, 30px);
  border-radius: 8px;
}

/* l-bdBox */
.l-bdBox{
  border: 1px solid var(--l-txt-c-base, #2c2c2c);
  margin-bottom: var(--l-sec-spc, 100px);
  padding: clamp( 20px, 2.5vw, 30px) clamp( 15px, 2vw, 30px);
  border-radius: 8px;
}

/* l-mediaTxt */
.l-mediaTxt{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-mediaTxt .l-subHeading::before{
  content: none;
}
@media screen and (min-width: 768px){
  .l-mediaTxt .l-cols{
    margin-bottom: 50px;
  }
  .l-mediaTxt .l-btn{
    margin: 30px auto 0 0;
  }
  .l-mediaTxt .l-cols__item:first-child{
    flex: unset;
    width: 300px;
  }
}
@media screen and (max-width: 767px){
  .l-mediaTxt .l-cols{
    margin-bottom: 40px;
  }
  .l-mediaTxt .l-figure{
    width: 60%;
    margin-inline: auto;
  }
}

/* l-mediaLargeTxt */
.l-mediaLargeTxt{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-mediaLargeTxt .l-subHeading::before{
  content: none;
}
@media screen and (min-width: 768px){
  .l-mediaLargeTxt .l-cols{
    margin-bottom: 50px;
  }
  .l-mediaLargeTxt .l-btn{
    margin: 30px auto 0;
  }
}
@media screen and (max-width: 767px){
  .l-mediaLargeTxt .l-cols{
    margin-bottom: 40px;
  }
}

/* l-tileColBg */
.l-tileColBg{
  --this-gap: 8px;
  --this-padding: clamp( 15px, 1.7vw, 20px);
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-tileColBg .l-heading{
  background-color: var(--l-bg-c-main, #f2f2f2);
  margin-bottom: var(--this-gap);
  padding: var(--this-padding);
  text-align: left;
}
.l-tileColBg .l-subHeading{
  text-align: left;
  margin: 0;
}
.l-tileColBg .l-heading::before,
.l-tileColBg .l-subHeading::before{
  content: none;
}
.l-tileColBg .l-cols{
  gap: var(--this-gap);
  margin-top: 0;
  margin-bottom: var(--this-gap);
  align-items: stretch;
}
.l-tileColBg .l-cols__item{
  background-color: var(--l-bg-c-main, #f2f2f2);
  display: flex;
  align-items: center;
  padding: var(--this-padding);
}
.l-tileColBg .l-paragraph{
  margin-top: 0;
}
@media screen and (min-width: 768px){
  .l-tileColBg .l-cols__item:first-child{
    flex: unset;
    width: 300px;
  }
}


/* l-tileColWhite */
.l-tileColWhite{
  --this-gap: 8px;
  --this-padding: clamp( 15px, 1.7vw, 20px);
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-tileColWhite .l-heading{
  margin-bottom: var(--this-gap);
  padding: var(--this-padding);
  border-bottom: 1px solid var(--l-txt-c-base, #2c2c2c);
  text-align: left;
}
.l-tileColWhite .l-subHeading{
  text-align: left;
  margin: 0;
}
.l-tileColWhite .l-heading::before,
.l-tileColWhite .l-subHeading::before{
  content: none;
}
.l-tileColWhite .l-cols{
  gap: var(--this-gap);
  margin-top: 0;
  margin-bottom: var(--this-gap);
  align-items: stretch;
}
.l-tileColWhite .l-cols__item{
  display: flex;
  align-items: center;
  padding: var(--this-padding);
}
.l-tileColWhite .l-paragraph{
  margin-top: 0;
}
@media screen and (min-width: 768px){
  .l-tileColWhite .l-cols__item:first-child{
    flex: unset;
    width: 300px;
  }
}


/* l-readMore */
.l-readMore{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-readMore .l-cols{
  border: 1px solid var(--l-txt-c-base, #2c2c2c);
  padding: clamp( 20px, 2.5vw, 30px) clamp( 15px, 2vw, 30px);
}
.l-readMore .l-cols+.l-cols{
  margin-top: clamp( 20px, 2.5vw, 30px);
}
.l-readMore .l-subHeading::before{
  content: none;
}
.l-readMore p:has(a){
  margin-top: clamp( 15px, 1.7vw, 20px);
}
.l-readMore p:has(a) a{
  color: var(--l-theme-c-main, #bf2020);
  text-decoration: underline;
}
.l-readMore p:has(a)[class*="center"]{
  text-align: center;
}
.l-readMore p:has(a)[class*="left"]{
  text-align: left;
}
.l-readMore p:has(a)[class*="right"]{
  text-align: right;
}
.l-readMore .wp-block{
  margin: 0;
}
@media screen and (min-width: 768px){
  .l-readMore .l-cols{
    align-items: flex-start;
  }
  .l-readMore .l-cols .l-cols__item:first-child{
    flex: unset;
    width: 300px;
  }
}
/* l-readMore--ttlOnBox */
.l-readMore--ttlOnBox{
  position: relative;
}
.l-readMore--ttlOnBox .l-cols{
  border-radius: 8px;
  padding-top: clamp( 35px, 4vw, 50px);
}
.l-readMore--ttlOnBox .l-heading{
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: clamp( 15px, 2vw, 30px);
  background-color: #fff;
  padding-inline: 15px;
  z-index: 2;
}
.l-readMore--ttlOnBox .l-heading::before{
  content: none;
}
.l-readMore--ttlOnBox .l-freeList{
  margin-bottom: 0;
}

/* .l-list--ttlOnBox */
.l-list--ttlOnBox{
  border-radius: 8px;
  border: 1px solid var(--l-txt-c-base, #2c2c2c);
  padding: clamp(20px, 2.5vw, 30px) clamp(15px, 2vw, 30px);
  padding-top: clamp( 35px, 4vw, 50px);
  position: relative;
}
.block-editor-block-list__block.l-list--ttlOnBox .l-heading{
  transform: translateY(-180%);
}

/* l-readMore--labelHeading */
.l-readMore--labelHeading .l-heading{
  margin-bottom: 0;
  background-color: var(--l-theme-c-main, #bf2020);
  color: #fff;
  padding-block: clamp( 10px, 1.2vw, 15px);
}
.l-readMore--labelHeading .l-heading::before{
  content: none;
}
.l-readMore--labelHeading .l-cols{
  border-top: none;
}

/* l-tileCol--readMore */
.l-tileCol--readMore{
  position: relative;
  display: grid;
  overflow: hidden;
}
.l-tileCol--readMore.is-active{
  max-height: none;
}
.l-btn--readMore{
  position: absolute;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.l-tileCol--readMore.is-active .l-btn--readMore{
  display: none !important;
}
.l-tileCol--readMore::after{
  height: 200px;
  content: "";
  display: inline-block;
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.l-tileCol--readMore.is-active::after{
  display: none;
}
.l-btn--readMore a::after,
.l-btn--readMore .wp-block-button__link:after{
  top: 45%;
  transform: rotate(90deg) translateY(-50%);
  transform-origin: 0 0;
}
.l-tileColReadMoreContainer{
  gap: 0px;
}
.l-tileColReadMoreContainer .l-heading{
  width: 100%;
}
@media screen and (min-width: 768px){
  .l-tileCol--readMore{
    max-height: 900px;
  }
  .l-tileColReadMoreContainer:not(:first-child){
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px){
  .l-tileCol--readMore{
    max-height: 1200px;
  }
  .l-tileColReadMoreContainer:not(:first-child){
    margin-top: 40px;
  }
}
.block-editor-block-list__block.l-tileCol--readMore{
  max-height: none;
}
.block-editor-block-list__block.l-tileCol--readMore::after{
  content: none;
}
.block-editor-block-list__block.l-btn--readMore{
  position: static;
  bottom: unset;
  left: unset;
  transform: unset;
}

/* l-freeTtl */
.l-freeTtl{
  margin-bottom: 30px;
}
.l-freeTtl--bg{
  border-left: 5px solid var(--l-theme-c-main, #bf2020);
  background: var(--l-bg-c-main, #f2f2f2);
}
.l-freeTtl--bd{
  border: 3px double var(--l-txt-c-base, #2c2c2c);
  border-left: none;
  border-right: none;
}
.l-freeTtl--bdl{
  border-left: 5px solid #72645F;
}
.l-freeTtl--ballon mark{
  display: block;
  text-align: center;
  color: #fff;
  padding-block: 10px;
  position: relative;
}
.l-freeTtl--ballon mark::after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: inherit;
  aspect-ratio: 15/10;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 30px;
  height: 15px;
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px){
  h2.l-freeTtl{
    font-size: 20px;
  }
  h3.l-freeTtl{
    font-size: 18px;
  }
  h2.l-freeTtl--bg{
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  h2.l-freeTtl--bd{
    padding: 15px 20px;
    margin-bottom: 30px;
  }
  h2.l-freeTtl--bdl{
    padding: 10px 20px;
    margin-bottom: 30px;
  }
  h3.l-freeTtl--bg{
    padding: 10px 20px;
    margin-bottom: 25px;
  }
  h3.l-freeTtl--bd{
    padding: 10px 20px;
    margin-bottom: 25px;
  }
  h3.l-freeTtl--bdl{
    padding: 10px 20px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px){
  h2.l-freeTtl{
    font-size: 18px;
  }
  h3.l-freeTtl{
    font-size: 16px;
  }
  h2.l-freeTtl--bg{
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h2.l-freeTtl--bd{
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h2.l-freeTtl--bdl{
    padding: 10px 15px;
    margin-bottom: 20px;
  }
  h3.l-freeTtl--bg{
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  h3.l-freeTtl--bd{
    padding: 10px 15px;
    margin-bottom: 15px;
  }
  h3.l-freeTtl--bdl{
    padding: 10px 15px;
    margin-bottom: 15px;
  }
}

/* l-balloon */
.l-balloon{
  margin-bottom: var(--l-sec-spc, 100px);
  align-items: flex-start;
}
.l-balloon--r{
  flex-direction: row-reverse;
}
.l-balloon .l-figure img{
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}
.l-balloon__figure{
  flex-basis: unset !important;
  flex-grow: unset !important;
  flex: unset;
}
.l-balloon__txt{
  flex: 1;
  --this-bg-color: var(--l-bg-c-main, #f2f2f2);
  background-color: var(--this-bg-color);
  border-radius: 10px;
  padding: clamp( 15px, 2.5vw, 30px);
  position: relative;
}
.l-balloon__txt::before{
  content: "";
  display: inline-block;
  background: var(--this-bg-color);
  aspect-ratio: 15 / 18;
  position: absolute;
}
.l-balloon--l .l-balloon__txt::before{
  right: 100%;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
.l-balloon--r .l-balloon__txt::before{
  left: 100%;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.l-balloon__txt .l-paragraph{
  margin-top: 0;
}
@media screen and (min-width: 768px){
  .l-balloon{
    gap: 50px;
  }
  .l-balloon__figure{
    width: 150px;
  }
  .l-balloon__txt::before{
    width: 25px;
    top: 30px;
  }
}
@media screen and (max-width: 767px){
  .l-balloon.l-cols{
    display: flex !important;
    gap: 30px;
  }
  .l-balloon__figure{
    width: 60px;
  }
  .l-balloon__txt::before{
    width: 15px;
    top: 25px;
  }
  .l-balloon__txt .l-paragraph{
    font-size: 12px;
  }
}

/* youtubeと動画 */
figure:has(iframe[src*="https://www.youtube.com/embed/"]),
figure:has(video){
  margin-bottom: var(--l-sec-spc, 100px);
}
figure :is(iframe[src*="https://www.youtube.com/embed/"],video){
  display: block;
  width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

/* l-imgBox */
.l-imgBox{
  margin-bottom: var(--l-sec-spc, 100px);
  border-width: clamp( 3px, 0.5vw, 6px);
  position: relative;
  padding: clamp( 15px, 2.5vw, 30px);
  padding-top: clamp( 30px, 3vw, 40px);
}
.l-imgBox .l-figure{
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  left: clamp( 15px, 2.5vw, 30px);
  z-index: 2;
  width: 50px;
}
.l-imgBox .l-figure img{
  aspect-ratio: 1/1;
  object-fit: cover;
}
.l-imgBox .l-paragraph{
  margin-top: 0;
}
.l-imgBox--double{
  border-style: double;
  border-color: var(--l-txt-c-base, #2c2c2c);
}
.l-imgBox--thick{
  border-style: solid;
  border-color: var(--l-theme-c-main, #bf2020);
}
.l-imgBox--dashed{
  border-style: dashed;
  border-color: var(--l-theme-c-main, #bf2020);
}


/* l-quote */
.l-quote{
  border-left: 10px solid var(--l-theme-c-main, #bf2020);
  background-color: var(--l-bg-c-main, #f2f2f2);
  position: relative;
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-quote::before{
  content: "“";
  font-family: '游ゴシック体', 'Yu Gothic', '游ゴシック', 'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro W3', 'メイリオ', Meiryo, sans-serif;
  position: absolute;
  color: var(--l-theme-c-main, #bf2020);
  line-height: 1;
}
.l-quote cite{
  display: block;
  text-align: right;
  margin-top: 20px;
  font-size: 12px;
}
.l-quote cite::before{
  content: "";
  display: inline-block;
  background: var(--l-txt-c-base, #2c2c2c);
  width: 50px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 768px){
  .l-quote{
    padding: 30px 30px 30px 100px;
  }
  .l-quote::before{
    font-size: 100px;
    top: 10px;
    left: 20px;
  }
}
@media screen and (max-width: 767px){
  .l-quote{
    padding: 20px 20px 20px 60px;
  }
  .l-quote::before{
    font-size: 80px;
    top: 10px;
    left: 10px;
  }
}

/* l-freeList */
.l-freeList{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-freeList *::marker{
  font-size: 0;
}
.l-freeList--num{
  counter-reset: original-counter;
}
.l-freeList li{
  position: relative;
}
.l-freeList li:not(:last-child){
  margin-bottom: clamp( 10px, 1.3vw, 15px);
}
.l-freeList--check li::before,
.l-freeList--num li::before{
  line-height: 1;
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--l-theme-c-main, #bf2020);
  color: #fff;
  font-weight: bold;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;

  text-align: center;
}
.l-freeList--check li::before{
  content: "✔" !important;
}
.l-freeList--num li::before{
  content: ''counter(original-counter) !important;
  counter-increment: original-counter;
}
@media screen and (min-width: 768px){
  .l-freeList li{
    padding-left: 40px !important;
  }
  .l-freeList--check li::before,
  .l-freeList--num li::before{
    top: 0px;
    width: 25px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px){
  .l-freeList li{
    padding-left: 30px !important;
  }
  .l-freeList--check li::before,
  .l-freeList--num li::before{
    top: 3px;
    width: 20px;
    font-size: 12px;
  }
}


/* l-productList__list */
.l-productList{
  margin-bottom: var(--l-sec-spc, 100px);
}
.l-productList__list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--this-item-width), 1fr));
  gap: 20px !important;
}
.l-productList :where(.is-layout-flex){
  gap: 0;
}
.l-productList__item__thumb{
  margin-bottom: 10px !important;
}
.l-productList__item__thumb img{
  aspect-ratio: 1/1;
  object-fit: cover;
}
.l-productList__item__price{
  margin-top: 10px !important;
  text-align: right;
}
.l-productList__item__price::before{
  content: "¥";
}
.l-productList__item__link{
  width: 100%;
  justify-content: center;
  margin-top: 10px !important;
}
.l-productList__item__link a{
  display: block;
  width: 100% !important;
  text-align: center;
  padding: 0 !important;
  font-size: 12px;
}
@media screen and (min-width: 768px){
  .l-productList__list{
    --this-item-width: 160px;
  }
}
@media screen and (max-width: 767px){
  .l-productList__list{
    --this-item-width: 140px;
  }
}