@charset "shift_jis";
/* CSS Document */

:root {
	--main-clr-lightgray: #c9c9c8;
	--main-clr-lightbeige: #cbc1ae;

	--main-clr-white: #f4f5f0;
	--main-clr-gray: #7f7c7a;
	--clr-ss-red-light: #d07157;

	--clr-ss-black: #48413b;
}

.guide_w1000 {
	position: relative;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto 48px;
}

.guide_box {
	position: relative;
	width: 100%;
	margin-top: 64px;
}

.guide_w1000 .warning_box {
	width: 100%;
	padding: 24px 48px;
	background-color: var(--main-clr-white);
	box-sizing: border-box;
	margin-bottom: 12px;
}



/* 見出し */
.guide_w1000 :where(h1,h2,h3,h4) {
	position: relative;
	font-weight: 700;
	margin-bottom: 1em;
}

.guide_w1000 h2 { font-size: 28px; }

.guide_w1000 h3 {
	font-size: 24px;
	border-bottom: solid 1px var(--clr-ss-black);
}

.guide_w1000 h4 { font-size: 20px; }
.guide_w1000 .warning_box h4  { border-bottom: solid 1px var(--clr-ss-black); }
.guide_w1000 #guide h4 { margin-bottom: 0.5em; }

.title_txt {
	position: relative;
	width: 100%;
	text-align: left;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	border-left: solid #333 5px;
	padding: 10px!important;
	box-sizing: border-box;
	margin-bottom: 40px;
}
.title_txt > span {
	display: block;
	font-size: 14px;
	margin-top: 5px;
}

/* テキスト */
.guide_w1000 p {
	font-size: 16px;
	line-height: 1.75;
	margin-bottom: 1em;
}

.guide_w1000 p.link { margin-top: -0.5em; }
.guide_w1000 p.link a {
	position: relative;
	display: inline-block;
	color: var(--clr-ss-red-light);
	font-weight: 700;
	border-bottom: solid 1px var(--clr-ss-red-light);
}
.guide_w1000 p.link a::before {
	position: relative;
	display: inline-block;
	vertical-align: 2px;
	content: "";
	width: 4px;
	height: 4px;
	border-top: solid 2px var(--main-clr-gray);
	border-right: solid 2px var(--main-clr-gray);
	transform: rotate(45deg);
	margin-right: 8px;
}
.guide_w1000 p.link a:hover {
	color: var(--clr-ss-black);
	font-weight: 700;
	border-bottom: solid 1px var(--clr-ss-black);
}

.guide_w1000 .txt_red { color: #f00; }
.guide_w1000 strong { font-weight: 700; font-size: inherit; }


/* リスト */
ul.attention > li { text-indent: -1em; }
ul.attention > li:nth-of-type(n+2) { margin-top: 1em;}

ol.list_num { margin-left: 1.5em; }
ol.list_num > li { list-style-type: decimal; }
ol.list_num > li:nth-of-type(n+2) { margin-top: 1em;}

.list_disc { margin-left: 1.5em; }
.list_disc li { list-style-type: disc; }



.block {
	margin-top: 40px;
}
.block > p {
	margin: auto;
}


.block h3 {
    font-size: 120%;
    border-bottom: 2px solid #333;
    margin: 10px 0;
    padding: 0;
}
.block h3:before {
	content:" ■ ";
}

.btn_shinki {
	position: relative;
	margin-top: 16px;
}
.btn_shinki a {
	position: relative;
	display: block;
	max-width: 320px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	background-color: var(--clr-ss-red-light);
	padding: 0.5em;
	border-radius: 100px;
}
.btn_shinki a::after {
	position: absolute;
	top: 50%;
	right: 8%;
	display: inline-block;
	content: "";
	width: 4px;
	height: 4px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg) translateY(-50%);
}

.btn_shinki a:hover {
	color: #fff;
	background-color: var(--main-clr-lightbeige);
}
.btn_shinki a:hover::after {
	right: 6%;
}

.btn_shinki a,
.btn_shinki a:hover,
.btn_shinki a::after,
.btn_shinki a:hover::after  {
	transition: all 0.2s;
}