@charset "UTF-8";
/*
Theme Name: RakurakuTown
Theme URI: https://wordpress.org/themes/rakurakutown/
Author: Kei Miyahara
*/
body{
	font-family: 'Noto Sans JP',"メイリオ" , Meiryo , "ヒラギノ角ゴPro W3" , "Hiragino Kaku Gothic Pro" , "ＭＳ Ｐゴシック" , sans-serif;
	color:#4C4948;
}
img{
	max-width: 100%;
}
.site{
	text-align: center;
	overflow: hidden;
}
video{
	max-width: 100%;
}
.main_video_div{
	width: 100%;
	overflow: hidden;
	height: 401px;
	position: relative;
}
.main_video_div #bgvid{
	top: -20%;
	position: relative;
	z-index: -6;
}
.main_video_div_onimgs{
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0.9;
}
.main_video_div::before{
	content: '';
	position: absolute;
	background-color: #004B39;
	opacity: 0.2;
	top: 0px;
	height: 100%;
	width: 100%;
	z-index: -3;
}
@media screen and (max-width: 1000px) {
	.main_video_div{
		/* height: 40.1vw; */
		height: 80vw;
	}
	.main_video_div #bgvid{
		top: -15%;
		position: relative;
		z-index: -6;
		max-width: 200%;
		left: -50%;
	}
	.main_video_div_onimgs{
		top: 25%;
	}
}

/* header-------------------------------------------------------------------------------- */
.m_header{
	background-color: #009D83;
	text-align: center;
	padding-bottom: 5px;
	margin: auto;
	max-width: 1000px;
	width: 100%;
}
.m_header_inner{
	max-width: 1000px;
	width: 100%;
	margin: auto;
}
.m_header_top{
	display: flex;
	justify-content:space-between;
	padding:20px;
}

.m_header_nav{
	font-size:1.5rem;
	font-weight:bold;
	display: flex;
	border-top:#fff 1px solid;
	border-bottom:#fff 1px solid;
}
.m_header_nav li{
	width: calc(100% / 7);
	padding:5px;
}
.m_header_nav li + li{
	border-left: #fff 1px solid;
}
.m_header_nav a{
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	border-radius: 2.5px;
	background:linear-gradient(#00A497, rgba(255, 255, 255, 0.36) 46.64%, rgba(0, 157, 131, 0));
	display: flex;
	align-items:center;
	justify-content:center;
	height: 35px;
}

/* search_div */
.search_div{
	background-color: #fff;
	border-radius: 14px;
	width: 172px;
	height: 28px;
	display: flex;
	justify-content:center;
	align-items:center;
	padding-left:5px;
}
.search_div .search_txt{
	border: none;
	width: 103px;
}
#searchsubmit{
	background-color: #009D83;
	border: none;
	color: #fff;
	font-size: 14px;
	width: 52px;
	height: 22px;
	border-radius: 15px;
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger{
	display: none;
}
.btn-trigger {
  position: relative;
  width: 25px;
  height: 22px;
  cursor: pointer;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.btn-trigger, .btn-trigger span {
  transition: all .5s;
  box-sizing: border-box;
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 9px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
/*=============================
#btn08
=============================*/
#btn_bt.active span:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-315deg);
  transform: translateY(9px) rotate(-315deg);
}
#btn_bt.active span:nth-of-type(2) {
  opacity: 0;
}
#btn_bt.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}



@media screen and (max-width: 950px) {
	.btn-trigger{
		display: block;
	}
	.m_header{
		position: fixed;
		top: 0;
		left: 0;
		z-index:100;
		height:60px;
		transition: all .5s;
	}
	.m_header .header_logo{
		height: 20px;
	}
	.main_content{
		margin-top: 60px;
	}
	.m_header_nav{
		transition: all 1s;
	  opacity: 0;
	}
	.m_header_nav li{
		font-weight: 500px;
		width: 100%;
		height: calc(((80vh - 170px) / 7));
		margin: auto;
		display: none;
		align-items: center;
		justify-content: center;
	}
	.search_div{
		transition: all 1s;
	  opacity: 0;
		display: flex;
		position: absolute;
		top: 0px;
		left: calc(50% - 45vw);
		width: 90vw;
		z-index: -100;
	}



	.m_header.active{
		height: 100vh;
		opacity: 0.95;
		overflow: none;
	}
	.m_header.active .m_header_top{
		border-bottom: 1px solid #fff;
	}
	.m_header.active .search_div{
		opacity: 1;
		top: 100px;
		z-index: 300;
	}

	.search_div .search_txt {
		width: 65vw;
		padding: 0;
		margin: 0;
		height: 25px;
		font-size: 16px;
	}
	#searchsubmit{
		width: 20vw;
	}

	.m_header_nav.in_active{
		display: block;
		border-bottom:none;
		margin-top: 110px;
		opacity: 1.0;
	}
	.m_header_nav.in_active li{
		display: flex;
	}
	.m_header_nav li + li{
		border:none;
	}
	.m_header_nav a{
		background: none;
		font-size: 5.5vw;
		font-weight: 300;
	}
	.m_header_nav a br{
		display: none;
	}
}






.breadcrumb{
	line-height: 33px;
	text-align: left;
	padding:0px 30px;
	background-color: #fff;
}
.breadcrumb a{
	text-decoration: none;
	color: #000;
}
.breadcrumb_title{
	color:#009D83;
}

/* site-content -------------------------------------------------------------------------------------*/
.site-content{
	max-width: 1000px;
	width: 100%;
	margin: auto;
}
.content_header{
	position: relative;
	overflow: visible;
}
.content_header h1{
	margin: 30px 0px;
	padding: 0 30px;
}
.content_header::before{
	content: '';
	background-image: url('https://rakurakutown.jp/wp-content/uploads/2025/12/title_back.png');
	position: absolute;
	bottom: -200px;
	min-height: 400px;
	width: 100%;
	left: 0;
	z-index: -10;
	background-repeat: no-repeat;
	-webkit-background-size: 100%;
	background-size: 100%;
}
.content_header h1.page_h1{
	margin-top: 46px;
}
.content_header.page_header::before{
	bottom: -170px;
}
.content_header.photo_page_header::before{
	bottom: -115px;
}

.site-main{
	/* min-height: 700px; */
	position: relative;
}

.h1_photo-recruit,
.h1_photo-access,
.h1_photo-group{
	background-size: cover;
	background-position: center;
	height: 225px;
	display: flex;
	justify-content:center;
	align-items:center;
	margin: 0 !important;
	background-repeat: no-repeat;
}
.h1_photo-recuit{
	/*background-image: url('https://rakurakutown.jp/wp/img/recruit_header.png');*/
}
.h1_photo-access{
	background-image: url('https://rakurakutown.jp/wp-content/uploads/2025/12/image7-2.png');
}
.h1_photo-group{
	background-image: url('https://rakurakutown.jp/wp-content/uploads/2025/12/title_back.png');
	flex-direction:column;
}
.h1_photo-group img:nth-child(1){
	margin-top: 1em;
}
.h1_photo-group img:nth-child(2){
	margin-top: 2em;
}

.site-main::before{
	content: '';
	background-color: #F8FCFB;
	background-image:
	 linear-gradient(-90deg, #fff 50%, transparent 50%);
	background-size: 12px 10px;
	position: absolute;
	top: 0px;
	left: 0px;
	min-height: 20000px;
	width: 100%;
	z-index: -20;
}
.half-sec {
	display: flex;
	justify-content: space-between;
	max-width: 860px;
	margin: auto;
}
.half-inner {
	width: 446px;
	padding: 0 20px;
}
.img-section + .img-section{
	margin-top:45px;
}
.main_section + .main_section{
	margin-top: 100px;
}
.img-section img{
	border: 2px solid #fff;
}

.access_inner{
	text-align: left;
}
.access_h3{
	color: #009D83;
	font-size: 20px;
	display: flex;
	align-items:center;
}
.access_h3 img{
	margin-right: 0.3em;
}
.access_p{
	font-size: 17px;
	line-height: 1.3em;
	margin: 1em 0;
}
.center-inner{
	margin: auto;
}
.center-inner .access_h3{
	justify-content:center;
}
.innner_in-half{
	display: flex;
	align-items:center;
}
.innner_in-half .access_p{
	text-align: left;
	margin-left: 1em;
}
.access_time_table{
	width:700px;
	font-size: 18px;
}
.access_time_table td,
.access_time_table th{
	border: 1px solid #4C4948;
	text-align: center;
	height: 47px;
	line-height: 47px;
}
.access_time_table td:nth-child(1){
	width: 150px;
}
.access_time_table td:nth-child(odd){
	/* background-color: #fff; */
}
.access_time_table td:nth-child(even){
	background-color: #DEEFEB;
}
.access_time_table td:empty {
	background-color: #DEEFEB;
	background-image: linear-gradient(-45deg, transparent 49%, black 49%, black 51%, transparent 51%, transparent);
}
.th_origin{
	background-image: linear-gradient(17deg, transparent 50%, black 50%, black 51%, transparent 51%, transparent);
	position: relative;
}
.th_origin::before{
	content: '発';
	position: absolute;
	left: 5px;
	top: 1.3em;
	line-height: 1em;
	display: block;
	width: 1em;
}
.th_origin::after{
	content: '時';
	position: absolute;
	top: 0.3em;
	right: 5px;
	line-height: 1em;
}
.time_map{
	margin-top: 6em;
}
.anno{
	padding:0.5em 0;
	text-align: left;
}

.front_h1_divs{
	margin-top: 1em;
}
.front_h1_divs img + img{
	margin-left: 2em;
}
.front_header{

}

@media screen and (max-width: 415px) {
	.access_h3{
		margin-top: 3em;
	}
	.center-inner{
		padding:0 20px;
		text-align: left;
	}
	.center-inner .access_h3{
		justify-content:flex-start;
	}
	.innner_in-half{
		display: block;
	}
	.innner_in-half *{
		margin-top: 0.5em;
	}
	.innner_in-half .access_p{
		margin: auto;
	}
	.access_time_table_div{
		width: 100%;
		overflow: scroll;
	}
	.front_pickup_h2{
		width: 90%;
		overflow: hidden;
		margin: auto;
	}
	.front_pickup_h2 img{
		max-width: 200%;
		left: -50%;
		position: relative;
	}

	.front_h1_divs{
	}
	.front_h1_divs img + img{
		margin-left: 0em;
		margin-top: 1em;
		max-width: 55vw;
	}
	.front_header{
		background-color: #009D83;
	}
	.content_header.front_header::before{
		min-height: 46vw;
	}
	.front_header h1{
		margin: -1px 0px 15px;
		padding: 15px 30px;
	}
}


/* group */
.group_h2{
	background-color: #009D83;
	color: #fff;
	font-size: 23px;
	font-weight: 600;
	max-width: 327px;
	height: 50px;
	display: flex;
	justify-content:center;
	align-items:center;
	margin: auto;
	border-radius: 5px;
}
.shop_info_div{
	display: flex;
	max-width: 820px;
	width: 100%;
	margin: auto;
	margin-top: 40px;
	padding: 0 20px;
	box-sizing: border-box;
}
.shop_info_right{
	margin-left: 2em;
	text-align: left;
	display: flex;
	flex-direction:column;
	justify-content:space-between;
}
.shop_info_right-innner{
	display: flex;
	font-weight: 600;
	font-size:14px;
	line-height: 22px;
}
.shop_info_right-innner,
.shop_info_right-icons{
	margin-top: 10px;
}
.shop_info_right-innner2 .shop_info_right-innner + .shop_info_right-innner{
	margin-left: 2em;
}
.shop_info_right-innner label{
	display: block;
	width: 82px;
	height: 22px;
	color: #fff;
	background-color: #4C4948;
	font-weight: 600;
	margin-right: 0.5em;
	display: flex;
	justify-content:center;
	align-items:center;
	/* font-size: 14px; */
	.shop_info_right-innner label_02{
	display: block;
	width: 120px;
	height: 22px;
	color: #fff;
	background-color: #4C4948;
	font-weight: 600;
	margin-right: 0.5em;
	display: flex;
	justify-content:center;
	align-items:center;
	/* font-size: 14px; */
}
}
.shop_info_right-innner2{
	display: flex;
}
.shop_info_right-icons{
	margin-top: 15px;
	width: 224px;
	display: flex;
	justify-content:space-between;
}
.shop_info_main-img{
	max-width: 400px;
	width: 50%;
}
.shop_info_left-img{
	margin-bottom: 15px;
}
.shop_info_btn{
	border: 2px solid #fff;
	background-color: #009D83;
	color: #fff;
	text-decoration: none;
	display: block;
	width: 260px;
	height: 36px;
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.6));
	background: linear-gradient(#009D82,#00B19F 25%,#009D82 60%);
	font-size: 16px;
	position:relative;
	padding-right: 1em;
}
.shop_info_btn::after{
	content:'＞';
	position: absolute;
	right: 10px;
}
.shop_info_div + .shop_info_div{
	margin-top: 100px;
}

@media screen and (max-width: 415px) {
	.shop_info_div{
		flex-direction: column;
		width: 100%;
		max-width: 100%;
		padding: 0 15px;
	}
	.shop_info_right{
		margin: 1em 0 0 0;
	}
	.shop_info_right-innner span{
		width: 60vw;
		line-height: 1.2em;
	}
	.shop_info_right-innner2 .shop_info_right-innner span{
		width: 18vw;
	}
	.shop_info_div + .shop_info_div{
		margin-top: 5em;
	}
	.shop_info_main-img{
		max-width: 100%;
		width: 100%;
	}

}











/* .page-site-main */
.page-site-main{
	padding-top: 100px;
}
.page-site-main-h2{
	color: #fff;
	font-size:18px;
	background-image:linear-gradient(-90deg, rgba(255,255,255,0) , #019D83 25%, #019D83 75% ,rgba(255,255,255,0));
	max-width: 320px;
	margin: auto;
	height: 32px;
	line-height: 32px;
}
.page-site-ul{
	margin-top: 2em;
	font-size: 18px;
	line-height: 1.3em;
}
.page-site-ul dt{
	font-weight: 900;
	margin-top: 2em;
}
.page-site-ul dd{
	margin-top: 0.5em;
}
.page-site-ul .em05 {margin-top: 0.5em;} /* 2025/06/06追加 */


/* page-privacy-ul */
.page-privacy-ul{
	max-width: 800px;
	font-size: 18px;
	line-height: 1.3em;
	text-align: left;
	margin: auto;
	margin-top: 3.5em;
}
.page-privacy-ul dt{
	font-weight: 900;
	font-size: 21px;
}
.page-privacy-ul dd{
	margin-top: 2em;
	margin-bottom: 3.5em;
}


/* privacy_contact_div */
.privacy_contact_div{
	margin-top: 60px;
}
.privacy_contact_div h3{
	font-size: 20px;
	color:#009D83;
	font-weight: 600;
	margin-bottom: 30px;
}
.privacy_contact_div_inner{
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	margin: auto;
	margin-bottom: 60px;
}
.privacy_contact_div_inner-half{
	font-size: 18px;
}
.privacy_contact_div_inner-half label{
	background-color: #009D83;
	color: #fff;
	font-weight: 600;
	text-align: center;
	display: inline-block;
	height: 23px;
	line-height: 23px;
	padding:0 0.5em;
	border-radius: 5px;
}
.privacy_contact_div_inner-half span{
	font-weight: 600;
	margin-left: 1em;
}

/* fron_pickup_div */

.fron_pickup_div{
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	width: 100%;
}
.fpd_inner{
	width: calc((100% / 3) - 40px);
	margin: 20px;
}
.fpd_inner_title{
	font-size: 18px;
	height: 50px;
	padding-left: 1em;
	margin: 0.8rem 0;
	display: flex;
	align-items: center;
	text-align:left;
	font-weight: 600;
}
.fpd_inner_title a{
	color: inherit;
	text-decoration: none;
}
.fpd_inner_title a:hover{
	text-decoration:underline;
}
.fpd_inner_body{
	font-size: 14px;
	line-height: 1.3rem;
	text-align:left;
}
.fpdt_green{
	color:#009D83;
	border-left:10px solid #009D83;
}
.fpdt_brown{
	color:#A68B3B;
	border-left:10px solid #A68B3B;
}
.fpdt_brue{
	color:#004F86;
	border-left:10px solid #004F86;
}
.fron_pickup_div_more{
	background-color: #fff;
	display: block;
	margin: 40px auto;
	border: #009D83 solid 1px;
	color:#009D83;
	font-size: 21px;
	font-weight: 700;
	width: 490px;
	line-height: 52px;
	max-width: 90%;
	text-decoration: none;
	position: relative;
}
.fron_pickup_div_more::after{
	content:'＞';
	position: absolute;
	color:#009D83;
	right: 10%;
}
.fron_pickup_div_more:hover{
	background-color: #009D83;
	color: #fff;
}


.twitter-timeline-section{
	height: 530px;
	overflow: scroll;
	border-radius: 10px;
}
.twitter-timeline-back{
	background-image: url('https://rakurakutown.jp/wp/img/twitter_icon.png');
	background-repeat: no-repeat;
	background-position: 18px 18px;
	background-size: 14%;
	background-color: #3291D0;
	border-radius: 20px;
	padding: 18px;
}
.twitter_shoptitle{
	color: #fff;
	font-size: 19px;
	margin-bottom: 18px;
	line-height: 1.5em;
}

.x-timeline-section{
	height: 530px;
	overflow: scroll;
	border-radius: 10px;
}
.x-timeline-back{
	background-image: url('https://rakurakutown.jp/wp/img/x-twitter_icon.png');
	background-repeat: no-repeat;
	background-position: 18px 18px;
	background-size: 14%;
	background-color: #fff;
  border: 1px solid #000;;
	border-radius: 20px;
	padding: 18px;
}
.x_shoptitle{
	color: #000;
	font-size: 19px;
	margin-bottom: 18px;
	line-height: 1.5em;
}

.photo_section{
	margin-top: 30px;
}
@media screen and (max-width: 1000px) {
	.content_header.page_header::before{
		bottom: -17vw;
		min-height: 40vw;
	}
	.content_header.photo_page_header::before{
		bottom: -11.5vw;
		min-height: 40vw;
	}
	.content_header.tenpo_page_header::before{
		bottom: -8vw;
	}
	.content_header.tenpo_page_header .h1_photo-group{
		height: 190px;
	}
	.content_header.tenpo_page_header .h1_photo-group img:nth-child(1){
		margin-top: 0em;
	}
	.photo_page_tenpo{
		overflow:hidden;
		margin-top: 1em;
	}
	.photo_page_tenpo img{
		max-width: 200%;
		position: relative;
		left: -50%;
	}
	.content_header::before{
		bottom: -20vw;
		min-height: 40vw;
	}
	.h1_photo-access{
		height: 22vw;
	}
	.h1_photo-access img{
		max-width: 25vw;
	}
	.page-site-main .main_section{
		margin: 0 5vw;
	}
	.photo_section{
		margin-top: 1vw;
	}
	.shop_infos{
		margin-top: 6em !important;
	}
	.h1_photo-recruit{
		height: 22vw;
	}
	.h1_photo-recruit img{
		max-width: 56vw;
	}
}

@media screen and (max-width: 415px) {
	body{
		font-size: 4vw;
	}
	.half-sec {
		display: block;
	}
	.half-inner{
		width: 100%;
	}
	.img-section + .img-section,
	.half-inner + .half-inner{
		margin-top: 2em;
	}
	.fpd_inner{
		width: 100%;
	}
	.breadcrumb{
		font-size: 0.8em;
		padding-left: 1em;
	}
	.fron_pickup_div_more{
		font-size:4vw;
	}
	.page-site-main{
		padding-top: 15vw;
	}

	.page-privacy-ul{
		margin-top: 0;
	}
	.page-privacy-ul dd{
		font-size: 4vw;
	}
	.privacy_contact_div_inner{
		display: block;
	}
	.privacy_contact_div_inner-half{
		margin-top: 1em;
	}
	.privacy_contact_div_inner-half label{
		width: 35vw;
		font-size: 3.5vw;
	}
	.page-site-ul dd{
		font-size: 4vw;
	}
	.fron_pickup_div img{
		width: 100%;
	}
}


/* footer ----------------------------------------------------------------------------------------------*/
.m_footer{
	margin-top: 65px;

}
.m_footer_inner{
	max-width: 1000px;
	width: 100%;
	margin: auto;
	background-color: #EBEBEC;
}
.mf_imgs{
	display: flex;
	flex-wrap:wrap;
}
.mf_imgs .mf_imgs_inner{
	width : calc(100% / 3) ;
}
.mf_imgs .mf_imgs_inner img{
	width:100%;
}

/* m_fooer_nav */
.m_fooer_nav{
}
.mf_navs{
	padding: 15px;
	display: flex;
	justify-content:center;
	align-items:center;
}
.mf_navs li{
	display: block;
	padding:10px;
	font-size: 14px;
	border-left:#231815 solid 1px;
}
.mf_navs li:last-child{
	border-right:#231815 solid 1px;
}
.mf_navs li a{
	color: #231815;
	text-decoration: none;
}
.mf_navs li a:hover{
	text-decoration:underline;
}
.m_footer_title{
	padding-top: 20px;
	padding-bottom: 20px;
	font-size:16px;
}


@media screen and (max-width: 900px) {
	.mf_navs {
		display: block;
	}
	.mf_navs li{
		border-left: none;
	}
	.mf_navs li:last-child{
		border-right: none;
	}
	.mf_imgs .mf_imgs_inner{
		width: calc(100% / 2);
	}
}

@media all and (-ms-high-contrast: none) {
	.page_header,
	.tenpo_page_header,
	.photo_page_header{
		margin-bottom: 100px;
	}
	/* .th_origin::before{
		bottom: -1px;
	}
	.th_origin::after{
		top: -1px;
	} */
}


/* content========================================================================= */
.entry-content,
.archive_div{
	text-align: left;
	width: 750px;
	padding: 30px;
}
.content_thumbnail_img{
	width:100%;
}
.page-header .page-title,
.entry-content h1{
	font-size: 2.5em;
	margin: 0.5em 0;
	/* border-left: 10px #f00 solid; */
	padding-left: 0.5em;
}
.h1_green{
	color:#009D83;
	border-left:10px solid #009D83;
}
.h1_brown{
	color:#A68B3B;
	border-left:10px solid #A68B3B;
}
.h1_brue{
	color:#004F86;
	border-left:10px solid #004F86;
}
.entry-content h2{
	font-size: 2.2em;
	line-height: 1.5em;
	margin: 1em 0;
}
.entry-content h3{
	font-size: 2em;
	line-height: 1.5em;
	margin: 1em 0;
}
.entry-content h4{
	font-size: 1.6em;
	line-height: 1.5em;
	margin: 1em 0;
}
.entry-content p{
	line-height: 1.5em;
	margin: 1em 0;
}
body.single #content nav.navigation h2{
	display: none;
}
.nav-links{
	display: flex;
	justify-content:space-between;
	width: 80%;
	margin: auto;
}
.nav-previous,
.nav-next{
	display: block;
	width: 200px;
	text-align: left;
	padding: 1em;
	background-color: rgba(200,200,200,0.5);
	border-radius: 5px;
	position: relative;
}
.nav-previous{
	padding-left: 3em;
}
.nav-next{
	padding-right: 3em;
}
.nav-previous::before{
	content: '＜';
	position: absolute;
	top: calc(50% - 0.5em);
	left: 10px;
	font-size: 1.5em;
}
.nav-next::before{
	content: '＞';
	position: absolute;
	top: calc(50% - 0.5em);
	right: 10px;
	font-size: 1.5em;
}
.sin_content_div{
	display: flex;
	justify-content:space-between;
}

/* asid================================================= */
.aside_nav{
	width: 250px;
	text-align: left;
	padding: 30px;
}
.aside_nav h2{
	background-color: #009D83;
	padding:0.5em;
	color: #fff;
	border-radius: 3px;
}
.aside_news_ul li a{
	display: block;
	color: #333;
	font-size: 12px;
	padding-left: 1.5em;
	position: relative;
	margin: 1em 0;
	text-decoration: none;
	list-style: none;
}
.aside_news_ul li a:hover{
	text-decoration: underline;
}
.aside_news_ul li a::before,
.asid_categories_ul li::before{
	content: "▶";
	margin-right: 5px;
	color: #009D83;
	position: absolute;
	left:1px;
	top: 0.1em;
}
.asid_categories{
	margin-top: 1em;
}
.asid_categories_ul li{
	display: block;
	font-size: 12px;
	padding-left: 1.5em;
	position: relative;
	margin: 1em 0;
	list-style: none;
}
.asid_categories_ul li a{
	text-decoration: none;
	color: #333;
}
.asid_categories_ul li a:hover{
	text-decoration:underline;
}

.archive_list{
	display: flex;
	flex-wrap: wrap;
	width: 750px;
}
.archive_list .archive_list_div{
	width: calc(100% / 3);
	margin: 1em;
}
.search_in_div{
	padding: 3em;
}
.search_in_div .archive_list_div{
	margin: 3em;
}
.non_search_div{
	display: flex;
	justify-content: center;
	margin: 2em auto;
	background-color: #009D83;
	padding: 7px;
	width: 190px;
	border-radius: 5em;
}
@media screen and (max-width: 900px) {
	.sin_content_div,
	.archive_list{
		flex-direction:column;
	}
	.archive_div,
	.archive_list,
	.archive_list .archive_list_div{
		width: 100%;
	}
	.archive_list .archive_list_div img{
		width: 100%;
		height: auto;
	}
	.archive_list .archive_list_div{
		margin: 1em 0;
	}
	.entry-content,
	.aside_nav{
		width: 100%;
	}
	.nav-links{
		width: 95%;
		font-size: 3vw;
	}
	.nav-previous, .nav-next{
		width: 45%;
	}
	.search_in_div{
		padding: 1em;
	}
	.search_in_div .archive_list_div{
		margin: 1em;
	}
	.non_search_div{
		display: none;
	}

}
.pagination_list {
	width: 100%;
}
.pagination_list .nav-links {
	max-width: 80%;
	justify-content :center;
}
.pagination_list .nav-links span,
.pagination_list .nav-links a{
	text-decoration: none;
	padding: 1em;
	background-color: #4a4747;
	color: #fff;
	border-radius: 5em;
	height: 3em;
	width: 3em;
	display: block;
	display: flex;
	align-items:center;
	justify-content:center;
	margin: 0 0.5em;
}
.pagination_list .nav-links span{
	background-color: #009D83;
}
.pagination_list .nav-links a:hover{
	/* text-decoration: underline; */
	background-color: #c6a61f;
}
.screen-reader-text{
	display: none;
}
.disnone{
	display: none;
}

  .recruit-bnrlist li {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .recruit-bnrlist li + li {
    margin-top: 2%;
  }

/* ==========================
   採用ページバナー配置用
   ========================== */

.recruit-section {
  max-width: 860px;
  margin: 100px auto 50px;
  padding: 40px 20px;
}

.recruit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.recruit-row.two-col .recruit-item {
  flex: 1 1 calc(50% - 10px);
}

.recruit-row.one-col .recruit-item {
  flex: 1 1 100%;
}

.recruit-item img {
  width: 100%;
  height: auto;
  display: block;
  /* border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
}

@media screen and (max-width: 640px) {
.recruit-section {
  margin: 50px auto 0;
  padding: 40px 20px;
}
  .recruit-row.two-col .recruit-item {
    flex: 1 1 100%;
  }
}