/* カスタム CSS をここに入力してください */

/* Enter Your Custom CSS Here */



/* ---------------------------------------------------------------------------------------
	1. Midashi line-blue
--------------------------------------------------------------------------------------- */

.line-blue {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #3498db;
    font-size: 1.5em;
}
.line-blue:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}


/* ---------------------------------------------------------------------------------------
	2. Midashi line-dot
--------------------------------------------------------------------------------------- */

.line-dot {
	padding: .5em .75em;
	background: #f4f4f4;
	border-top: 1px dashed #ccc;
	border-bottom: 1px dashed #ccc;
	box-shadow: 0 7px 10px -5px rgba(0, 0, 0, .1) inset;
}

/* ---------------------------------------------------------------------------------------
	3. Midashi line-green
--------------------------------------------------------------------------------------- */

.line-green {
	position: relative;
	padding: .25em 0 .5em .75em;
	border-left: 6px solid #006600;
    font-size: 1.5em;
}
.line-green:after {
	position: absolute;
	left: 0;
	bottom: 0;
	content: '';
	width: 100%;
	height: 0;
	border-bottom: 1px solid #ccc;
}

/* ---------------------------------------------------------------------------------------
	4. Midashi-ribbon
--------------------------------------------------------------------------------------- */
ribbon{
    position: relative;
    display: inline-block;
    height: 50px;
    line-height: 50px;
    padding: 0 1rem;
    background-color: #f1a4aa;
    color: #353535;
    font-size: 26px;
    font-weight: bold;
    text-align: center;
}

ribbon::before,
ribbon::after {
    position: absolute;
    top: 0;
    width: 0px;
    height: 0px;
    border-color: #f1a4aa transparent;
    border-style: solid;
    content: '';
}

ribbon::before {
    left: -15px;
    border-width: 25px 0px 25px 15px;
}

ribbon::after {
    right: -15px;
    border-width: 25px 15px 25px 0px;
}

/* ---------------------------------------------------------------------------------------
	5. hr-shasen
--------------------------------------------------------------------------------------- */
shasen  {
  margin: 4em;
  height: 12px;
  background: linear-gradient(-70deg,transparent 35%,#888 45%, #888 55%,transparent 65%);
  background-size: 8px 12px;
  border: none;
}

/* ---------------------------------------------------------------------------------------
	Z01. Waku-kakomi
--------------------------------------------------------------------------------------- */
.waku01 {
    padding:20px;
    border:solid 2px #000000;
    border-radius:10px;
    background-color:#fafafa;
    margin-top:10px;
    margin-bottom:30px;
}


/* ---------------------------------------------------------------------------------------
	Other01. Site-logo size for InternetExproler
--------------------------------------------------------------------------------------- */
.site-logo {
  max-width:97%;
}


/* ---------------------------------------------------------------------------------------
	A03. Mouse On -alpha
--------------------------------------------------------------------------------------- */
b:hover img {
	opacity: 0.3;
	filter: alpha(opacity=60);
}


/* ---------------------------------------------------------------------------------------
	Y03. button
--------------------------------------------------------------------------------------- */
.btn {
    padding: 15px 70px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none !important;
    font-size: 20px;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    border-radius: 5px;
}
.btn01 {
    background-color: #3169d1;
    color: #fff !important;
}
.btn01:hover {
    background-color: #998bfa;
}


