@charset "UTF-8";
:root {
  --c-main: #333;
  --c-sub: #ccc;
  --c-red: #E30000;
  --c-org: #FF7F00;
  --c-grn: #0A9595;
}


/*---基本設定-----------*/
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: clip;
  background-color: #fff;
}

html {
  font-family: "Helvetica Neue", Arial, "BIZ UDPGothic",
  "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 4vw;
}

body {
  color: #333;
  position: relative;
  z-index: 1;
}

body::before {
}

p,
dt,
dd,
li {
  line-height: 1.5;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

a,
button {
  cursor: pointer;
}

button {
  background: transparent;
  border: none;
  padding: 0;
}

img {
  height: auto;
}

/*--lightbox------------------------------------------*/

#lightBox {
  position: fixed;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.8);
	display: flex;
	align-items: center;
	justify-content: center;  
  opacity: 0;
  transition-property: opacity;
  transition-duration: .3s;
}

#lightBox.open {
	z-index: 1000;
  opacity: 1;
}

#lightBox > button {
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10001;
  background:url(../img/icon/icon_close.svg) no-repeat center/50%;
}

#lightBox.open figure img {
	width:auto;
	height: auto;
}

/*--PARTS-------------*/
.btn {
}

.btn:active,
.btn:hover {
}

.btn-more {
	display: table;
	margin: 1rem auto;
	background-color: #f2f2f2;
	/* color: #fff; */
	border: 1px #ccc solid;
	border-radius: 2em;
	padding: 0 2em;
	font-size: .9rem;
	line-height: 2.5;
	box-shadow: 0.2em 0.2em 0.2em #aaa;
}


input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="number"],
textarea {
  width: 100%;
  display: block;
  padding: 0.2em 0.75em;
  border: 1px solid #333;
  border-radius: 0.25em;
  font-size: 1em;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
  opacity: 0.5;
}

.sitelist dd.open {
  overflow-y: scroll;
  height: 80%;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  font-size: inherit;
  font-family: inherit;
  display: block;
  padding: 0.5em 0.7em;
  border: 1px solid #333;
  border-radius: 0.25em;
  background-color: #fff
}

.select_wrap {
  position: relative;
}

.select_wrap::after {
  content: "";
  background: #333;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  width: 1em;
  height: 0.6em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
  pointer-events: none;
}

em {
  font-weight: bold;
  font-style: normal;
}

strong {
  color: var(--c-red);
}

a {
  text-decoration: none;
}

/* list */
.mark {
	padding: 0.25em 1em;
	margin: 2em auto;
	border: 1px #000 solid;
	display: table
}

.mark li {
	position: relative;
	padding-left: 1.5em;
	margin: 0.5rem 0;
}

.mark li::before {
  content: "";
	position: absolute;
	top: 0.3em;
	left: 0em;
	width: 0.8em;
	height: 0.8em;
	background-color: var(--c-main);
	border-radius: 100%;
}

.mark-flex {
	display: flex;
	gap: 0 1.5rem;
	flex-wrap: wrap;
}

.mark-flex li {
  padding-left: 1.2rem;
}

.notice {
  padding: 0 1em;
  margin: 1em 0;
}

.notice li {
  position: relative;
  line-height: 1.6;
  padding-left: 1.5em;
}

.notice li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.number {
  position: relative;
  padding-left: 1.5em;
}

.number span {
  position: absolute;
  top: auto;
  left: 0;
}


/*--ページパーツ------------------------------------------*/
article {
    position: relative;
}

article > div {
  margin: 1rem 0;
  padding: 0 1rem;
}

article > header {
  background-color: #ddd;
  padding: 1rem;
}

h1 {
  font-size: 1.4em;
	font-weight: bold;
	line-height: 1.25;
	text-align: justify;
}

.scroll {
  overflow-x: scroll;
  margin: 1.5rem 0;
}

.scroll::before {
	content: "横にスクロールしてください";
	display: block;
	text-align: center;
	font-weight: bold;
	position: sticky;
	left: 0;
	margin-bottom: .5rem;
}

.scroll > table {
  white-space: nowrap;
}

.document section iframe {
}

.document_date {

}

.document_date p {

}

.document_lead {
  margin: 1rem 0;

}

.document section p {
  line-height: 1.5;
  margin: .5rem 0;
}
.category_list {

}

.category_list li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px #ccc solid;
    position: relative;
    padding: 1rem 0;
}

.category_list li:first-of-type {
    border-top: 1px #ccc solid;
}

.category_list li figure {
    width: 5rem;
}

.category_list li dl {
    flex: 1;
}

.category_list li dl dt {
    font-weight: bold;
}

.category_list li dl dt a {
    color: inherit;
}

.category_list li dl dt a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}

.category_list li dl dd {
  
}

.category_list li dl dd span {
  
}




/*--目次------------------------------------------*/

.document_index {
	padding: 0 1rem;
	margin: 1rem 0;
}

.document_index::after {
}

.document_index > ul {
}

.document_index::before {
	content: "この記事の目次";
	display: block;
	line-height: 2;
	text-align: center;
	margin: 0 auto;
	padding: 0 2rem;
	border: 1px #999 dotted;
}

.document_index.open::before {
	background-color: #000;
	color: #fff;
	border: 1px #000 solid;
}

.document_index > ul > li {
  margin-bottom: 1em;
}

.document_index a {
	display: block;
	position: relative;
	text-decoration: underline;
	color: inherit;
	padding: 0 1rem 0 2rem;
}

.document_index a::before {
  content:"";
	width: 0.8em;
	height: 0.8em;
	margin-right: 0.2em;
  border-radius: 100%;
	background: var(--c-red);
	position: absolute;
	left: 1rem;
	top: 0.3em;
}

.document_index > ul > li > ul > li a::before {
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.1em;
}

.document_index > ul > li > ul > li {
  padding-left: 1em;
  margin: 1em 0;
}

.document_index > ul > li > ul > li a {
  font-size: 0.9em;
}

/*--サムネイル画像------------------------------------------*/

/*--吹き出し------------------------------------------*/


/*--SEARCHBOX------------------------------------------*/

/*--的中実績------------------------------*/

/*--COURCE COLOR------------------------------*/
.c1,
.c2,
.c3,
.c4,
.c5,
.c6 {
  display: inline-block;
  line-height: 1;
  padding: 2px;
  width: calc(1em + 4px);
  color: #fff;
  text-align: center;
  font-weight: bold;
  border: 1px solid;
}

.c1 {
  background-color: #fff;
  color: black;
  border-color: var(--lightBlack);
}

.c2 {
  background-color: #4e4e4e;
  border-color: #4e4e4e;
}

.c3 {
  background-color: #c63f3f;
  border-color: #c63f3f;
}

.c4 {
  background-color: #346fa2;
  border-color: #346fa2;
}

.c5 {
  background-color: #fff793;
  color: black;
  border-color: #fff793;
}

.c6 {
  background-color: #3f883a;
  border-color: #3f883a;
}

.top_btn {
}


/*--汎用設定----------------------------------------*/

main {
    min-height: 100vh;
    background-color: #fff;
    width: 100vw;
    overflow-x: hidden;
}

.linkArea a {
	line-height: 1.25;
	font-weight: bold;
	color: #000;
	position: relative;
	display: flex;
	text-decoration: underline;
	align-items: center;
	padding: 0 0 0 3.5rem;
	margin: 1.5rem 0;
}

.linkArea a::before {
	content: "";
	background: no-repeat url(../img/icon/icon_hand_right.svg) center/60% var(--c-main);
	display: block;
	width: 3rem;
	height: 3rem;
	border-radius: 100%;
	position: absolute;
	top: calc( 50% - 1.5rem);
	left: 0;
}

.ta-c	{
	text-align: center !important;
}
.pa-1 {
	padding: 1em !important;
}
.pv-1 {
	padding-top: 1em !important;
	padding-bottom: 1em !important;
}
.pt-1 {
	padding-top: 1em !important;
}
.pb-1 {
	padding-bottom: 1em !important;
}
.ph-1 {
	padding-left: 1em !important;
	padding-right: 1em !important;
}
.mh-a {
	margin-left: auto !important;
	margin-right: auto !important;
}
.mb-1 {
	margin-bottom: 1rem !important;
}
.mt-1 {
	margin-top: 1rem !important;
}


i[class^=star] {
	display: inline-block;
	width: 1em;
	height: 1em;
	vertical-align: text-top;
	background: no-repeat url(../img/star.webp) center top/contain;
}
i.star-null {
	background-image: url(../img/star_null.webp)
}
i.star-half {
	background-image: url(../img/star_half.webp)
}


/*--header----------------------------------------*/
.body_header {
}

.body_header > div {
  position: sticky;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  display: flex;
	justify-content: space-between;
}

.body_header > div > *{
    height: 2rem;
}

.body_header > div a {
    color: transparent;
    display: block;
    width: 5rem;
    background-color: #333;
}

.body_header > div button {
    width: 2rem;
    background: #333;
}
/*--global_nav----------------------------------------*/

.global_nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: -200;
    width: 100vw;
    height: 100vh;
    background-color: #00000088;
}

.global_nav.open {
	z-index: 200;
}

.global_nav button {
    position: fixed;
    top: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    background: #000;
}

.global_nav ul {
    width: 50%;
    margin-left: auto;
    background: #333;
    height: 100%;
    padding-top: 2rem;
}

.global_nav ul li {
	
}

.global_nav ul li a {
    display: block;
    color: #fff;
    padding: .5em 1em;
}


/*--ぱんくず----------------------------------------*/
.breadcrumb {
  background-color: #ccc;
}

.breadcrumb ol {
  display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.breadcrumb ol li {
  display: flex;
	align-items: center;
}

.breadcrumb ol li::after {
	font-size: 60%;
  content:">";
}

.breadcrumb ol li:last-of-type::after {
  content:none;
}

.breadcrumb ol li a,
.breadcrumb ol li > span {
	color: #000;
	font-size: .7rem;
	padding: 0.5rem 1em;
	display: block;
	line-height: 1;
	position: relative;
	z-index: 10;
}

/*--フッター----------------------------------------*/

footer {
    background-color: #999;
    color: #fff;
    padding-bottom: 5rem;
}

.footer_logo {
}

.footer_nav ul {
  display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.footer_nav ul li {
}

.footer_nav ul li a {
    color: #000;
    padding: 0.25em .5em;
    display: block;
    font-size: 90%;
}

.footer_copyright {
    font-size: .8rem;
    text-align: center;
}

.float_nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #000;
}

.float_nav ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
}

.float_nav ul li {
    width: calc(100% / 6);
}

.float_nav ul li a {
    display: flex;
    color: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    font-size: .8rem;
    width: 100%;
    text-align: center;
    height: 4rem;
}




/*--SIDE----------------------------------------*/



/*--スライダー----------------------------------------*/

.sliderlist {

}

.sliderlist ul {
}
.sliderlist ul li {
	padding: 1rem .5rem;
}
.sliderlist ul li a {
	display: block;
	box-shadow: 0 0 .2rem #aaa;
	color: inherit;
}
.sliderlist ul li figure {
}
.sliderlist ul li figure img {
}
.sliderlist ul li figcaption {
	padding: 1rem;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	height: 7rem;
	justify-content: space-between;
  overflow: hidden;
}
.sliderlist ul li figcaption time {
  display: block;
  font-size: 90%;
  margin-top: 1em;
  font-weight: normal;
}


.forPC {
	display:none;
}


