@charset "utf-8";
/* このCSSは、グループページ、フリーページ、商品ページ使えます */
/* 共通 */
:root{
  --L_BTN_COLOR: var(--BLACK);
  --L_BGCOLOR_GRAY: #f2f2f2;
  --L_BDCOLOR_GRAY: var(--BDCOLOR_GRAY_1);
  --L_BDCOLOR_BLACK: #2d2d2d;
  --L_MARK: #fff799;
  --L_TEXT_RED: #ff0000;
}
.l-container{
  letter-spacing: 0.1em;
}
.l-container > div[class*="l-"],
.l-container > table[class*="l-"],
.l-container > ul[class*="l-"]{
  width: var(--INNER_WIDTH);
  max-width: var(--PC_MAX_WIDTH_M);
  margin: 0 auto var(--GENERALSEC);
}
.g-closeMissingTagForcedTable .l-container > div[class*="l-"],
.g-closeMissingTagForcedTable .l-container > table[class*="l-"],
.g-closeMissingTagForcedTable .l-container > ul[class*="l-"]{
  width: 100%;
}
.l-contentsTitle{
  font-weight: bold;
  border-left: 1px solid var(--BLUE01);
  line-height: 1.5;
}
.l-contentsTitle--marginTop{
  margin-top: 50px;
}
.l-container h2 mark{
  background: linear-gradient(transparent 70%, var(--L_MARK) 30%);
}
.l-container a{
  color: var(--BLUE03);
  text-decoration: underline;
}
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-contentsTitle{
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 15px;
    border-width: 5px;
  }
  .l-container p{
    font-size: var(--FZ_16);
  }
  .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-contentsTitle{
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 12px;
    border-width: 4px;
  }
  .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-specTable */
.l-specTable{
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--BDCOLOR_GRAY_1);
}
.l-specTable th{
  background-color: var(--BGCOLOR_GRAY_1);
  font-weight: var(--FF_W_BASE);
}
.l-specTable th,
.l-specTable td{
  border-bottom: 1px solid var(--BDCOLOR_GRAY_1);
}
@media screen and (min-width: 768px){
  .l-container > .l-specTable{
    margin-bottom: calc(var(--GENERALSEC) * 2);
  }
  .l-specTable th{
    font-size: var(--FZ_16);
    padding: 0 var(--GAP_50);
    white-space: nowrap;
  }
  .l-specTable td{
    font-size: var(--FZ_14);
    padding: var(--GAP_30) var(--GAP_50);
  }
}
@media screen and (max-width: 767px){
  .l-specTable{
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--BDCOLOR_GRAY_1);
  }
  .l-specTable tbody,
  .l-specTable tr{
    display: contents;
  }
  .l-specTable th,
  .l-specTable td{
    padding: 10px 15px;
  }
  .l-specTable td{
    font-size: var(--FZ_13);
  }
  .l-specTable tr:last-child td{
    border-bottom: none;
  }
}
/* l-anchor */
.l-anchor li a{
  display: block;
  position: relative;
  text-align: center;
  font-weight: var(--FF_W_B);
  color: var(--TXT_COLOR_BASE);
  text-decoration: none;
}
.l-anchor li a::after{
  font-family: 'Font Awesome 5 Pro';
  font-weight: var(--FF_W_B);
  content: '\f078';
  color: var(--BDCOLOR_GRAY_2);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px){
  .l-container > ul.l-anchor{
    max-width: var(--PC_MAX_WIDTH_L);
  }
  .l-anchor{
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid var(--BDCOLOR_GRAY_1);
    padding-top: var(--GENERALSEC_HALF);
    display: flex;
    justify-content: center;
  }
  .l-anchor li{
    width: 100%;
    max-width: 250px;
  }
  .l-anchor li:not(:last-child){
    border-right: 1px solid var(--BDCOLOR_GRAY_1);
  }
  .l-anchor li a{
    padding-bottom: 20px;
  }
  .l-anchor li a::after{
    font-size: 12px;
  }
}
@media screen and (max-width: 767px){
  .l-anchor{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .l-anchor li{
    border-top: 1px solid var(--BDCOLOR_GRAY_1);
  }
  .l-anchor li a{
    padding: 10px 0 20px;
  }
  .l-anchor li a::after{
    font-size: 10px;
  }

}
/* l-btn */
.l-btn{
	display: block;
	text-align: center;
	letter-spacing: 0.1em;
	border: 1px solid var(--L_BTN_COLOR);
  background-color: var(--L_BTN_COLOR);
  color: var(--WHITE) !important;
  text-decoration: none !important;
	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(--WHITE);
    color: var(--L_BTN_COLOR) !important;
  }
  .l-btn--reverse:hover{
    background-color: var(--L_BTN_COLOR);
    color: var(--WHITE);
    opacity: 1;
  }
}
@media screen and (min-width: 768px){
  .l-btn{
    padding: 13px 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);
  padding-right: 15px;
  text-decoration: underline;
}
.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-heading,
.FS2_upper_comment h2.l-heading{
  font-weight: var(--FF_W_B);
  text-align: center;
  border-bottom: 1px solid var(--L_BDCOLOR_BLACK);
}
.FS2_upper_comment h2.l-heading{
  color: var(--TXT_COLOR_BASE);
  background-color: unset;
  line-height: 1.5;
}
.l-heading strong,
.FS2_upper_comment h2.l-heading strong{
  color: var(--BLUE03);
  border-bottom: 1px solid var(--BLUE03);
}
@media screen and (min-width: 768px){
  .l-heading,
  .FS2_upper_comment h2.l-heading{
    font-size: var(--FZ_30);
    padding-bottom: 20px;
    margin-bottom: var(--GAP_50);
  }
}
@media screen and (max-width: 767px){
  .l-heading,
  .FS2_upper_comment h2.l-heading{
    font-size: var(--FZ_22);
    padding-bottom: 8px;
    margin-bottom: 15px;
  }
}
.l-heading--noBorder,
.FS2_upper_comment h2.l-heading--noBorder{
  padding-bottom: 0;
  border: none;
}

/* 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: 20px;
  }
  .l-imageTitleTextList > ul:has(li .l-btn) p{
    margin-bottom: 40px;
  }
  .l-imageListWithText:has(.l-btn) p{
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px){
  .l-imageListWithText > ul:has(li img){
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin-bottom: 15px;
  }
  .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: 20px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px){
  .l-imageTitleTextList > ul:has(li img){
    gap: 30px;
  }
  .l-imageTitleTextList > ul:has(li img) li img{
    margin-bottom: 15px;
  }
  .l-imageTitleTextList > ul:has(li img) li h3{
    margin-bottom: 15px;
  }
}

/* l-imageTextSide */
.l-imageTextSide > ul:has(li div){
  display: grid;
}
.l-imageTextSide figcaption{
  font-size: var(--FZ_12);
  margin-top: 3px;
}
.l-imageTextSide > ul > li .l-btn{
  margin-top: var(--GAP_30);
}
@media screen and (min-width: 768px){
  .l-imageTextSide > ul:has(li div){
    gap: calc(var(--GENERALSEC) + var(--GENERALSEC_HALF));
  }
  .l-imageTextSide > ul > li:has(div){
    display: grid;
    grid-template-columns: 4fr 6fr;
    column-gap: var(--GAP_50);
  }
  .l-imageTextSide > ul > li:has(div .l-btn) p{
    margin-bottom: 30px;
  }
  .l-imageTextSide > ul > li .l-btn{
    grid-column: span 2;
  }
  .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: 15px;
    margin-top: 20px;
  }
  .l-imageTextSide > ul > li:has(div .l-btn) p{
    margin-bottom: 20px;
  }
}

/* l-explainWidthImage */
.l-explainWidthImage ul{
  display: grid;
}
.l-explainWidthImage figcaption{
  font-size: var(--FZ_12);
  margin-top: 3px;
}
@media screen and (min-width: 768px){
  .l-explainWidthImage ul{
    gap: var(--GAP_40);
  }
  .l-explainWidthImage ul li{
    display: grid;
    grid-template-columns: clamp( 200px, 25vw, 300px) 1fr;
    gap: var(--GAP_50);
  }
  .l-explainWidthImage .l-btn{
    margin: 50px auto 0;
  }
}
@media screen and (max-width: 767px){
  .l-explainWidthImage ul{
    gap: 30px;
  }
  .l-explainWidthImage ul li{
    display: grid;
    column-gap: 15px;
  }
  .l-explainWidthImage ul img{
    grid-row: span 2;
    margin-bottom: 15px;
  }
  .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-explainWidthImage .l-btn{
    margin: 30px auto 0;
  }
}


/* 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: 20px;
  }
  .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: 15px;
  }
  .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: var(--GAP_50);
  }
  .l-textLinkContainer .l-btn{
    margin-top: 50px;
  }
}
@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;
  }
}
/* l-review */
.l-review figure img{
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.l-review figure figcaption{
  font-weight: var(--FF_W_B);
}
@media screen and (min-width: 768px){
  .l-review{
    display: grid;
    grid-template-columns: 200px 1fr;
    column-gap: var(--GAP_50);
  }
  .l-review h2{
    grid-column: span 2;
  }
  .l-review figure figcaption{
    font-size: var(--FZ_20);
    margin-top: 3px;
  }
  .l-review figure figcaption span{
    font-size: var(--FZ_14);
  }
  .l-review figure p{
    font-size: var(--FZ_12);
  }
  .l-review div h3:not(:first-child){
    margin-top: var(--GAP_50);
  }
}
@media screen and (max-width: 767px){
  .l-review figure{
    width: 150px;
    margin: 0 auto;
  }
  .l-review figure figcaption{
    font-size: var(--FZ_20);
    margin-top: 3px;
  }
  .l-review figure figcaption span{
    font-size: var(--FZ_14);
  }
  .l-review figure p{
    font-size: var(--FZ_12);
  }
  .l-review div{
    margin-top: 30px;
  }
  .l-review div h3:not(:first-child){
    margin-top: var(--GAP_50);
  }
}
/* l-step__flow */
.l-step__flow{
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  counter-reset: original-counter;
}
.l-step__flow li{
  display: flex;
  align-items: center;
  background-color: var(--BLUE01);
  position: relative;
}
.l-step__flow li::after{
  content: "";
  display: inline-block;
  background: var(--BLUE01);
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  left: 99%;
}
.l-step__flow li p{
  display: flex;
  flex-direction: column;
  font-weight: var(--FF_W_B);
}
.l-step__flow li p::before{
  content: 'STEP'counter(original-counter);
  counter-increment: original-counter;
}
@media screen and (min-width: 768px){
  .l-step__flow{
    justify-content: center;
  }
  .l-step,
  .l-container > div.l-step{
    max-width: var(--PC_MAX_WIDTH_S);
  }
  .l-step__flow li{
    min-width: 130px;
    min-height: 130px;
    padding-left: 20px;
  }
  .l-step__flow li::after{
    width: 20px;
  }
  .l-step__flow{
    margin-bottom: var(--GAP_50);
    gap: 20px 40px;
  }
}
@media screen and (max-width: 767px){
  .l-step,
  .l-container > div.l-step{
    max-width: var(--PC_MAX_WIDTH_S);
  }
  .l-step__flow li{
    min-width: 80px;
    min-height: 80px;
    padding-left: 10px;
  }
  .l-step__flow li::after{
    width: 15px;
  }
  .l-step__flow{
    margin-bottom: var(--GAP_50);
    gap: 10px 25px;
  }
  .l-step__flow li p{
    font-size: 12px;
    line-height: 1.5;
  }
}
/* l-step__desc */
.l-step__desc{
  display: grid;
  counter-reset: original-counter;
}
.l-step__desc .l-contentsTitle span::before{
  content: 'STEP'counter(original-counter)'：';
  counter-increment: original-counter;
}
.l-step__contents{
  display: grid;
  gap: 20px;
}
.l-step__box__heading,
.l-step__box__list__ttl{
  font-weight: var(--FF_W_B);
}
.l-step__box__heading::before{
  content: '■';
}
.l-step__box__list{
  display: grid;
}
.l-step__attention{
  --COLOR: var(--RED01);
  border: 1px solid var(--COLOR);
}
.l-step__attention--duskwinkle{
  --COLOR: var(--BLUE01);
}
.l-step__attention--black{
  --COLOR: var(--BLACK);
}
.l-step__attention__heading,
.l-step__attention--duskwinkle .l-step__attention__heading,
.l-step__attention--black .l-step__attention__heading{
  color: var(--COLOR);
  font-weight: bold;
}
@media screen and (min-width: 768px){
  .l-step__desc{
    gap: var(--GAP_50);
  }
  .l-step__box{
    padding: var(--GAP_50);
  }
  .l-step__box__heading,
  .l-step__box__list__ttl{
    font-size: var(--FZ_18);
  }
  .l-step__box__heading{
    margin-bottom: var(--GAP_20);
  }
  .l-step__box__lead{
    margin-bottom: var(--GAP_40);
  }
  .l-step__box__list{
    gap: var(--GAP_40);
  }
  .l-step__box__list__ttl{
    margin-bottom: var(--GAP_20);
  }
  .l-step__attention{
    padding: var(--GAP_25);
  }
  .l-step__attention__heading{
    margin-bottom: 3px;
  }
  .l-step__attention__heading,
  p.l-step__attention__txt{
    font-size: var(--FZ_14);
  }
}
@media screen and (max-width: 767px){
  .l-step__desc{
    gap: var(--GAP_40_CONST);
  }
  .l-step__box{
    padding: var(--GAP_30);
  }
  .l-step__box__heading,
  .l-step__box__list__ttl{
    font-size: var(--FZ_16);
  }
  .l-step__box__heading{
    margin-bottom: var(--GAP_10);
  }
  .l-step__box__lead{
    margin-bottom: var(--GAP_20);
  }
  .l-step__box__list{
    gap: var(--GAP_20);
  }
  .l-step__box__list__ttl{
    margin-bottom: var(--GAP_10);
  }
  .l-step__attention{
    padding: var(--GAP_20);
  }
  .l-step__attention__heading{
    margin-bottom: 2px;
  }
  .l-step__attention__heading,
  p.l-step__attention__txt{
    font-size: var(--FZ_12_CONST);
  }
}
/* l-youtube */
@media screen and (min-width: 768px){
  .l-youtube{
    display: flex;
    justify-content: center;
    gap: 2%;
  }
  .l-youtube li{
    width: 49%;
  }
}
/* l-iconBtn */
.l-iconBtn{
  display: flex;
}
.l-iconBtn li a{
  display: grid;
  border: 1px solid var(--L_BDCOLOR_GRAY);
  background-color: var(--WHITE);
  text-decoration: none;
}
.l-iconBtn li a i{
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--BLUE03) no-repeat center center / 50%;
  border-radius: 50%;
}
.l-iconBtn li a span{
  color: var(--BLUE03);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 768px){
  .l-iconBtnContainer{
    max-width: var(--PC_MAX_WIDTH_S);
  }
  .l-iconBtn{
    justify-content: center;
    gap: var(--GAP_50);
  }
  .l-iconBtn li{
    width: calc((100% - var(--GAP_50) * 2) / 3);
  }
  .l-iconBtn li a{
    grid-template-columns: 68px 1fr;
    gap: var(--GAP_15);
    padding: 25px 18px;
  }
  .l-iconBtn li a span{
    font-size: var(--FZ_22);
  }
}
@media screen and (max-width: 767px){
  .l-iconBtn{
    display: grid;
    gap: 10px;
  }
  .l-iconBtn li a{
    grid-template-columns: 50px 1fr;
    gap: 15px;
    padding: 15px 10px;
    align-items: center;
  }
  .l-iconBtn li a span{
    font-size: 18px;
  }
  .l-iconBtn li a span br{
    display: 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;
}

.TOEFLBdbblue{
  font-weight: 700;
  color: var(--BLUE03);
  border-bottom: 1px solid var(--BLUE03);
}
/* 調整 */
.s-product .FS2_lower_comment{
  background: unset;
}

/********** ブログ **********/
.inc-blog{
}
.inc-blog .heading{
	margin:0 0 30px;
	padding:8px 3px 5px 43px;
	border-radius:0;
	font-size:18px;
	font-weight:bold;
	color:#fff;
	background:#004b8e url(https://www.officialtestprep.jp/images/common/i-t-blog.png) no-repeat 13px 50%;
}
.inc-blog .inc-blog-box ul{
	display: grid;
}
.inc-blog .inc-blog-box ul li .title{
	padding:0 2px 2px;
}
.inc-blog .inc-blog-box ul li .datetime{
	padding:0 2px 9px;
	border-bottom:dashed 1px #ccc;
	font-weight:bold;
}
.inc-blog .inc-blog-box ul li .txt{
	padding:12px 2px 0;
	line-height:1.65;
}
.inc-blog .inc-blog-box ul li .title a{
	display:block;
	color:#000;
}
@media screen and (min-width: 768px){
	.inc-blog .inc-blog-box ul{
		grid-template-columns: repeat(4, 1fr);
		gap: var(--GAP_30);
	}
}
@media screen and (max-width: 767px){
	.inc-blog .inc-blog-box ul{
		grid-template-columns: repeat(2, 1fr);
		gap: var(--GAP_20);
	}
}