@charset "UTF-8";
/* CSS Document */
/* 基本-モバイルファースト ======================================================================================================== */

.top_copy{
display: inline-block;
font-size: 4.5vw;
font-weight: bold;
letter-spacing: .25em;
position: relative;
margin-bottom: 20px;
}
.top_copy::before{
content: "";
display: block;
width: 2px;
height: 3em;
background-color: #111;
position: absolute;
top: 0;
bottom: 0;
left: -1em;
-webkit-transform: rotate(-10deg);
transform: rotate(-10deg);
margin: auto 0;
}
.top_copy::after{
content: "";
display: block;
width: 2px;
height: 3em;
background-color: #111;
position: absolute;
top: 0;
bottom: 0;
right: -1em;
-webkit-transform: rotate(10deg);
transform: rotate(10deg);
margin: auto 0;
}




/* PCのみ======================================================================================================== */
@media print and (min-width: 751px), screen and (min-width: 751px){

.top_copy{
font-size: 30px;
margin-bottom: 60px;
}
.top_copy::before,
.top_copy::after{
width: 3px;
height: 2em;
}









}