/*-------------------------
  【style-top.css】：index.htmlでのみ適用しているCSS
-------------------------*/
@charset "utf-8";

/*背景画像の白フィルター*/
.colorfilter-base {
    background-color: white; /* カラーフィルタ効果の色を指定 */
    display: inline-block;  /* (任意：インラインブロック化したい場合) */
}
.colorfilter-image-download {
    opacity: 0.6;    /* カラーフィルタ効果の度合いを指定 */
    display: block;
}
.colorfilter-image-top {
    opacity: 0.6;    /* カラーフィルタ効果の度合いを指定 */
    display: block;
}

/*TOPキャッチコピー（「まるでノートな書き心地。」）*/
.top-text{
  position: relative;
  display: inline-block;
  color: black;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size: clamp(30px,5vw,60px);
}

.top-text_res{
    margin-top: 60px;
    color: black;
    font-family: 'Zen Kurenaido', sans-serif;
    font-size: clamp(22px,7vw,40px);
}

/*TOPふりがな（「ポットロート」）*/
.top-text2{
  color: #1CA68D;
  font-size: clamp(15px,4vw,20px);
}

.top-text2_res{
   color: #1CA68D;
   font-size: 12px;
   margin-top: 10px;
 }

/*メインビジュアル背景 */
.bk_green{
   margin: 10%;
   background-color:#E7F2EC;
   border-radius: 9999px;
}

.bk_green_res{
    margin-top: 20px;
    background-color:#E7F2EC;
    border-radius: 9999px;
}

/* 紹介部テキスト */
.column1{
  margin-left:50px;
  letter-spacing:1px;
}

/* 紹介部テキスト（詳細） */
.text1{
  margin-top: 50px;
  font-size: clamp(15px,5vw,20px);
  word-break: auto-phrase;
}

/*ダウンロード部分　*/
.download{
   color: #1CA68D;
   font-size: clamp(30px,5vw,40px);
   font-weight : bold;
}

.download-text{
    font-size: clamp(20px,3vw,30px);
    font-weight: bold;
}

/* ダウンロード部分のアイコン　*/
.icon{
    max-width : 180px;
    border-radius: 20%;
}

/*吹き出し*/
.balloon{
    position: relative;
    display: inline-block;
    margin-top: 40px;
    padding: 16px;
    background-color: #E7F2EC;
    color:#1CA68D;
    font-weight: bold;
    text-align: center;
}

.balloon:before{
    content: "";
    position: absolute;
    border: 12px solid transparent;
    border-top: 12px solid #E7F2EC;
    top: 100%;
    left: 50%;
}
/* 使い方カード */
.howtoCard{
    position: relative;
}

.howtoCard a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*有料アイテム アイテムカード*/

.item_header_footer{
    text-align: center;
    font-weight: bold;
}

/*NEWS 項目ごとの装飾*/
.news_topic{
    border-bottom: 1px solid gray;
    padding: 15px;
}

.date{
    min-width:150px;
}

.title{
    font-weight: bold;
}

/*NEWS 各見出しホバー時のCSS*/
.news_topic:hover .arrow{
    font-weight: bold;
    color: #1CA68D;
    animation: anim 1s forwards;
}

@keyframes anim {
  0% {
  transform: translateX(0px);
  }

  100% {
  transform: translateX(30px);
  }
}

/*抜粋QA-緑ライン*/
.question_green{
  background: #E7F2EC;
  padding: 10px;
}

/*抜粋QA-白ライン*/
.question_white{
  padding: 10px;
}

/* サイトトップ文字が右から出現　*/
.fadeRight{
    animation-name: fadeRightAnime;
    animation-delay: 0.5s;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime{
    from{
      opacity: 0;
      transform: translateX(100px);
    }
    to{
      opacity: 1;
      transform: translateX(0);
    }
}

/* 画像が左から出現 */
.fadeLeftTrigger{
    opacity: 0; /*初期透過*/
    transform: translate(-100px,0);
    transition: all 1s;
}

.fadeLeftTrigger.active{
    opacity: 1;
    transform: translate(0,0);
}

/* 画像が右から出現 */
.fadeRightTrigger{
    opacity: 0; /*初期透過*/
    transform: translate(50px,0);
    transition: all 1s;
}

.fadeRightTrigger.active{
    opacity: 1;
    transform: translate(0,0);
}

/* 画像が下から出現 */
.fadeInTrigger{
    opacity: 0; /*初期透過*/
    transform: translate(0,100px);
    transition: all 1s;
}

.fadeInTrigger.active{
    opacity: 1;
    transform: translate(0,0);
}

/* 画像がズームイン */
.zoomInTrigger{
    opacity: 0; /*初期透過*/
    transform: scale(0.6);
    transition: all 0.5s;
}

.zoomInTrigger.active{
    opacity: 1;
    transform: scale(1);
}

/* ボタン装飾（楕円） */
.uk-button-default{
    border-radius: 500px;
    color: black;
    border: 1px solid black;
    font-family: 'メイリオ', Meiryo,'ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
    font-size: 15px;
}
.uk-button-default:hover{
    color: white;
    border: 1px solid rgb(28, 166, 141);
    background-color:  rgb(28, 166, 141);
    font-size: 15px;
}

/* Youtube表示エリア（mobile) */
.youtube_res{
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube_res iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ポップアップ背景*/
.overlay {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 1;
}

/* ポップアップ */
.popup {
  width: 40%;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #FFEFEB;
  border-radius: 20px;
  font-size: 18px;
}

.popup_res {
  width: 80%;
  padding: 20px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #FFEFEB;
  border-radius: 20px;
  font-size: 14px;
}
