@charset "UTF-8";
/*
 Theme Name: SANGO Child
 Theme URI: https://saruwakakun.design
 Author: SARUWAKA
 Author URI: https://saruwakakun.com
 Template: sango-theme
 Version: 4.0
*/
/*こちらはSANGOの子テーマ用CSSです。以下にCSSを記入していきましょう。*/
.fix-btn-wrapper {
	display: none;
}
.txt-link {
    color: #093bc9;
	cursor: pointer;
}
.txt-link:hover {
    text-decoration: underline;
}
/*追従ボタン*/
@media screen and (max-width: 480px){
.fix-btn-wrapper {
	display: block;
    position: fixed;
    z-index: 9999;
    background: #e91e61;
    width: calc(100% - 32px);
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    padding: 20px 0;
    left: 16px;
    bottom: 10px;
    box-shadow: 1px 1px 5px #aaa;
    animation: move 4s infinite;
}
@keyframes move {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(4deg, 4deg);
  }
  10% {
    transform: skew(-3deg, -3deg);
  }
  15% {
    transform: skew(2deg, 2deg);
  }
  20% {
    transform: skew(-1deg, -1deg);
  }
  25% {
    transform: skew(0.6deg, 0.6deg);
  }
  30% {
    transform: skew(-0.4deg, -0.4deg);
  }
  35% {
    transform: skew(0.2deg, 0.2deg);
  }
}
	.totop {
    display: none;
    width: 54px;
    height: 54px;
    text-align: center;
    position: fixed;
    bottom: 90px;
    right: 10px;
    border-radius: 50%;
    opacity: .6;
    transition: none;
    z-index: 10;
}
	}