@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*** ▼コピーボタン *******/
.copybox {
	border:2px solid #04384C;
	width:100%;
	margin:10px auto;
	padding:10px;
	border-radius:5px;
	text-align:center;
	background:#f5f5f5;
}
.copybox-title {
	width:90%;
	margin:0 auto;
	margin-bottom:10px;
	background:#04384C;
	border-radius:5px;
	padding:5px 0;
	color:#fff;
	text-align:center;
	font-weight:bold;
}
.copy-box {
	font-weight:900;
	display:inline-block;
	vertical-align:top;
}
.copy-box div:first-child {margin-top:2px;font-weight:900;font-size:1.3em;}

.btn-copy {
	display:inline-block;
    margin: 0 0 0 8px;
	width: 100px;
    padding: 0.3em 1em;
    text-decoration: none;
    background: #F74A4A; /* ボタン背景色 */
    color:#fff;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 0px 5px rgba(0,0,0,0.2);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing:1px;
    line-height: 1.8;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn-copy:hover {
    background:#8df542;
}
.btn-copy:before {
    left: -100%;
    position: absolute;
    height: 100%;
    width: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
	content: "Copy OK!";
}
.btn-copy .btn-copy-text {
    display: inline-block;
    -webkit-transition: all 0.3s;
    -webkit-backface-visibility: hidden;
    -moz-transition: all 0.3s;
}
.btn-copy-active{
    background:#8df542;/* ボタンクリック時 背景色 */
}
.btn-copy-active:before {
    left: 0;
}
.btn-copy-active .btn-copy-text {
    -webkit-transform: translateX(250%);
    -moz-transform: translateX(250%);
    -ms-transform: translateX(250%);
    transform: translateX(250%);
}

.btn-copy-long {display:block;margin:8px auto 5px;}

/*** ▲コピーボタン *******/