
.feature-wrapper *{
  box-sizing: border-box;
}
.feature-wrapper img{
  width: 100%;
}
.feature-wrapper h1,
.feature-wrapper h2,
.feature-wrapper h3,
.feature-wrapper h4,
.feature-wrapper h5,
.feature-wrapper h6 {
  font-size: initial;
  font-weight: normal;
  margin: 0;
  padding: 0;
  background: none;
  color: inherit;
  line-height: normal;
  text-transform: none;
  letter-spacing: normal;
}
:root {
  --blue: #3B9FDE ;
  --green: #3FB77C ;
  --red: #C12A29 ;
  --light-blue: #EBF5FC;
  --light-green: #EBF8F2;
  --light-red: #F9E9E9;
}


.--gray{
  background-color: #F8F8F8;
}
.--blue{
  background-color: var(--blue);
}
.--green{
  background-color: var(--green);
}
.--red{
  background-color: var(--red);
}
.--lightblue{
  background-color: var(--light-blue);
}
.--lightgreen{
  background-color: var(--light-green);
}
.--lightred{
  background-color: var(--light-red);
}

.--txt-red{
  color: #FF1515 ;
}
.--hoversetting:hover{
  opacity: .7;
}

.txt--small{
  font-size: 16px;
}
.br--pc{
  display: block;
}
@media screen and (max-width: 767px) {
.txt--small{
  font-size: 14px;
}
.br--pc{
  display: none;
}
}

.txt-bold{font-weight: bold;}

.--l-flex{
  display: flex;
  gap: 16px; /* 子要素間の隙間 */
  justify-content: center;
}



@media screen and (max-width: 767px) {
 .--l-flex{
  display: block;
} 
.--l-flex + .--l-flex{
  margin-top:0px ;
}
}
.--l-flex .ftr-product-card{
  flex: 1; /* 等分にする */
}

.feature-wrapper h2{
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: center;
  padding: 0;
  background-color: transparent;
}

.feature-wrapper h3{
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: center;
  padding: 0;
  
}

.feature-wrapper h4{
  font-size: 16px;
  margin: 0 0 20px 0;
  line-height: 1.4;
  text-align: center;
  font-weight: bold;
  padding: 0;
}



.imgwrapper{
  margin: 40px auto;
}

.ftr-contsinfo__block{
  margin-top: 80px;
  margin-bottom: 80px;
}

.ftr-contsinfo__imgwrapper{
  width: 80%;
  margin: 0 auto;
}

.ftr-contsinfo-sec{
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
 .feature-wrapper h2{
  font-size: 20px;
  margin: 0 0 16px 0;
  text-align: left;
  background-color: transparent;
  padding: 0;
}

.feature-wrapper h3{
  font-size: 18px;
  margin: 0 0 16px 0;
  text-align: left;
  padding: 0;
}

.feature-wrapper h4{
  font-size: 16px;
  margin: 0 0 16px 0;
  text-align: left;
  padding: 0;
}

.feature-wrapper p{
  font-size: 16px;
  text-align: left;
}
.ftr-contsinfo__block{
  margin-top: 40px;
  margin-bottom: 40px;
}
.imgwrapper{
  margin-top: 20px;
  margin-bottom: 20px;
}
.ftr-contsinfo__imgwrapper{
  margin: inherit auto;
  width: 100%;
}
.ftr-contsinfo-sec{
  padding-bottom: 40px;
}
}



.kv-sec {
  width: 100%;
  margin-top: 80px;
  margin-bottom: 0px;
  color: #000;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .kv-sec {
    margin-top: 0px;
  }
}
.kv-wrapper {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0px;
}


.ftr-contsinfo-wrapper {
  max-width: 1200px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
}

.ftr-contsinfo-wrapper--puttercatalog{
  margin-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .ftr-contsinfo-wrapper--puttercatalog{
    margin-top: 20px;
    padding-bottom: 40px;
  }
}

#puttertype-blue,#puttertype-green,#puttertype-red {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

#puttertype-blue.is-visible,#puttertype-green.is-visible,#puttertype-red.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ftr-contsinfo-sec--detail{
  padding-top: 60px;
  padding-bottom: 60px;
}


/* PC 共通 */
.row_table{
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 10px;    
  background: transparent;   
}

.row_table td,
.row_table th{
  padding: 10px;
  line-height: 1.7;
}

.row_table th{
  text-align: center;
  background: #D8D8D8;
  vertical-align: top;
}

/* SP */
@media screen and (max-width: 767px) {
  .row_table{
    border-collapse: separate;  /* ← ここでも separate に */
    border-spacing: 0 10px;
  }
  .row_table,
  .row_table td,
  .row_table th{
    font-size: 14px;
    text-align: left;
  }
  .row_table th{
    background: #d8d8d8;
    padding: 4px 6px;
    display: block;
    width: 100%;
    
  }
  .row_table td{
    background: #f5f6f8;
    padding: 4px 12px;
    display: block;
    width: 100%;
  }
}


.ftr-contsinfo-sec--products{
  margin: 80px 0;
}

.ftr-product-card{
    background-color: #E2DCD6;
    display: flex;
    justify-content: center;
    align-items: flex-start; 
}
.ftr-product-card:hover{
  opacity: .7;
}
.ftr-product-card{
  color: #000;
  text-decoration: none;
}
.ftr-product-card:hover{
  text-decoration: none;
}
.ftr-product-card .ftr-product-card__txtwrapper--left{
  flex: 0 0 65%;   /* 固定で55% */
  max-width: 65%;  /* 念のため制御 */
  padding: 40px 0px 20px 40px;
}
/* SP */
@media screen and (max-width: 767px) {
  .ftr-product-card .ftr-product-card__txtwrapper--left{
    flex: 0 0 65%;   /* 固定で55% */
    max-width: 65%;  /* 念のため制御 */
    padding: 20px 0px 20px 20px;
  }
}

.ftr-product-card .ftr-product-card__imgwrapper--right{
  flex: 0 0 35%;   /* 固定で45% */
  max-width: 35%;
  height: 100%;
    display: flex;              /* flex化 */
  align-items: flex-end;      /* 子要素を下寄せ */
}
.ftr-product-card__imgwrapper--right img {
  width: 100%;     /* 親の幅に合わせて伸縮 */
  height: auto;
  display: block;
}

.ftr-product-card__subttl{
  font-size:24px;
  font-weight: bold;
  color: #5A5149;
  text-align: left;
}
/* SP */
@media screen and (max-width: 767px) {
.ftr-product-card__subttl{
  font-size:18px;
}
}

h4.ftr-product-card__ttl{
  font-size:48px;
  font-weight: bold;
  color: #5A5149;
  text-align: left;
}
/* SP */
@media screen and (max-width: 767px) {
h4.ftr-product-card__ttl{
  font-size:24px;
  margin-bottom: 10px;
}
}

h4.ftr-product-card__ttl span{
  font-size: 40px;
}
/* SP */
@media screen and (max-width: 767px) {
h4.ftr-product-card__ttl span{
  font-size: 20px;
}
}
.ftr-product-card__txtbold{
  font-weight: bold;
  font-size: 20px;
  text-align: left;
  margin: 0px;
}
/* SP */
@media screen and (max-width: 767px) {
.ftr-product-card__txtbold{
  font-size: 16px;
}
}

.ftr-product-card__txt{
  font-size: 16px;
  text-align: left;
  margin: 0px;
}

.ftr-product-card .btnbuy{
  width: 200px;
  margin: 0;
  margin: 20px 0;
}


@media (max-width: 767px) {
.ftr-contsinfo-sec--products{
  margin: 40px 0;
  }
  .ftr-product-card{
    height: auto;
    margin: 20px 0px;
    padding-bottom: 20px;
}
}


/*購入はこちら*/
.btnbuy-wrapper{
  margin-top: 30px;
}
.btnbuy {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  height:60px;
  border-radius: 4px;
  margin: 30px 0;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  margin: 0 auto;
}
.btnbuy:hover{
  opacity: .7;
}
@media (max-width: 767px) {
.btnbuy {
  height:50px;
}
}

/*もっと見る*/
.btnshowhide-wrapper{

  padding-bottom: 40px;
}
.btnshowhide {
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  height: 60px;
  border-radius: 4px;
  margin: 30px auto;
  text-align: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background-color: #90877E;
  transition: background-color 0.3s;
  border: none;
}

.btnshowhide::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 10.897px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10.897' viewBox='0 0 18 10.897'%3E%3Cpath id='chevron-top' d='M10.293,7.381l-7.1,7.1-1.9-1.9,9-9,9,9-1.9,1.9Z' transform='translate(19.293 14.483) rotate(180)' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
}

.btnshowhide:hover{
  opacity: .7;
}

.btnshowhide--close::after{
  content: "";
  display: inline-block;
  width: 18px;
  height: 10.897px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10.897' viewBox='0 0 18 10.897'%3E%3Cpath id='chevron-top' d='M10.293,7.381l-7.1,7.1-1.9-1.9,9-9,9,9-1.9,1.9Z' transform='translate(19.293 14.483) rotate(180)' fill='%23fff' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 8px;
  transform: rotate(180deg); /* ← ここを追加！ */
}


/* スマートフォン用のスタイル */
@media (max-width: 767px) {
  .btnbuy-wrapper{
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .btnbuy {
    font-size: 16px;
    margin: 0 auto;
    font-size: 16px;
  }
  .btnshowhide-wrapper{
    margin-top: 20px;
    padding-bottom: 40px;
  }
  .btnshowhide {
    font-size: 14px;
    margin: 0 auto;
    width: 100%;
    height: 60px;
  }
}


/*バナー*/
.ftr-product-card__bnrwrapper{
   width: 100%;
   margin: 0 auto;
   padding-bottom: 60px; 
}

.ftr-product-card__bnrwrapper:hover{
  opacity: .7;
}
@media (max-width: 767px) {
.ftr-product-card__bnrwrapper{
   padding-bottom: 40px; 
}
}

.puttertype__titlewrapper {
  text-align: center;
  padding: 20px 0;
  margin-top: 0;
}


.puttertype__title{
  max-width: 690px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .puttertype__title{
    width: 80%;
  }
}

.puttertype__contswrapper{
  padding-top: 80px;
}
@media (max-width: 767px) {
  .puttertype__contswrapper{
    padding-top: 40px;
  }
}

.ftr-product-card__name{
  font-weight: bold;
  display: block;
  font-size: 16px;
    text-decoration: underline;
}

.ftr-product-card__lead{
  font-size: 14px;
  display: block;
  
}

.ftr-product-card a span.ftr-product-card__lead{
  text-decoration: none !important;
}


.ftr-product-card--4{
  flex: 0 0 calc(25% - 12px) !important; /* PC: 4列 */
}

.puttertype__txtwrapper{
  margin-top: 60px;
}

h4.puttertype__modeltitle{
  font-size: 32px;
}


h4.puttertype__modeltitle a{
  color: #000;
  text-decoration: underline;
}

h4.puttertype__modeltitle a:hover{
  text-decoration: none;
}


.puttertype__modelsubtitle{
  font-size: 20px;
  font-weight: bold;
}
.puttertype__pricewrapper {
  display: flex;
  align-items: center;
  background: #fff; 
  padding: 0px;
  font-family: sans-serif;
  width: 50%;
  margin: 40px auto;
}

@media (max-width: 767px) {
  .puttertype__txtwrapper{
    margin-top: 24px;
  }
  h4.puttertype__modeltitle{
    font-size: 18px;
  }
  .puttertype__modelsubtitle{
    font-size: 16px;
  }
  .puttertype__pricewrapper{
     display: block;
     width: 80%;
     text-align: center;
  }
}

.puttertype__pricetxt {
  background-color: #e6e6e6;
  padding: 12px;
  font-size: 14px;
  white-space: nowrap;
}

.puttertype__price {
  display: flex;
  align-items: center;
  margin-left: 12px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .puttertype__price {
     font-size:  16px;
     padding-top: 10px;
     padding-bottom: 10px;
     display: block;
     margin: auto;
  }
}

.puttertype__off {
  background-color: #ff2e2e;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 4px;
  margin-right: 8px;
}


.ftr-contsinfo-sec--bnrwrapper{
  padding-top: 80px;
}
@media (max-width: 767px) {
  .ftr-contsinfo-sec--bnrwrapper{
    padding-top: 40px;
  }
}


/*お客様の声*/
/* 全体カード */
.ftr-product-card--voice {
  background: #fff;
  border-radius: 8px;
  padding: 40px 60px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin: 0 auto 40px;
  font-family: "Hiragino Sans", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 767px) {
.ftr-product-card--voice {
  padding: 20px;
}
}

/* ヘッダー部分（画像とテキスト横並び） */
.voice__header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.voice__header__imgwrapper {
  flex: 0 0 120px;
  max-width: 120px;
  margin-right: 16px;
}
@media (max-width: 767px) {
.voice__header__imgwrapper {
  flex: 0 0 80px;
  max-width: 80px;
}
}
.voice__header__imgwrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.voice__header__txtwrapper h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
@media (max-width: 767px) {
.voice__header__txtwrapper h4 {
 font-size: 1rem;
}
}
.voice__header__txtwrapper span {
  display: block;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 4px;
}

/* 本文部分 */
.voice__body {
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.voice__body .btnbuy{
  width: 200px;
}

/* 星評価 */
.voice__body__starwrapper {
  display: flex;
  align-items: center;
  gap: 8px; /* アイコンと星の間隔 */
  width: auto;  /* 必要に応じて調整 */
  height: 33px;
  background-image: url("https://bo-shopclubpingjp.ecbeing.biz/img/usr/feature-glidepro2025/top-review_userreview.png");
  background-size: 151px 33px;  /* 背景アイコンのサイズ */
  background-repeat: no-repeat;
  background-position: left center;
  padding-left: 160px; /* 背景アイコンの幅 + 余白分 */
}

.voice__staricon {
  font-size: 1rem;
  color: #0070c9; /* 星の色 */
  letter-spacing: 2px;
}
/* 星の数ごとのバリエーション */
.voice__staricon--5::before {
  content: "★★★★★";
}
.voice__staricon--4::before {
  content: "★★★★";
}
.voice__staricon--3::before {
  content: "★★★";
}
.voice__staricon--2::before {
  content: "★★";
}
.voice__staricon--1::before {
  content: "★";
}
.voice__staricon--0::before {
  content: "";
}
/* テキスト部分 */
.voice__body__txtwrapper p {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: 18px;
}



/*customize for onlinshop*/
.infodetail-wrapper {
  padding-bottom: 100px;
  margin-top: 40px;
}

.infodetail-wrapper a.infodetail-wrapper_btn {
  width: 500px;
  display: block;
  margin: 0 auto;
  background: #4366b5;
  color: #fff;
  font-size: 20px;
  border-radius: 2px;
  padding: 20px 0;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
}

.infodetail-wrapper a.infodetail-wrapper_btn:hover {
  background: #708fd5;
}

@media screen and (max-width: 768px) {
  .infodetail-wrapper a.infodetail-wrapper_btn {
    width: 80%;
    font-size: 16px;
  }
}

.cmapaign__title{
  text-align: left;
}


p.bnr_note{
  margin-top: 5px;
  font-size: 14px;
}

.link--note{color:#0371b5;}