@charset "utf-8";
/*----------------------------------------------
	.l_header
---------------------------------------------*/
.l_header {
	max-width: 1000px;
	width: 100%;
	margin: 65px auto 70px;
	padding: var(--wrap);
}
.inner .l_header {
	display: flex;
	max-width: inherit;
	margin: 30px 0 50px;
}


/*----------------------------------------------
	.l_logo
---------------------------------------------*/
.l_logo {
	display: flex;
	gap: 20px;
	margin-bottom: 35px;
}
.l_logo img {
	max-height: 75px;
	width: 100%;
}
.inner .l_logo {
	margin-bottom: 0;
}
.inner .l_logo img {
	max-height: 50px;
	width: auto;
}


/*----------------------------------------------
	.l_header_title
---------------------------------------------*/
.l_header_title {
	max-width: 500px;
	width: 100%;
	margin-bottom: 30px;
}
.inner .l_header_title {
	display: grid;
	width: 300px;
	margin-left: 35px;
	margin-bottom: 0;
}
.inner .l_header_title a {
	display: grid;
}


/*----------------------------------------------
	.l_header_copy
---------------------------------------------*/
.l_header_copy {
	max-width: 550px;
	width: 100%;
}
.inner .l_header_copy {
	width: 445px;
	margin-left: 15px;
}


/*----------------------------------------------
	.l_main
---------------------------------------------*/
.inner .l_main {
	padding: var(--wrap);
	text-align: center;
}


/*----------------------------------------------
	.l_about_txt
---------------------------------------------*/
.l_about_txt {
	margin-bottom: 70px;
	padding: 30px;
	border-radius: 15px;
	background: var(--c_white);
}
.l_about_txt p {
	text-align: justify;
}


/*----------------------------------------------
	.l_tab
---------------------------------------------*/
.l_tab {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 7px;
	margin-bottom: 60px;
	text-align: center;
	color: var(--c_black);
}

.l_tab li {
	padding: 20px 0;
	background: var(--c_main);	
	font-size: 20px;
	font-weight: bold;
	line-height: 1.5;
	cursor: url('../images/mouse.png'), auto;
}
.l_tab li:first-child {
	border-radius: 15px 0 0 15px;
}
.l_tab li:last-child {
	border-radius: 0 15px 15px 0;
}

.l_tab li.active,
.l_tab li:hover {
	background: var(--c_accent);
	color: var(--c_white);
}

.l_tab li span {
	display: inline-block;
	font-size: 18px;
}


/*----------------------------------------------
  .l_enikki_area
---------------------------------------------*/
.l_enikki_area {
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	gap: 50px 40px;
	max-width: 1420px;
	width: 100%;
	margin: 0 auto 60px;
	padding: var(--wrap);
}


/*----------------------------------------------
  .l_enikki_pagenation
---------------------------------------------*/
.l_enikki_pagenation {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 100px;
}

.l_enikki_pagenation button {
	width: 50px;
	height: 50px;
	border: 1px solid var(--c_accent);
	border-radius: 100%;
	background: var(--c_white);
	color: var(--c_accent);
	font-weight: bold;
	cursor: url('../images/mouse.png'), auto;
}

.l_enikki_pagenation button:hover,
.l_enikki_pagenation button.active {
	background: var(--c_accent);
	color: var(--c_white);
}


/*----------------------------------------------
  .l_bnr_area
---------------------------------------------*/
.l_bnr_area {
	display: flex;
	justify-content: center;
	gap: 30px;
	padding: var(--wrap);
}

.l_bnr_area img {
	max-width: 280px;
}
.l_bnr_area img:hover {
	opacity: 0.7;
}


/*----------------------------------------------
  .l_textlink_area
---------------------------------------------*/
.l_textlink_area {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
}


/*----------------------------------------------
  .l_enikki_detail_area
---------------------------------------------*/
.l_enikki_detail_area {
	display: block;
	margin-bottom: 40px;
}
.l_enikki_detail_area .hide {
	display: none;
}


/*----------------------------------------------
  .l_btn_area
---------------------------------------------*/
.l_btn_area {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
}


/*----------------------------------------------
  #l_toast_share
---------------------------------------------*/
#l_toast_share {
  visibility: hidden;
  background-color: var(--c_accent);
  color: #fff;
  text-align: center;
  border-radius: 15px;
  padding: 20px 50px;
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 30px;
  font-size: 16px;
  opacity: 0;
	transform: translateX(-50%);
  transition: opacity 0.5s ease, bottom 0.5s ease;
	line-height: 1.5;
	white-space: pre-line;
}
#l_toast_share.show {
  visibility: visible;
  opacity: 1;
  bottom: 60px;
}


/*----------------------------------------------
  .l_pagetop
---------------------------------------------*/
.l_pagetop {
	position: fixed;
	right: 20px;
	bottom: 0;
	z-index: 999;
	width: 80px;
	cursor: url('../images/mouse.png'), auto;
}
.l_pagetop:hover {
	opacity: 0.7;
}


/*----------------------------------------------
  .l_footer_bg
---------------------------------------------*/
.l_footer_bg img {
	width: 100%;
}


/*----------------------------------------------
  .l_copyright
---------------------------------------------*/
.l_copyright {
	padding: 10px;
	text-align: center;
	background: var(--c_sub);
	color: var(--c_white);
	font-size: 12px;
}