.content-wrap {
  max-width: 1150px;
  padding: 30px;
  margin: auto;
}

@media (max-width: 850px) {
	.content-wrap {
	  padding: 20px 15px;
	}
}

/*  list  */
ul[class],
ol[class] {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}

li {
	line-height: 1.5;
	margin-bottom: 5px;
}

ul.disc li,
ul.hyphen li {
	position: relative;
}

ul.disc {
	padding: 0 0 0 1.5em;
}

ul.disc li::before {
	content: '・';
	position: absolute;
	left: -1em;
}

ul.hyphen {
	padding: 0 0 0 1em;
}

ul.hyphen li::before {
	content: '';
	position: absolute;
	left: -0.5em;
	top: .8em;
	display: block;
	background: currentColor;
	width: 3px;
	height: 2px;
}


/*  BTN  */
.select-btn {
	display: flex;
	justify-content: space-around;
	max-width: 1000px;
	margin: 0 auto;
}

.select-btn a {
	display: block;
	background: #033775;
	border-radius: 5px;
	color: #fff;
	font-size: 1.1em;
	letter-spacing: .1em;
	text-align: center;
	width: 300px;
	padding: 12px 20px 18px;
}

.link-btn {
	position: relative;
	display: inline-block;
	border: 1px solid currentColor;
	color: #033775;
	text-align: center;
	min-width: 280px;
	padding: 15px 50px 15px 40px;
	margin: 30px 0;
}

.link-btn::after {
	content: '→';
	position: absolute;
	right: 20px;
	transition: .3s, color .1s ease-out;
}

.link-btn:hover {
	background: #033775;
	color: #fff;
	opacity: 1;
}

.link-btn:hover::after {
	right: 12px;
}

.link-btn.docter {
	color: #4695ce;
}

.link-btn.docter:hover {
	background: #4695ce;
	color: #fff;
}

.link-btn.blueL:hover {
	background: #007afe;
	color: #fff;
}

@media (max-width: 850px) {
	.link-btn {
		padding: 10px 40px 10px 30px;
	}
}

/*  text  */
.text-serif {
  font-family: 'Noto Serif JP', serif;
}

.text-sm {
	font-size: .8em;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right;
}

/* show */
.sp,
.tb {
	display: none;
}

@media (max-width: 1100px) {
	.tb {
		display: block;
	}
}

@media (max-width: 850px) {
	.sp {
		display: block !important;
	}

	.pc {
		display: none !important;
	}
}

/*  color  */
.red {
	color: #f30000;
}

.blue {
	color: #005082;
}

.blueL {
	color: #007afe;
}

/* margin */
.mt0 {
  margin-top: 0 !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mtb0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt30 {
	margin-top: 30px !important;
}
.mr10 {
	margin-right: 10px !important;
}

/* padding */
.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.ptb0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.pb10 {
  padding-bottom: 10px !important;
}