@charset "UTF-8";
/* -----------------------------------
Flexbox設定
----------------------------------- */
.footer-container,
.header-container {
	width: 100%;
	padding-right: 10px;
	padding-left: 10px;
	margin-right: auto;
	margin-left: auto;
}

.container {
	width: 100%;
	padding-right: 0;
	padding-left: 0;
	margin-right: auto;
	margin-left: auto;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex .col-2,
.flex .col-3 {
	width: 100%;
	margin-bottom: 20px;
}

.wrap {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}

.flex-reverse {
	flex-direction: row-reverse;
}

.flex-center {
	justify-content: center;
}

.center {
	text-align: center;
}

@media (min-width: 768px) {
	.footer-container,
	.header-container {
		padding-right: 15px;
		padding-left: 15px;
	}
	.flex {
		justify-content: space-between;
	}
	.flex .col-2 {
		width: calc(50% - 15px);
	}
	.flex .col-3 {
		width: calc(33.33% - 15px);
	}
}

@media (min-width: 768px) and (max-width: 1029px) {
	.container,
	.footer-container,
	.header-container {
		max-width: 720px;
	}
}

@media (min-width: 1030px) {
	.container,
	.footer-container,
	.header-container {
		max-width: 960px;
	}
}

@media (min-width: 1240px) {
	.container,
	.footer-container,
	.header-container {
		max-width: 1000px;
	}
}

/* -----------------------------------
リセットCSS
基本的には触らないでください
----------------------------------- */
input[type="submit"] {
	-webkit-appearance: none;
	border-radius: 0;
}

html {
	box-sizing: border-box;
	-ms-overflow-style: scrollbar;
}

*,
*::after,
*::before {
	box-sizing: border-box;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
}

ol,
ul {
	list-style: none;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
img,
p {
	margin: 0;
	padding: 0;
}

hr {
	border: none;
	height: 1px;
	background: #f1eded;
	margin: 2em auto;
	width: 100%;
}

a,
input,
textarea,
img {
	-webkit-transition: .3s;
	transition: .3s;
}

h1,
h2,
h3,
h4,
h5,
p {
	line-height: 1.6em;
}

/* -----------------------------------
ベース設定
----------------------------------- */
* {
	box-sizing: border-box;
}

body {
	background-color: #e9e9e9;
	color: #000000;
	font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
	padding: 0;
	margin: 0;
}

/* つけるとスマホでしか表示されなくなるクラス */
.only-phone {
	display: inline-block;
}

@media (min-width: 481px) {
	.only-phone {
		display: none;
	}
}

/* つけるとスマホで見たときだけ表示されなくなるクラス */
.except-phone {
	display: none;
}

@media (min-width: 481px) {
	.except-phone {
		display: inline-block;
	}
}

/* つけるとタブレットでしか表示されなくなるクラス */
.only-pad {
	display: none;
}

@media (min-width: 481px) {
	.only-pad {
		display: inline-block;
	}
}

@media (min-width: 768px) {
	.only-pad {
		display: none;
	}
}

/* つけるとPCでしか表示されなくなるクラス */
.only-pc {
	display: none;
}

@media (min-width: 768px) {
	.only-pc {
		display: inline-block;
	}
}

/* つけるとPCで見たときだけ表示されなくなるクラス */
.except-pc {
	display: inline-block;
}

@media (min-width: 768px) {
	.except-pc {
		display: none;
	}
}

.footer-container,
.header-container {
	padding: 0 15px;
}

@media (min-width: 768px) {
	.footer-container,
	.header-container {
		padding: 0 20px;
	}
}

/* -----------------------------------
見出し、テキストなど
----------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
	line-height: 1.8em;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center,
ol.center,
p.center,
ul.center {
	text-align: center;
}

p {
	margin: 0 auto 1em;
	font-size: 15px;
}

ol,
ul {
	font-size: 15px;
}

code {
	font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
	background: #f5f5f5;
	font-size: 12px;
	border: 1px solid #cacaca;
	padding: 1px 5px;
	border-radius: 3px;
	margin: 0 5px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.6em auto 0.1em;
}

h1 {
	text-align: center;
	margin: 40px auto;
}

h2 {
	font-size: 20px;
}

@media (min-width: 768px) {
	h2 {
		font-size: 26px;
	}
}

h3 {
	font-size: 18px;
}

h3:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	width: 10px;
	background: #000000;
	margin: auto;
	top: 0.8em;
	left: 3px;
}

@media (min-width: 768px) {
	h3 {
		font-size: 21px;
	}
}

h4 {
	font-size: 17px;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 15px;
}

.marker {
	background: -webkit-linear-gradient(transparent 30%, #ffff00 30%);
	background: -o-linear-gradient(transparent 30%, #ffff00 30%);
	background: linear-gradient(transparent 30%, #ffff00 30%);
	font-weight: bold;
}

/* -----------------------------------
リンク関係
----------------------------------- */

a:link {
	color: #007fff;
	text-decoration: underline;
}

a:visited {
	color: #cd212a;
	text-decoration: underline;
}

a img {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

a:hover {
  /* ※005 - リンクホバー色↓ */
	color: #000000;
}

a:hover img {
	opacity: 0.6;
}

a.btn {
	display: block;
  /* ※006 - リンクボタン色↓ */
	background: #000000;
	color: #ffffff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	min-width: 150px;
	text-align: center;
	padding: 10px 30px;
	margin-top: 40px;
	margin-bottom: 40px;
}

a.btn.center {
	margin: 40px auto;
}

a.btn:hover {
  /* ※006 - リンクボタンホバー色↓ */
	background: #cd212a;
}

/* -----------------------------------
ヘッダー
----------------------------------- */
header {
	position: relative;
	overflow: hidden;
	padding: 0;
	height: 60px;
}

@media (min-width: 1030px) {
	header {
		height: 80px;
	}
}

nav#globalnav {
  /* ※007 - メニューバーをスクロール追従したくない場合は、position: relative; に変更↓ */
	position: fixed;
	z-index: 20;
	top: 0;
	width: 100%;
	height: 60px;
}

@media (min-width: 1030px) {
	nav#globalnav {
		height: 80px;
		top: 0;
	}
}

nav#globalnav .header-container {
	background: #ffffff;
	border-bottom: 1px solid #e9e9e9;
	position: relative;
}

@media (min-width: 1030px) {
	nav#globalnav .header-container {
		display: flex;
		justify-content: space-between;
	}
}

nav#globalnav h1 {
	margin: 0;
	line-height: 60px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

@media (min-width: 1030px) {
	nav#globalnav h1 {
		line-height: 80px;
	}
}

nav#globalnav h1 a {
  /* ※008 - ヘッダーバーサイトタイトル色↓ */
	color: #000000;
	display: block;
	padding: 0;
	font-size: 18px;
}

nav#globalnav h1 a:hover {
  /* ※008 - ヘッダーバーサイトタイトルホバー色↓ */
	color: #cd212a;
}

nav#globalnav h1 a img {
	height: 40px;
	width: auto;
	object-fit: contain;
	position: relative;
	top: 10px;
}

nav#globalnav ul {
	display: flex;
	flex-direction: column;
}

nav#globalnav ul li a {
	display: block;
	text-decoration: none;
	color: #000000;
}

nav#globalnav ul li a:hover {
	color: #cd212a;
}

/* -----------------------------------
上からスライドインしてくるタイプのハンバーガーメニュー
----------------------------------- */
nav#globalnav .header-container {
	overflow-y: hidden;
	max-height: 100vh;
}

@media (min-width: 1030px) {
	nav#globalnav .header-container {
		overflow-y: inherit;
	}
}

nav#globalnav ul#navmenu {
	list-style: none;
	position: relative;
	background: #ffffff;
	width: 100%;
	height: auto;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	transition: 0.3s;
}

@media (min-width: 1030px) {
	nav#globalnav ul#navmenu {
		position: absolute;
		background: transparent;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		max-width: 80%;
		height: 80px;
		right: 90px;
		padding: 0;
		overflow-y: hidden;
		box-shadow: none;
		transition: none;
		flex-direction: row;
		scrollbar-width: none;
	}
	
	nav#globalnav ul#navmenu::-webkit-scrollbar {
		display: none;
	}
}

nav#globalnav ul#navmenu li {
	margin: 0;
	min-height: 0;
	height: 0;
}

@media (min-width: 1030px) {
	nav#globalnav ul#navmenu li:hover ul {
		opacity: 1;
		z-index: 10;
	}

	nav#globalnav ul#navmenu li:hover ul li {
		height: 46px;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}

	nav#globalnav ul#navmenu li:hover ul li a {
		height: 46px;
		line-height: 46px;
		overflow: visible;
		-webkit-transition: 0.5s;
		transition: 0.5s;
	}
}

nav#globalnav ul#navmenu li a {
	height: 0;
	opacity: 0;
	line-height: 18px;
}

@media (min-width: 1030px) {
	nav#globalnav ul#navmenu li a {
		opacity: 1;
		display: flex;
		text-align: center;
		justify-content: center;
		align-items: center;
		font-weight: bold;
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		padding: 0 10px;
		margin: auto;
		font-size: 15px;
		height: 80px;
		line-height: 18px;
	}
}

nav#globalnav ul#navmenu li a br {
	display: none;
}

@media (min-width:1030px) {
	nav#globalnav ul#navmenu li a br {
		display: inline;
	}
}

nav#globalnav ul#navmenu.checked li {
	min-height: 46px;
	height: auto;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

nav#globalnav ul#navmenu.checked li a {
	opacity: 1;
	height: 46px;
	line-height: 46px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

nav#globalnav ul#navmenu ul {
	list-style: none;
	margin-left: 20px;
}

@media (min-width: 1030px) {
	nav#globalnav ul#navmenu ul {
		margin-left: auto;
		opacity: 0;
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		height: auto;
		background: #ffffff;
		position: fixed;
	}

	nav#globalnav ul#navmenu ul li {
		overflow: hidden;
		position: relative;
		height: 0;
	}

	nav#globalnav ul#navmenu ul li a {
		min-width: 150px;
		padding: 0 20px;
		width: 100%;
		text-align: left;
		height: 0;
		line-height: 0;
		margin: 0;
		font-size: 16px;
	}
}

button#menubtn {
	color: #000000;
	margin: 0;
	cursor: pointer;
	background: transparent;
	border: 0;
	display: block;
	width: 45px;
	height: 45px;
	text-align: center;
	font-size: 24px;
	position: absolute;
	top: 10px;
	right: 20px;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
	z-index: 99999;
}

@media (min-width: 1030px) {
	button#menubtn {
		display: none;
	}
}

button#menubtn:hover {
	cursor: pointer;
}

button#menubtn#inmenu {
	color: #ffffff;
}

button#menubtn#inmenu-back {
	opacity: 0;
	width: 100vw;
	height: 100vh;
	top: 0;
	right: 0;
	z-index: -1;
}

/* -----------------------------------
メイン部分
----------------------------------- */
main {
	margin: 0 auto;
	overflow: hidden;
}

section {
	border-top: 1px solid #e9e9e9;
	padding: 10px 16px;
}

section#main-visual {
	padding: 0;
}

@media (min-width: 768px) {
	section {
		padding: 20px 35px;
	}
}

section.indent p {
  /* ※010 - 小説展示用ブロックsection class="indent"中のp段落の行間と字下げ↓ */
	line-height: 2.0em;
	text-indent: 1em;
}

.container {
	background: #ffffff;
}

.two-column aside {
	border-top: 1px solid #e9e9e9;
	padding: 10px 16px;
}

@media (min-width: 768px) {
	.two-column aside {
		padding: 20px 35px;
	}
}

@media (min-width: 1030px) {
	.two-column {
		display: -webkit-box;
		display: flex;
	}

	.two-column aside {
		width: 300px;
		padding: 20px;
		border-left: 1px solid #e9e9e9;
	}

	.two-column aside h2,
	.two-column aside h3 {
		font-size: 16px;
		margin-top: 40px;
	}

	.two-column aside ol,
	.two-column aside p,
	.two-column aside ul {
		font-size: 14px;
	}

	.two-column .contents {
		width: calc(100% - 300px);
	}
}

#main-visual {
  /* ※011 - スマホから見た場合のメインビジュアル画像の高さ（デフォルトは画面いっぱい）↓ */
	height: calc(100vh - 60px);
	position: relative;
}

#main-visual:before {
  /* ※011 - スマホから見た場合のメインビジュアル画像にかぶせる下向き矢印↓
    不要であれば、 #main-visual:before { ～ } を波カッコごと削除してください */
	content: '';
	width: 15px;
	height: 15px;
	display: block;
	position: absolute;
	border-right: 2px solid white;
	border-bottom: 2px solid white;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: auto;
	right: 0;
	left: 0;
	bottom: 20px;
}

@media (min-width: 768px) {
	#main-visual {
    /* ※011 - PCから見た場合のメインビジュアル画像の高さ↓ */
		height: 400px;
	}

	#main-visual:before {
		display: none;
	}
}

#main-visual .container {
	padding: 0;
	margin: 0 auto;
	height: 100%;
}

#main-visual img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* -----------------------------------
フッター部分
----------------------------------- */
footer {
	margin: 0 auto;
	overflow: hidden;
	min-height: 50px;
}

footer p {
	margin: 15px auto;
	font-size: 12px;
}

.footer-container {
  /* ※012 - フッターエリアの背景色と文字色↓ */
	background: #000000;
	color: #e9e9e9;
	overflow: hidden;
	min-height: 50px;
}

/* -----------------------------------
飾りボックス
----------------------------------- */
.box1 {
	border: 1px solid #e9e9e9;
	padding: 10px;
	margin: 40px auto;
	border-radius: 3px;
}

@media (min-width: 1030px) {
	.box1 {
		padding: 15px;
	}
}

.box1 > *:first-child {
	margin-top: 0;
}

.box1 > *:last-child {
	margin-bottom: 0;
}

.box2 {
	border: 1px solid transparent;
	padding: 10px;
	margin: 40px auto;
	background: #f5f5f5;
}

@media (min-width: 1030px) {
	.box2 {
		padding: 15px;
	}
}

.box2 > *:first-child {
	margin-top: 0;
}

.box2 > *:last-child {
	margin-bottom: 0;
}

/* -----------------------------------
エンターページ
----------------------------------- */
section#enter {
	border-top: none;
}

.container.enter {
	margin: 60px auto;
}

.container.enter section {
	margin: 0;
}

/* -----------------------------------
区切り線
----------------------------------- */
hr {
	width: 100px;
	height: 1px;
	background: #b5b5b5;
}

img.line {
	display: block;
	width: 95%;
	max-width: 700px;
	height: auto;
	margin: 40px auto;
}

/* -----------------------------------
イラスト展示用
ちょっと複雑なので触らないほうがいいかも
----------------------------------- */
.container ul.illust {
	list-style: none;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.container ul.illust li {
	width: 49%;
	position: relative;
	margin: 0 0 2%;
}

.container ul.illust li:nth-of-type(2n) {
	margin-left: 2%;
}

@media (min-width: 481px) {
	.container ul.illust li {
		width: 32%;
	}

	.container ul.illust li:nth-of-type(2n) {
		margin-left: 0;
	}

	.container ul.illust li:not(:nth-of-type(3n)) {
		margin-right: 2%;
	}
}

@media (min-width: 768px) {
	.container ul.illust li {
		width: 19%;
		margin: 0 0 calc(5% / 4);
	}

	.container ul.illust li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}

	.container ul.illust li:not(:nth-of-type(5n)) {
		margin-right: calc(5% / 4);
	}
}

.container ul.illust li:before {
	content: "";
	display: block;
	padding-top: 100%;
}

.container ul.illust li a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.container ul.illust li a img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.container ul.illust.sum-sm li {
	width: 32%;
}

.container ul.illust.sum-sm li:nth-of-type(2n) {
	margin-left: 0%;
}

.container ul.illust.sum-sm li:not(:nth-of-type(3n)) {
	margin-right: 2%;
}

@media (min-width: 481px) {
	.container ul.illust.sum-sm li {
		width: 24%;
		margin: 0 0 calc(4% / 3);
	}

	.container ul.illust.sum-sm li:not(:nth-of-type(3n)) {
		margin-right: 0;
	}

	.container ul.illust.sum-sm li:not(:nth-of-type(4n)) {
		margin-right: calc(4% / 3);
	}
}

@media (min-width: 768px) {
	.container ul.illust.sum-sm li {
		width: calc((100% / 8) - 0.5%);
		margin: 0 0 calc(4% / 7);
	}

	.container ul.illust.sum-sm li:not(:nth-of-type(4n)) {
		margin-right: 0;
	}

	.container ul.illust.sum-sm li:not(:nth-of-type(8n)) {
		margin-right: calc(4% / 7);
	}
}

/* -----------------------------------
リストのデザイン
----------------------------------- */
.container ul {
	list-style: square;
}

.container ul li {
	margin-left: 30px;
	margin-bottom: 10px;
}

.container ul ul {
	margin: 5px 0 0;
}

.container ul ul li {
	margin: 0 0 5px 40px;
}

.container ol {
	counter-reset: number;
	list-style-type: none;
	padding: 0;
}

.container ol li {
	margin-left: 30px;
	margin-bottom: 10px;
	position: relative;
}

.container ol li:before {
	background: #000000;
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display: inline-block;
	color: white;
	font-weight: bold;
	font-size: 15px;
	top: 13px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left: -25px;
	text-align: center;
	height: 20px;
	width: 20px;
	text-align: center;
	line-height: 20px;
}

dl {
	margin: 40px auto;
}

dl dt {
	font-weight: bold;
}

dl dd {
	border-left: 1px dotted #cccccc;
	margin-left: 20px;
	padding: 5px 0 5px 20px;
}

dl.update {
	border: 1px solid #e9e9e9;
	font-size: 13px;
	border-bottom: none;
}

dl.update dd,
dl.update dt {
	padding: 8px;
	margin: 0;
	border-left: none;
}

dl.update dd {
	padding-top: 0;
	border-bottom: 1px solid #e9e9e9;
}

@media (min-width: 481px) {
	dl.update {
		display: -webkit-box;
		display: flex;
		flex-wrap: wrap;
		max-width: 600px;
		margin: 40px auto 40px 0;
	}

	dl.update dt {
		width: 90px;
		padding: 8px;
		border-bottom: 1px solid #e9e9e9;
	}

	dl.update dd {
		width: calc(100% - 90px);
		padding: 8px;
		border-bottom: 1px solid #e9e9e9;
	}
}

/* -----------------------------------
名前変換フォーム
----------------------------------- */
.namechange_wrap {
	width: 400px;
	max-width: 100%;
	margin: 40px auto 40px 0;
	background: #e9e9e9;
	padding: 20px;
}

.namechange_wrap dl {
	margin: 0;
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
}

.namechange_wrap dl dd {
	border: none;
	margin: 0 0 5px 15px;
	padding: 0;
}

.namechange_wrap input[type=text] {
	border: none;
	background: transparent;
	font-family: "メイリオ", Meiryo, "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
	border-bottom: 1px solid #ccc;
	padding: 3px 7px;
}

.namechange_wrap input[type=text]:focus {
	outline: none;
	background: #ffffff;
}

.namechange_wrap input[type=button] {
	cursor: pointer;
	border: none;
	background: #000000;
	color: #ffffff;
	padding: 5px 15px;
}

.namechange_wrap input[type=button].namechange_ng {
	background: #cccccc;
	color: #989898;
}

.namechange_wrap p {
	margin: 10px auto 0;
}

/* -----------------------------------
ページネーション
----------------------------------- */
ul.pagination {
	list-style: none;
	display: -webkit-box;
	display: flex;
	margin: 60px auto 40px;
	-webkit-box-pack: center;
	justify-content: center;
}

ul.pagination li {
	margin: 0;
}

ul.pagination li a {
	display: block;
	background: #000000;
	color: #ffffff;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	margin-left: 1px;
}

ul.pagination li a:hover {
	background: #8dc21f;
}

ul.pagination li a.active {
	background: #8dc21f;
}

/* -----------------------------------
SNSリンク
----------------------------------- */
ul.sns {
	list-style: none;
	display: -webkit-box;
	display: flex;
}

ul.sns li {
	margin: 0;
}

ul.sns li a {
	display: block;
	margin-right: 15px;
}

ul.sns li a img {
	width: 30px;
	height: 30px;
}

/* -----------------------------------
テーブル
----------------------------------- */
table {
	border-collapse: collapse;
	min-width: 640px;
}

table td,
table th {
	padding: 5px 14px;
}

table tr {
	border-top: 1px solid #e9e9e9;
	border-bottom: 1px solid #e9e9e9;
}

table th {
	background: #f5f5f5;
}

.table_wrapper {
	max-width: 100%;
	overflow-x: auto;
	margin: 40px auto 40px 0;
}

/* -----------------------------------
上に戻るボタン
----------------------------------- */
a#totop {
	display: block;
	width: 50px;
	height: 50px;
	position: fixed;
	z-index: 20;
	background: #000000;
	right: 0;
	bottom: 0;
	border-left: 1px solid #ffffff45;
}

a#totop.totop-hidden {
	opacity: 0;
	z-index: -1;
}

a#totop:before {
	content: '';
	display: block;
	position: absolute;
	width: 15px;
	height: 15px;
	border-top: 2px solid #ffffff;
	border-left: 2px solid #ffffff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: auto;
	top: 24px;
	right: 0;
	left: 0;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

a#totop:hover:before {
	top: 20px;
}

/* -----------------------------------
何かCSSを書き足す場合は、ここから下に書き足すと
あとからもとに戻したくなった場合に便利です。
----------------------------------- */
div.smallbox {
	max-width: 750px;	
}

#lang {
	display: block;
	position: absolute;
	right: 75px;
	top: 17px;
}

@media (min-width:1030px){
	#lang {
		top: 23px;
		right: 25px;
	}
}

.selectbox-3 {
	display: inline-flex;
	padding: 0;
	align-items: center;
	position: relative;
}

.selectbox-3::after {
	position: absolute;
	right: 10px;
	width: 10px;
	height: 7px;
	background-color: #535353;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: '';
	pointer-events: none;
}

.selectbox-3 select {
	appearance: none;
	min-width: 20px;
	height: 2em;
	padding: .4em calc(.8em + 10px) .4em .8em;
	border: 1px solid #d0d0d0;
	border-radius: 15px;
	background-color: #fff;
	color: #333333;
	font-size: 1em;
	cursor: pointer;
}