@charset utf-8;

/* categoly.css*/





/* --------------------------------------------- */
/* 画面横のCTAボタン */
/* --------------------------------------------- */

.cta-btn_item {
  position: fixed;
  right: 0;
  bottom: -40%;
  transform: translateY(-20%); /* 上記に対して必要な記述 */
  z-index: 20;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /*opacity:0;
    visibility: hidden;*/
    width: 44px;
}



.cta-btn_item a{
  place-items: center;
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 100%;
  font-weight: bold;
  font-family: monospace;
  width: 70%;
  line-height: 1.2;
  text-align: center;
  justify-content: center;
  font-feature-settings: "palt";
  vertical-align: middle;
  padding: 12px 2vw 12px 0.3vw;
  border-radius: 5px;
  letter-spacing: 3px;
transition: all 0.5s;
}
@media (max-width: 1024.99px){
.cta-btn_item a{
  padding: 12px 3vw 12px 0.5vw;
  width: 70%;
}}
@media (max-width: 767.99px){
.cta-btn_item a{
	  font-size: 110%;
    padding: 12px 20px 12px 2px;
    width: 80%;
}}
@media (max-width: 375.99px){
.cta-btn_item a{
        padding: 12px 15px 12px 2px;
    font-size: 80%;
}}


.cta-btn_item a:hover,
.cta-btn_item a:active{
  color:#ffff00; 
  background: #80c241;
  border-top: 1px solid #80c241;
  border-left: 1px solid #80c241;
  border-bottom: 1px solid #80c241;
  opacity: 1;
  visibility: visible;

}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 12px 12px 14px;
  border-radius: 10px 0 0 10px;
  border-top: 1px solid #7d991c;
  border-left: 1px solid #7d991c;
  border-bottom: 1px solid #7d991c;
  border-right: none;
  background-color: #7d991c;
  /* 縦書き関連のスタイル */
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.3em;
  line-height: 1.2;
  transition:.6s;
}

