<?php
/**
 * Template part for displaying posts
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package WordPress
 * @subpackage Twenty_Twenty_One
 * @since 1.0.0
 */

?>

			<section class="top_nyusatsu clearfix fadein" id="nyusatsu_kokoku">
				<h2><img src="<?php echo home_url('/'); ?>img/top_page/top_nyusatsu_ttl.jpg" width="600" height="63" alt="入札公告"></h2>
				<p>入札公告を掲載しています。入札を希望される方は各公告をご覧のうえご参加ください。</p>
				<ul class="clearfix">
					<?php query_posts('category_name=crear_kurosaki,care_plan,crear,morinoie_bekkan,morinoie,mukauno-sato&posts_per_page=100'); ?>
					<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
						<li><h3>●<?php the_title();?><?php if ( in_category('end') ): ?><span class="chushaku">　→　終了しました</span><?php endif; ?></h3>
						<dl>
							<dt><?php the_time('Y年n月j日'); ?></dt>
							<dd><?php
							  $category = get_the_category();
							  $cat_name = $category[0]->cat_name;
							  echo $cat_name;
							?></dd>
						</dl>
						<p class="kuwashiku"><a href="<?php the_permalink(); ?>">詳しくはこちら >></a></p>
					</li>
					<?php endwhile; endif; ?>
				</ul>
			</section>
<?php wp_reset_query(); ?>