@charset "utf-8";

/* ---------------------------

ボタンデザイン-base

---------------------------*/
.button {
	display: inline-block;
	width: 100%;
	padding: 12px 0;
	text-align: center;
	text-decoration: none;
	outline: none;
}
@media screen and (max-width: 767px) {
	 .button {
		padding: 6px 0;
	}
}

.button,
.button::before,
.button::after {
	transition: all .3s;
}

/* design_button_type1・design_button_type3 */
.design_button_type1 .button,
.design_button_type3 .button {
	color: #fff;
	background: #222;
	border: 2px solid #222;
}
.design_button_type1 .button:hover,
.design_button_type3 .button:hover {
	color: #222;
	background: #fff;
	border: 2px solid #fff;
}

/* design_button_type2・design_button_type4 */
.design_button_type2 .button,
.design_button_type4 .button {
	color: #222;
	background: #fff;
	border: 2px solid #222;
}
.design_button_type2 .button:hover
.design_button_type4 .button:hover {
	color: #fff;
	background: #222;
	border: 2px solid #222;
}

/* design_button_type3・design_button_type4 */
.design_button_type3 .button,
.design_button_type4 .button {
	border-radius: 50px;
}

/* design_button_type1・design_button_type5 */
.design_button_type5 .button {
	color: #fff;
	position: relative;
	z-index: 0;
}
.design_button_type5 .button:after {
	content: "";
	position: absolute;
	left: 5px;
	right: 5px;
	top: 5px;
	bottom: 5px;
	border: 2px dashed #fff;
	padding: 3px;
	border-radius: 5px;
}
.design_button_type5 .button:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background: #222;
	border-radius: 5px;
	z-index: -1;
}
.design_button_type6 .button {
	background: #222;
	color: #fff;
	position: relative;
	overflow: hidden;
	z-index: 0;
}
.design_button_type6 .button:after {
    content: '';
    background: #446600;
    width: 10em;
    height: 10em;
    /* display: block; */
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    transform: scale(0,0);
    opacity: 0;
    border-radius: 50%;
    margin: auto;
    top: 0;
    left: 0;
	transition:transform .45s ease-in-out .0s,opacity .20s ease-in-out 0s;
}

.design_button_type6 .button:hover:after {
    transform: scale(10,10);
    opacity: 1;
}

/* - 一覧の次の記事を表示ボタン - */
#next .button {
	border: none;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

#next .button:hover {
	opacity: 0.8;
}


/* ---------------------------

見出しデザイン-base

---------------------------*/
/* h3デザイン　*/
h3 {
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 30px;
}

/* h4デザイン　*/
h4 {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 20px;
}
@media screen and ( max-width: 767px) { 
	/* h3デザイン　*/
	h3 {
		font-size: 1.5rem;
		font-weight: bold;
		margin-bottom: 20px;
	}

	/* h4デザイン　*/
	h4 {
		font-size: 1.3rem;
		font-weight: bold;
		margin-bottom: 20px;
	}
}

/* ---------------------------

ulデザイン

---------------------------*/
.content-list li {
	padding: 10px 0;
}
.content-list li {
	padding-left: 1.8em;
	position: relative;
}
.content-list.list-icon li:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 1.8rem;
	position: absolute;
	top: 14px;
	left: 0;
	color: #222;
}
.list-icon.check_mark li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-weight: bold;
}
.list-icon.arrow_circle li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0a9";
	font-weight: bold;
}
.list-icon.angle_right li:before {
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
}

/* ---------------------------

dlデザイン

---------------------------*/
.content-dl {
    display: flex;
    flex-wrap: wrap;
}

.content-dl dt {
    width: 70%;
}

.content-dl dd {
    width: 30%;
    text-align: right;
}

.content-dl dt,.content-dl dd {
    padding: 10px 0;
}


.content-faq dt:before {
    content: 'Q';
    /* display: inline-block; */
    width: 25px;
    height: 25px;
    background: #777;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 0;
}

.content-faq dt > * {
    display: inline;
}

.content-faq dt {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-weight: bold;
}

.content-faq dd {
    /* padding-left: 35px; */
}

.content-faq dd + dt {
    margin-top: 30px;
}

/* ---------------------------

tableデザイン

---------------------------*/
.table-column.separate-cell {
	border-collapse: separate;
	border-spacing: 0 5px;
}
.table-row.separate-cell {
	border-collapse: separate;
	border-spacing: 5px 0;
}
.table-column.separate-cell th,
.table-column.separate-cell td,
.table-row.separate-cell th,
.table-row.separate-cell td {
	border: none !important;
}

@media (max-width: 767px) {
	.table-column th,
	.table-column td {
	display: block;
	width: 100%;
	padding: 10px 20px;
	border-top: none;
	box-sizing: border-box;
	}
}