﻿@charset "utf-8";
/* ---------------------------------------------------------------- google button ---- */
.gsi-material-button {
	-webkit-appearance: none;
	background-color: #fff;
	border: 1px solid #747775;
	border-radius: 4px;
	box-sizing: border-box;
	color: #1f1f1f;
	cursor: pointer;
	font-family: 'Roboto', arial, sans-serif;
	font-size: 14px;
	height: 40px;
	outline: none;
	overflow: hidden;
	padding: 0 12px;
	position: relative;
	text-align: center;
	transition: background-color .218s, border-color .218s, box-shadow .218s;
	vertical-align: middle;
	white-space: nowrap;
	max-width: 400px;
}
.gsi-material-button .gsi-material-button-content-wrapper {
align-items: center;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
height: 100%;
justify-content: center;
width: 100%;
}
.gsi-material-button .gsi-material-button-icon {
height: 20px;
margin-right: 10px;
min-width: 20px;
width: 20px;
}
.gsi-material-button .gsi-material-button-contents {
font-family: 'Roboto', arial, sans-serif;
font-weight: 500;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
}
.gsi-material-button .gsi-material-button-state {
transition: opacity .218s;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
}
.gsi-material-button:not(:disabled):hover {
box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}
.gsi-material-button:not(:disabled):hover .gsi-material-button-state {
	background-color: #303030;
	opacity: 8%;
}
.gsi-material-button:not(:disabled):active .gsi-material-button-state,
.gsi-material-button:not(:disabled):focus .gsi-material-button-state {
background-color: #303030;
opacity: 12%;
}
.gsi-material-button:disabled {
cursor: default;
background-color: #ffffff61;
border-color: #1f1f1f1f;
}
.gsi-material-button:disabled .gsi-material-button-contents,
.gsi-material-button:disabled .gsi-material-button-icon {
	opacity: 38%;
}
/* ---------------------------------------------------------------- line ---- */
.heading {
	align-items: center;
	display: flex;
}
.heading::before,
.heading::after {
	background-color: #4cb6cf;
	content: "";
	flex-grow: 1;
	height: 1px;
}
.heading::before {
	margin-right: 15px;
}
.heading::after {
	margin-left: 15px;
}
