@charset "utf-8";

body {
	font-family: "M PLUS 2", sans-serif !important;
	font-weight: 400;
	font-style: normal;
}

h1,
h2,
h3 {
	font-family: "M PLUS 2", sans-serif !important;
	font-weight: 700;
	font-style: normal;
}

h4,
h5,
h6 {
	font-family: "M PLUS 2", sans-serif !important;
	font-weight: 500;
	font-style: normal;
}

/* 見出し: Modal */
.h_modal {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 26px;
	text-align: center;
}

.h_modal::before,
.h_modal::after {
	content: '';
	width: 30px;
	height: 3px;
	background-color: #448EF7;
}

.h_modal::before {
	margin-right: 30px;
}

.h_modal::after {
	margin-left: 30px;
}

/* モーダル内画像がはみ出すので */
.modal_img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	display: block;
}

/* input(number)のスピンボタン非表示。使う人いないだろ。これをデフォ有効にした人に理由を小一時間問い詰めたい */
/* Chrome,Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type="number"] {
	-moz-appearance: textfield;
}

/* 吹き出し */
.balloon-left {
	display: flex;
	margin: 30px;
	align-items: start;
	gap: 0 22px;
}

.balloon-left img {
	max-width: 70px;
	height: 100%;
	border: 3px solid #f2f2f2;
	border-radius: 50%;
}

.balloon-left .icon-name {
	position: absolute;
	width: 70px;
	margin-top: 70px;
	text-align: center;
	font-size: 12px;
}

.balloon-left p {
	position: relative;
	margin: 3px 0 0;
	padding: .8em 1em;
	border-radius: 5px;
	background-color: #f2f2f2;
}

.balloon-left p::before {
	position: absolute;
	left: -15px;
	width: 15px;
	height: 30px;
	background-color: #f2f2f2;
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	content: '';
}

.balloon-right {
	display: flex;
	justify-content: right;
	margin: 30px;
	align-items: start;
	gap: 0 22px;
}

.balloon-right img {
	max-width: 70px;
	height: 100%;
	border: 3px solid #f2f2f2;
	border-radius: 50%;
}

.balloon-right .icon-name {
	position: absolute;
	width: 70px;
	margin-top: 70px;
	text-align: center;
	font-size: 12px;
}

.balloon-right p {
	position: relative;
	margin: 3px 0 0;
	padding: .8em 1em;
	border-radius: 5px;
	background-color: #e6f3ff;
}

.balloon-right p::before {
	position: absolute;
	right: -15px;
	width: 15px;
	height: 30px;
	background-color: #e6f3ff;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	content: '';
}

/* 
いい感じ™なSNSボタン。
<a href="" class="btn bg-twitter text-left"><i class="fab fa-twitter fa-fw"></i> Twitter</a>
https://qiita.com/Shino3/items/34d7e4676dcc4ed430d8
*/

.bg-twitter {
	background-color: #55acee;
	text: #FFF;
}

.bg-mastodon {
	background-color: #2b90d9;
	text: #FFF;
}

.bg-facebook {
	background-color: #3b5998;
	text: #FFF;
}

.bg-linkedin {
	background-color: #0079ba;
	text: #FFF;
}

.bg-github {
	background-color: #333;
	text: #FFF;
}

.bg-qiita {
	background-color: #79bd28;
	text: #FFF;
}

.bg-misskey {
	background-color: #00acc1;
	text: #FFF;
}

.bg-soundcloud {
	background-color: #ff3300;
	text: #FFF;
}

.pc-header .dropdown-user-profile {
	min-width: 290px;
	max-width: none;
}
