@charset "UTF-8";

/*----------MENU-------------

 Reset
 キービジュアル KV
 共通見出し
 目次
 リード
 ご利用方法
 よくある質問
 対象商品

------------MENU-----------*/

/*-------------------------
	Reset
---------------------------*/
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box; }

article,
aside,
details,
figcaption,
figure,
hgroup,
menu,
section,
main {
  display: block; }

body {
  -webkit-text-size-adjust: 100%; }

.clearfix::after {
   content: "";
   display: block;
   clear: both;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;}

.brand_title_item h1{
  margin: 0 0 0 !important;
}

table,
input,
textarea,
select,
option {
  line-height: 1.1; }

table {
  border-collapse: collapse;
}

blockquote,
q {
  quotes: none; }

*:focus {
outline: none!important;
}

a {outline:none!important;}

a {
  -webkit-tap-highlight-color:rgba(0,0,0,0);
  cursor:pointer!important;
}

a,
ins {
  text-decoration: none; }

del {
  text-decoration: line-through; }

img {
  max-width:100%;
}

a {
  transition: 0.3s ease-in-out; }

ul li{
  list-style:none;
}

ul{
  margin:0;
  padding:0;
}

.pc_only_inline{
  display: inline-block;
}
.pc_only{
  display: block;
}
.sp_only_inline{
  display: none;
}
@media (max-width: 767px){
  .pc_only_inline{
  display: none;
}
.pc_only{
  display: none;
}
.sp_only_inline{
  display: inline-block;
}
  }

.wrap {
    max-width: 1200px;
    margin: auto;
    padding: 0 0.8rem;
}

.wrap_1600{
  max-width: 1600px;
    margin: auto;
    padding: 0 0.8rem;
}

p.mincho{
  font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
  font-size: 14px;
}

@media (max-width: 320px){
p.mincho{
  letter-spacing: -.07em;
}
}

.pane-main{
  background: url(/highcacao/img/bg.webp);
}

/*--------------------------------------------------------------
  キービジュアル KV
--------------------------------------------------------------*/
.top_title{
  position: relative;
}

.fadein {
  position: absolute;
  top: 20%;
  left: 10%;
  transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  color: #000;
  opacity: 0;
  animation-name: fadein;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 768px) and (max-width: 820px)  {
.fadein {
  top: 10%;
  left: 10%;
}
}

@media (max-width: 540px) {
.fadein {
  top: 3%;
  left: 0%;
}
}

.fadein h1{
  margin: 0 0 0px;
  font-size: 26px;
  display: inline;
  background: linear-gradient(transparent 60%, #d6ceee 60%);
}

.fadein p{
  text-shadow: 0 0 15px rgba(236, 236, 236, 0.8);
  font-size: 16px;
  margin-top: 20px;
}



@keyframes fadein {
  0% {
     opacity: 0;
     transform: translateX(0);
  }
  100% {
     opacity: 1;
     transform: translateX(20px);
  }
}




/*--------------------------------------------------------------
  共通見出し
--------------------------------------------------------------*/
 h2.highcacao {
    position: relative;
    padding: 1em 0 1em;
    margin: 0 auto 0;
    text-align: center;
    font-size:clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    background-color: #3b1185;
    color: #fff;
}

h3.highcacao{
  font-size:clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  color:#3b1185;
}

@media (max-width: 540px) {
   h2.highcacao {
    padding: .5em 0 .5em;
}
}

/*--------------------------------------------------------------
  商品詳細
--------------------------------------------------------------*/
.about_highcacao p{
  font-size:15px;
}

.about_highcacao .list__special {
    background-color: #fff;
    padding: 1em 0 0;
}

.about_highcacao .list__special .list__special_text_half {
    margin: 0 auto 0px;
}

/*--------------------------------------------------------------
  購入おすすめ
--------------------------------------------------------------*/
.recmmend_highcacao{
  width: 100%;
  margin: 0 auto 0px;
  padding: 0px 10px 0px;
  text-align: center;
}

.tab {
  max-width: 1148px;
  margin: 20px auto 50px;
  padding:  0;
  background-color: #fff;
}

.tab-buttons {
  display: flex;
  justify-content:center;
  margin: 0px auto 0px;
  padding: 0px 0;
}

.tab-buttons button {
  padding: 10px 20px;
  background: #d6ceee;
  border: none;
  border: 2px solid #d6ceee;
  cursor: pointer;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  transition: all 0.3s;
  width:50%;
  color: #000;
}

.tab-buttons button:hover {
  background: #d6ceee;
  border: 2px solid #3b1185;
}

.tab-buttons button.active {
  color: #fff;
  background: #3b1185;
  border: 2px solid #3b1185;
}

.tab-contents{
  max-width: 1148px;
  margin: 0px auto 0px;
  padding: 0px 0;
}

.tab-contents .content {
  display: none;
  max-width: 1148px;
  margin: 0px auto 0px;
  padding: 0px 0 10px;
  animation: fadeIn 0.3s ease-in-out;
  border: 10px solid #3b1185;
  background-color: #fff;
}

.tab-contents .content.active {
  display: flex;
  flex-direction: column;
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.point_01, .point_02{
  position: absolute;
  top: -12px;
  right: -10px;
  width: 30%;
}

@media screen and (max-width:767px) {

}

/*--------------------------------------------------------------
 スタッフボイス staff_voice
--------------------------------------------------------------*/
.staff_voice{
  background: url(/highcacao/img/bg_w.webp), #d2c8cd;
  padding: 0px 0px 50px;
}

.staff_voice_inner{
  max-width:980px;
  margin: 20px auto 0px;
  padding: 10px 10px 10px;
  background-color: #fff;
}

.staff_guide{
  max-width: 860px;
  margin: 10px auto 0;
  display: flex;
  justify-content: flex-start;
  align-items:flex-end;
}

.staff_guide img.staff{
  width:80px;
  padding: 10px 10px 10px 10px;
}

.staff_guide p{
  font-size: 14px;
   padding: 10px 10px 10px 0px;
}

.staff_voice_wrap{
  max-width: 980px;
  margin: 0 auto 20px;
  padding: 0 0.8rem;
}

 .block-baloon-left {
    padding: 2em;
}

 .block-baloon-left p{
  font-size: 15px;
 }


 .block-baloon-top  {
  margin-top: 2.5em;
  padding: 1.5em;
  margin-bottom: 1em;
  line-height: 1.6;
}

 .block-baloon-top p{
  font-size: 15px;
 }

.block-baloon-top:first-child {
  margin-top: 1.5em;
}

.block-baloon-top:before, .block-baloon-top:after {
  top: -1.5em;
  left: 10%;
  border-right: 10px solid transparent;
  border-bottom: solid 1.5em #222;
  border-left: 10px solid transparent;
}

.block-baloon-top:after {
  top: calc( 4px - 1.7em );
  border-bottom: solid 1.5em #fff;
}


 .staff_voice_wrap .block-baloon-left {
    margin: 0em auto;
    max-width: 100%;
  }

 .staff_voice_wrap .block-baloon-left::after {
    content: '';
    position: absolute;
    left: 10%;
    width: 20px;
    height: 20px;
    background: #FFF;
    border-right: 1px solid #b7b0b0;
    border-bottom: 1px solid #b7b0b0;
    transform: translate(-50%, 55%) rotate(225deg);
    transform-origin: center center;
    top: -21px;
}

.staff_voice_wrap .block-baloon-left::before {
    display: none;
}

@media screen and (max-width: 980px) {
  .staff_voice_inner{
  margin: 20px 15px 50px;
}
}

@media screen and (max-width: 820px) {
  .staff_guide{
  max-width: 680px;
}
}

@media screen and (max-width: 539px) {
  .staff_voice_wrap .block-baloon-left::after {
    left: 13%;
  }

    .staff_voice_wrap .block-baloon-left {
        width: 100%;
        padding: 1em;
    }

}


/*--------------------------------------------------------------
 よくある質問 faq
--------------------------------------------------------------*/


.faq{
  max-width: 980px;
  margin: 20px auto 50px;
  padding: 0px 20px 20px;
  text-align: center;
  background-color:#fff;
}

@media screen and (max-width: 980px) {
  .faq{
  margin: 20px 15px 50px;
}
}

 .pageSubTitle2 {
    font-size: 16px;
    line-height: 1.7;
    font-style: normal;
    color: #411e1b;
    text-align: left;
    margin: 0 0px 0 0;
  }

  .contentText {
    font-size: 16px;
    line-height: 1.7;
    font-style: normal;
    color: #000;
    text-align: left;
  }

  .qa {
    padding-top: 180px;
    padding-bottom: 278px;
  }

  .qa__box {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
  }

  .qa__box > dl > dt {
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    position: relative;
    border-top: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
    /*cursor: pointer;*/
  }

  .qa__box:first-child > dl > dt{
    border-top: none;
  }

  .qa__box > dl > dt .crossBar {
    width: 21px;
    height: 21px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .qa__box > dl > dt .crossBar::before {
    content: "";
    display: inline-block;
    width: 1.6px;
    height: 100%;
    background-color: #4D4D4D;
    position: absolute;
    top: 0;
    left: 50%;
    transform-origin: center center;
    transform: translateX(-50%) rotate(0deg);
    transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .qa__box > dl > dt .crossBar::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: 1.6px;
    background-color: #4D4D4D;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .qa__box > dl > dt > span {
    font-size: 28px;
    line-height: 1.75;
    font-weight: 500;
    font-style: normal;
    color: #d5af4a;
    margin-right: 10px;
  }

  .qa__box > dl > dd {
    margin: 0;
    background-color: #fff;
    display: flex;
    margin: 15px 0 25px;
    padding: 0px 10px;
    /*max-height: 0;
    overflow: hidden;*/
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .qa__box > dl > dd > span {
    font-size: 28px;
    font-weight: 500;
    font-style: normal;
    color: #d5af4a;
    margin-right: 10px;
  }

  /* アニメーション後のスタイル */
  .qa__box > dl > dd.is-open {
    max-height: 300px;
    padding: 30px 10px;
  }
  /* ＋ボタンのアニメーション */
  .qa__box > dl > dt.is-open .crossBar::before {
    transform: translateX(-50%) rotate(90deg);
  }

/*--------------------------------------------------------------
 「高カカオチョコレート」商品一覧 #3b1185
--------------------------------------------------------------*/
.btn_area_highccao{
  max-width: 360px;
  margin: 0px auto 0px;
  padding: 0px 10px 50px;
  text-align: center;
}

.btn_area_highccao .btn_arrow_light {
    background: #3b1185;
}


