@charset "utf-8";

sup {
	font-size: 75%;
}

.c-numnote {
	font-size:14px;
	line-height:1.5;
	padding-top:2.5px;
	padding-bottom:2.5px;
	padding-left:3em;
	text-indent:-3em;
}

.redbox {
	padding: 30px;
	margin: 1em auto;
    color: #C93758;
    border: solid 1px #C93758;
    background: #fff;
	font-size: 20px;
	font-weight: bold;
	text-align: center;		
}

.redbox ul{
	display: table;
	margin: 0 auto;
	text-align: left;
	list-style-type: disc;
	list-style-position: outside;
	padding-left: 2em;
}

.redbox li{
	list-style-type: disc;
}

.box-list{
    width: fit-content;
    margin: auto;
	text-indent: -1.4em;
	padding-left: 1.4em;
	line-height: 1.6;
	font-size: 16px;
}

.square-blue {
	color: #90A0BE;
	font-size: 1em;
	margin-right: 0.4em;
}

.c-menubtn {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.c-menubtn a {
	display: flex;
	flex: 0 0 250px;
	width: 250px;
	height: 50px;
	justify-content: center;
	align-items: center;
	background-color: #FFF;
	border: 3px solid #014877;
	border-radius: 35px;
	color: #014877;
	font-size: 14px;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	transition: all .3s ease-out;
}

.c-menubtn a:hover {
	background-color: #014877;
	color: #FFF;
}

.c-menubtn a::before {
	content: '';
	width: 8px;
	height: 8px;
	border-bottom: 3px solid #014877;
	border-right: 3px solid #014877;
	position: absolute;
	top: 50%;
	right: 11.4%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all .3s ease-out;
}

.c-menubtn a:hover::before {
	border-bottom: 3px solid #FFF;
	border-right: 3px solid #FFF;
}

.c-menubtn a.current {
  background-color: #014877;
  color: #FFF;
  pointer-events: none;
  cursor: default;
}

.c-menubtn a.current::before {
  border-bottom: 3px solid #FFF;
  border-right: 3px solid #FFF;
}

h2 {
    overflow: hidden;
}

h2 .c-tit_r{
  float: right;
  background-color: #752F63;
  color: #FFF;
  font-size: 12px;
  padding: 4px;
  margin-top: 10px;
}

h3 {
    overflow: hidden;
}

h3 .c-tit_r{
  float: right;
  background-color: #752F63;
  color: #FFF;
  font-size: 12px;
  padding: 4px;
  margin-top: 10px;
}