@charset "UTF-8";
/* CSS Document */

/*===================各ページ共通==================*/
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 15px;
    vertical-align: baseline;
    background: transparent;
	}

body {
    line-height: 170%;
	font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	}
	

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display: block;
	}

nav ul {
    list-style: none;
	}

blockquote, q {
    quotes: none;
	}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content: none;
	}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
	color: #121212;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
	}


table {
    border-collapse: collapse;
    border-spacing: 0;
	}


input, select {
    vertical-align: middle;
	}

em, strong {
    font-weight: normal;
    font-style: normal;
}

button {
    overflow: visible;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
}

a:hover {
	cursor:pointer;
    filter: alpha(opacity=60);        /* ie lt 8 */
    -ms-filter: "alpha(opacity=60)";  /* ie 8 */
    -moz-opacity:0.6;                 /* FF lt 1.5, Netscape */
    -khtml-opacity: 0.6;              /* Safari 1.x */
    opacity:0.6;
    zoom:1;
}

a,
a::before,
a::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}


/*==============================
	見出し
==============================*/
h2.title {
	font-size: 30px;
	color: #000;
	text-align: center;
}

h2.title span {
	font-weight: normal;
	font-size: 14px;
	color: #216eb4;
	display: block;
	margin-top: 10px;
}


/*==============================
	ボタン
==============================*/
a.button {
	text-decoration: none;
	color: #fff ;
	background-color: #216eb4;
	font-size: 12px;
	text-align: center;
	display: block;
	padding: 10px 0;
	border: 1px solid #216eb4 ;
}


/*=================================================

					共通header

=================================================*/
header {
	width: 100%;
	height: auto;
	background: #fff;
}

header #logo_nav {
	margin: 0 auto;
}

header #logo_nav .logo {
	width: 120px;
	margin: 10px auto;
}

header #logo_nav .logo h1 img {
	width: 120px;
	height: auto;
}


/*==============================
	グローバルメニュー
==============================*/
/* :::::: toggle button (right):::::: */
#navTgl {
  display: none;
}
 
label.open,
label.close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}
 
.open {
	line-height: 1;
  	z-index: 2;
  	width: 50px;
  	height: 50px;
  	color: white;
  	background-color: #216eb4;
  	font-size: 3em;
  	text-align: center;
  	-webkit-transition: background-color .6s, -webkit-transform .6s;
  	transition: background-color .6s, transform .6s;
}
 
#navTgl:checked + .open {
  background-color: #216eb4;
  -webkit-transform: translateX(-250px);
  transform: translateX(-250px);
}
 
.close {
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  transition: background-color .6s;
}
 
#navTgl:checked ~ .close {
  pointer-events: auto;
  background-color: rgba(0,0,0,.3);
}
 
/* :::::: drawer menu :::::: */
.gnav {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background-color: rgba(33,110,180,0.90);
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: -webkit-transform .6s;
  transition: transform .6s;
}
 
#navTgl:checked ~ .gnav {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
 
.gnav p,
.gnav li a {
  color: white;
}
 
.gnav p {
  text-align: center;
}
 
.gnav ul {
  padding: 0;
  list-style-type:none;
}
 
.gnav li {
  border-bottom: 1px solid rgba(187,226,241,.6);
  font-size: 15px;
  line-height: 1.4;
}

.gnav li a {
  display: block;
  padding: 1em 2em;
  text-decoration: none;
  transition: background-color .6s;
}
 
.gnav li a:hover {
	background-color: #002f80;
}

.gnav li span {
	display: none;
}

/*==============================
	電話＆お問い合わせ
==============================*/
header #logo_nav .header_call {
	background: #216eb4;
	overflow: hidden;
}

header #logo_nav .header_call a {
	float: left;
	width: 50%;
	height: 80px;
	padding: 10px;
	color: #fff;
	border-left: 1px solid #fff;
	box-sizing: border-box;
	text-align: center;
}

header #logo_nav .header_call a:first-child {
	border-left: none;
}

header #logo_nav .header_call .connect p.tell {
	font-size: 18px;
}

header #logo_nav .header_call .connect i {
	text-align: center;
	font-size: 30px;
	margin-bottom: 10px;
}

/*==============================
	Instagram＆YouTube
==============================*/
header #logo_nav .header_sns {
	display: none;
}

header #logo_nav .gnav ul li.pc_none .youtube {
	pointer-events: none;
	cursor: default;
}

header #logo_nav .gnav ul li.pc_none i {
	font-size: 20px;
	padding-right: 0.5em;
}


/*=================================================

					main#home

=================================================*/

/*==============================
	スライダー
==============================*/
main#home .slider img{
	width: 100%;
	height: auto;
	margin: 0 auto;
	text-align: center;
}


/*==============================
	キャッチコピー
==============================*/
main#home #catchcopy {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
	overflow: hidden;
}

main#home #catchcopy p.copy {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
}

main#home #catchcopy p.textbox {
	text-align: justify;
	margin-top: 20px;
}


/*==============================
	事業内容
==============================*/
main#home #services_wrap {
	width: 100%;
	height: auto;
	background: #f0f0f0;
	overflow:hidden;
}

main#home #services_wrap h2{
	text-align: center;
	padding: 50px 0 0;
}

main#home #services_wrap .services{
	margin: 0 auto;
	padding: 20px;
	overflow: hidden;
}


main#home #services_wrap .services .chilled{
	width: 100%;
	height: auto;
	padding: 20px;
	margin: 10px auto;
	background: #fff;
	box-sizing: border-box;
	border-radius: 5px;
	/* box-shadow */
	box-shadow:0px 0px 5px 0px #a8a8a8;
	-moz-box-shadow:0px 0px 5px 0px #a8a8a8;
	-webkit-box-shadow:0px 0px 5px 0px #a8a8a8;
}

main#home #services_wrap .services .chilled img{
	height: 100px;
	margin: 20px auto;
	display: block;
}

main#home #services_wrap .services .chilled h3{
	font-size: 19px;
	text-align: center;
}

main#home #services_wrap .services .chilled p.textbox{
	text-align: justify;
	margin: 10px 0;
	font-size: 14px;
}

main#home #services_wrap a.se_button {
	display: block;
	width: 90%;
	margin: 0 auto 50px;
    padding: 10px 0;
	text-align: center;
    color: #FFF;
	background: #216eb4;
    border-bottom: solid 4px #134470;
    border-radius: 3px;
}




/*==============================
	ニュース
==============================*/
main#home #news {
	width: 90%;
	margin: 0 auto;
	padding: 50px 0;
	overflow: hidden;
}

main#home #news dl {
	width: 100%;
	margin: 20px 0 0;
}

main#home #news dl dd {
	padding-bottom: 10px;
	margin-bottom: 10px;
	text-align: justify;
	border-bottom: 1px dotted #cacaca;
}


/*==============================
	会社概要&FAQ
==============================*/
main#home #com_faq {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
}

main#home #com_faq .chilled {
	width: 100%;
	height: 190px;
	float: left;
}

main#home #com_faq .company {
	background: url(../images/index_pl.jpg) no-repeat;
	background-size: 100%;
	margin-right: 50px;
	border-bottom: 1px solid #ccc;
}

main#home #com_faq .faq {
	background: url(../images/index_qa.jpg) no-repeat;
	background-size: 100%;
	background-position: 30px 0;
}

main#home #com_faq .chilled .block {
	width: 45%;
	height: 190px;
	padding: 20px 20px;
	color: #fff;
	background: #216eb4;
	box-sizing: border-box;
}

main#home #com_faq .chilled .block h2 {
	color: #fff;
	font-size: 6vw;
	text-align: left;
}

main#home #com_faq .chilled .block h2 span{
	color: #fff;
	margin-top: 5px;
}

main#home #com_faq .chilled .block a{
	color: #fff;
	background: rgba(255,255,255,0.3);
	border: 1px solid #fff;
	margin-top: 10px;
}





/*=================================================

			.common contents&side_menu

=================================================*/
.common {
	width: 100%;
	margin: 30px auto 50px;
}

.common #contents {
	width: 90%;
	margin: 0 auto;
}

.common #side_menu {
	width: 100%;
	margin: 0 auto;
}


/*==============================
	サイドメニュー
==============================*/
.common #side_menu h3 {
	width: 100%;
	padding: 15px 0;
	text-align: center;
	letter-spacing: 3px;
	font: 16px normal;
	color: #fff;
	background: #216EB4;
}

.common #side_menu ul.list1 {
  	
}

.common #side_menu ul.list1 li {
	border-bottom: 1px dotted #ccc;
}

.common #side_menu ul.list1 li a {
	width: 100%;
	display: inline-block;
	padding: 10px 0 10px 20px;
	position: relative;
}

.common #side_menu ul.list1 li a:before {
	content: '';
	background: url('../images/chevron-right-solid.svg') no-repeat;
  	background-size: contain;
  	height: 10px;
  	width: 6px;
	position: absolute;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto;
}

.common #side_menu ul.list1 li.green a:before {
  color: #00a79b; 
}

.common #side_menu ul.list1 li.orange a:before {
  color: #f5911e; 
}

.common #side_menu ul.list1 li a:hover {
	opacity: 1;
	color: #216EB4;
 	background: repeating-linear-gradient(
  	45deg,
  	#fff,
  	#fff 5px,
  	#bbe2f1 5px,
  	#bbe2f1 6px
	);
}

/*==============================
	質問＆問い合わせ
==============================*/
.common #side_menu ul.list2 li  {
	margin-bottom: 1px;
}

.common #side_menu ul.list2 li img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}


/*==============================
	ページタイトル
==============================*/
main .main_img .title {
	width: 90%;
	margin: 0 auto;
	color: #fff;
}

main .main_img .title h2 {
	padding-top: 60px;
	text-align: center;
	font-size: 35px;
	letter-spacing: 6px;
	/* text-shadow */
	text-shadow:0px 0px 3px #000;
	-moz-text-shadow:0px 0px 3px #000;
	-webkit-text-shadow:0px 0px 3px #000;
}


/*==============================
	セクションとタイトル
==============================*/
#contents section {
	margin-bottom: 50px;
}

#contents section h3.title {
    margin-bottom: 20px;
	padding: 0 0 5px 12px;
	font-size: 19px;
	border-left: 6px solid #216eb4;
	border-bottom: solid 2px #cacaca;
	position: relative;
}
#contents section h3.title:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 2px #216eb4;
	bottom: -2px;
	left: -6px;
	width: 40%;
}





/*=================================================

					main#company

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#company .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	会社概要&沿革　テーブル
==============================*/
main#company #contents section:nth-of-type(1) div {
	overflow: hidden;
}

main#company #contents section:nth-of-type(1) div figure {
	width: 60%;
	margin: 10px auto 30px;
}
main#company #contents section:nth-of-type(1) div figure img {
	width: 100%;
	height: auto;
}

main#company #contents section table {
	width: 100%;
	border-bottom: 1px dotted #ccc;
	box-sizing: border-box;
}

main#company #contents section table th {
	display: block;
	padding: 5px 0 5px 10px;
	text-align: left;
	color: #fff;
	background: #216eb4;
}

main#company #contents section table td {
	display: block;
	padding: 15px 0 15px 10px;
	text-align: left;
}


/*==============================
	アクセス
==============================*/
main#company #contents section iframe {
	width: 100%;
	height: 300px;
}


/*==============================
	ご挨拶
==============================*/
main#company #contents section p.textbox {
	text-align: justify;
	line-height: 2.1;
	letter-spacing: 1.5px;
}

main#company #contents section p.name {
	margin-top: 30px;
	text-align: right;
}





/*=================================================

					main#service

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#service .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	事業内容　一覧ページ
==============================*/
main#service #contents {
	overflow: hidden;
}

main#service #contents a.wrap {
	width: 100%;
	height: auto;
	padding: 20px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	box-sizing: border-box;
	float: left;
}

main#service #contents a.wrap .chilled img {
	width: 100%;
	height: auto;
}

main#service #contents a.wrap .chilled h3 {
	margin-top: 5px;
	padding-bottom: 5px;
	font-size: 17px;
	border-bottom: solid 3px #cacaca;
	position: relative;
}

main#service #contents a.wrap .chilled h3:before {
	content: '';
	background: url('../images/chevron-circle-right-solid.svg') no-repeat;
  	background-size: contain;
  	height: 17px;
  	width: 17px;
	position: absolute;
	top: 5px;
	right: 0;
	color: #216eb4;
}
main#service #contents a.wrap .chilled h3:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #216eb4;
	bottom: -3px;
	width: 40%;
}

main#service #contents a.wrap .chilled h3.green:before {
  color: #00a79b;
}
main#service #contents a.wrap .chilled h3.green:after {
	border-bottom: solid 3px #00a79b;
}

main#service #contents a.wrap .chilled h3.orange:before {
  	color: #f5911e;
}
main#service #contents a.wrap .chilled h3.orange:after {
	border-bottom: solid 3px #f5911e;
}

main#service #contents a.wrap .chilled p.textbox {
	margin: 15px 0 0;
	line-height: 1.5;
	text-align: justify;
}


/*==============================
	事業内容　詳細ページ
==============================*/
main#service #contents h3.title {
	padding: 10px 5px;
	font-size: 19px;
	background: #fafafa;
	border-top: solid 3px #cacaca;
	border-bottom: solid 1px #e4e4e4;
	position: relative;
}
main#service #contents h3.title:after {
	position: absolute;
	content: " ";
	display: block;
	border-top: solid 3px #216eb4;
	top: -3px;
	left: 0;
	width: 30%;
}
main#service #contents h3.top_green:after {
	border-top: solid 3px #00a79b;
}
main#service #contents h3.top_orange:after {
	border-top: solid 3px #f5911e;
}

main#service #contents .description {
	margin: 20px 0 50px;
}

main#service #contents .description img {
	width: 100%;
	height: auto;
}

main#service #contents .description p.textbox {
	width: 100%;
	margin-top: 10px;
	text-align: justify;
}

main#service #contents .process {
	margin-bottom: 50px;
}

main#service #contents .process h4 {
	font-size: 19px;
	padding-left: .5em;
	margin-bottom: 10px;
	line-height: 1;
	border-left: 5px solid #216EB4;
}

main#service #contents .process .flow img {
	width: 40%;
	margin-bottom: 20px;
	vertical-align: middle;
}

main#service #contents .process .flow i {
	font-size: 24px;
	color: #216EB4;
	margin: 0 5px;
}

/*============
	戻るボタン
============*/
main#service #contents a._back {
	display: block;
    padding: 10px 0;
	margin: 50px 0 20px;
	text-align: center;
    color: #FFF;
	background: #216eb4;
    border-bottom: solid 4px #134470;
    border-radius: 3px;
}

main#service a._back i {
	margin-right: 10px;
}





/*=================================================

					main#works

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#works .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	施工実績
==============================*/
main#works #contents section {
	overflow: hidden;
}





/*=================================================

					main#recruit

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#recruit .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	求人案内
==============================*/
main#recruit #contents section {
	overflow: hidden;
}

main#recruit #contents section table {
	width: 100%;
	margin-top: 20px;
	border-top: 1px dotted #ccc;
	box-sizing: border-box;
}
main#recruit #contents section table th,
main#recruit #contents section table td {
	display: block;
	text-align: left;
	border-bottom: 1px dotted #ccc;
	padding: 5px 0 5px 20px;
}
main#recruit #contents section table th {
	color: #fff;
	background: #216eb4;
}




/*=================================================

					main#contact

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#contact .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	お問い合わせ
==============================*/
main#contact #contents section {
	overflow: hidden;
}

main#contact #contents section a.button {
	margin-top: 20px;
	position: relative;
}
main#contact #contents section a.button::before {
	content: '';
	background: url(../images/chevron-right-solid_h.svg) no-repeat;
	background-size: contain;
	width: 7px;
	height: 10px;
	position: absolute;
	top: 0;
	right: 15px;
	bottom: 0;
	margin: auto;
}
main#contact #contents section a.button.blank::before {
	content: '';
	background: url(../images/window_h.svg) no-repeat;
	background-size: contain;
	width: 12px;
	height: 10px;
}


main#contact #contents section p {
	text-align: justify;
}

main#contact #contents section p br {
	display: none;
}

main#contact #contents section p.tell {
	font-weight: bold;
	font-size: 35px;
	line-height: 1.7;
}

main#contact #contents section p.tell i {
	font-size: 25px;
	margin-right: 15px;
}



/*=================================================

					main#policy

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#policy .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}


/*==============================
	ご質問
==============================*/
main#policy #contents section {
	overflow: hidden;
}

main#policy #contents section h4 {
	margin: 20px 0 5px;
	font-size: 18px;
	color: #216eb4;
}

main#policy #contents section p:nth-of-type(1) {
	margin: 0;
}

main#policy #contents section p {
	margin: 5px 0 0 1em;
}

main#policy #contents section dl {
	margin: 0 0 0 1em;
}
main#policy #contents section dl dt {
	margin: 10px 0 0;
	font-weight: bold;
}
main#policy #contents section dl dd {
	margin: 0 0 0 1em;
}

main#policy #contents section div {
	width: 200px;
	margin-top: 50px;
	margin-left: auto;
}



/*=================================================

					main#info

=================================================*/
/*==============================
	トップイメージ（タイトル下画像）
==============================*/
main#info .main_img {
	width: 100%;
	height: 150px;
	background: url(../images/index_main1.jpg) no-repeat center;
	background-size: cover;
}

/*==============================
	お知らせ
==============================*/
main#info #contents section {
	overflow: hidden;
}

main#info #contents section span.day {
	margin: -15px 0 0;
	letter-spacing: 2px;
	font-size: 12px;
	text-align: right;
	display: block;
}

main#info #contents section div {
	margin-top: 10px;
	overflow: hidden;
}

main#info #contents section div span {
	text-align: justify;
}

/*====== 写真1枚（縦）+テキスト =====*/
main#info #contents section div.p1Ltxt p {
	margin-top: 5px;
}
main#info #contents section div.p1Ltxt img {
	max-width: 30%;
	margin: 0 30px 0 0;
	float: left;
}
main#info #contents section div.p1Ltxt span {
	max-width: 60%;
	float: left;
}

/*====== 写真4枚+テキスト =====*/
main#info #contents section div.p4txt p {
	margin-top: 5px;
}

main#info #contents section div.p4txt img {
	max-width: 45%;
	max-height: 125px;
	margin: 0 2% 3% 2%;
	float: left;
}

main#info #contents section div.p4txt span.w400 {
	max-width: 100%;
	margin-left: 10px;
	float: left;
}

/*====== 写真5枚+テキスト =====*/
main#info #contents section div.p5txt p {
	margin-top: 5px;
}

main#info #contents section div.p5txt img {
	max-width: 48%;
	margin: 0 2% 2% 0;
	vertical-align: bottom;
}



/*=================================================

					共通footer

=================================================*/
footer {
}

footer #wrap {
	width: 90%;
	margin: 0 auto;
}


/*==============================
	ロゴ
==============================*/
footer #wrap .logo {
	width: 90%;
	height: auto;
	margin: 30px auto;
	color: #216eb4;
	overflow: hidden;
}

footer #wrap .logo img {
	width: 15%;
	float: left;
}

footer #wrap .logo h1{
	display: block;
	font-size: 10vw;
	margin-top: 10px;
}


footer #wrap .logo h1 span{
	display: block;
	font-size: 5vw;
	line-height: 1;
	margin: -1.5vw 5px 10px 10px;
	float: left;
}



/*==============================
	住所
==============================*/
footer #wrap .address address {
	font-size: 14px;
	font-style: normal;
	margin-bottom: 30px;
}

footer #wrap .address address dl  {
	text-align: center;
}

footer #wrap .address address dl dd {
	margin-bottom: 10px;
}

footer #wrap .address address dl dd span.space {
	display: none;
}


/*==============================
	フッターメニュー
==============================*/
footer #wrap .nav {
	clear: both;
	width: 100%;
	padding-bottom: 30px;
	border-top: 1px solid #ccc;
	overflow: hidden;
}

footer #wrap .nav ul {
	
}

footer #wrap .nav ul li {
	border-bottom: 1px solid #ccc;
}


footer #wrap .nav ul li a {
	display: block;
	padding: 10px 0.5em;
	position: relative;
}

footer #wrap .nav ul li a:before {
	content: '';
	background: url('../images/chevron-right-solid.svg') no-repeat;
  	background-size: contain;
  	height: 10px;
  	width: 6px;
	position: absolute;
	top: 0;
	right: 0.5em;
	bottom: 0;
	margin: auto;
}


/*==============================
	コピーライト
==============================*/
footer .copyright {
	width: 100%;
	height: 60px;
	background: #216eb4;
	overflow: hidden; 
}

footer .copyright p {
	margin: 15px 5%;
	float: left;
	color: #fff;
	font-size: 11px;
	line-height: 1.5;
}


/*==============================
	ページトップ
==============================*/
footer .copyright a.pagetop {
	display: block;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 1;
	color: #fff;
	background: #002f80;
	box-sizing: border-box;
	float: right;
}

footer .copyright a.pagetop i {
	font-size: 30px;
}

footer .copyright a.pagetop span {
	display: block;
	font-weight: bold;
}

/*==============================
	投稿一覧（ローディング）
==============================*/
#loading {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #333;
}

/* 簡易スピナー */
#loading::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  border: 2px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* =========================
   ページネーション スマホ版
========================= */
.pagination {
  text-align: center;
  margin: 30px 0;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 6px 10px;
  background: #f0f0f0;
  border-radius: 4px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s;
}

.pagination .page-numbers:hover {
  background: #ddd;
}

.pagination .current {
  background: #216eb4;
  color: #fff;
  font-weight: bold;
}
