@charset "utf-8";
.page{}

.bg-white{background-color: #fff;padding: 10px 0; }
/*ページタイトル*/
.pagetitle {
padding: 0;
position: relative;
height: 360px;
box-sizing: border-box;
width:100% ; 
display: flex;
align-items: center;
justify-content: center;

background:transparent url(../images/ha-img.png) no-repeat center top 70px;
background-size:150px auto;
}


.pagetitle h1 {
color:#4D4D4D; letter-spacing: 0.1em;
font-size:32px;line-height:1.3;
font-weight:normal;
text-align:center;margin-top: -40px;
}


/*レスポンシブ対応------------------------------------------------------------------*/

@media screen and (max-width: 920px){
.pagetitle {
height: 300px;
background:transparent url(../images/ha-img.png) no-repeat center top 20px;
background-size:150px auto;
}
.pagetitle h1 {padding: 0 15px;font-size:26px;margin-top: -60px;}
}

@media screen and (max-width: 480px){
.pagetitle {height: auto;
background:transparent url(../images/ha-img.png) no-repeat center top 0;
background-size:80px auto;
}
.pagetitle h1 {margin:0 0 50px 0;padding: 30px 30px 30px 15px;font-size:20px;}
}
/*--------------------------------------------------------------------------------*/

#breadcrumbs{font-size: 11px;margin: 20px 30px !important;}
#breadcrumbs ul li{display: inline-block;vertical-align: top;}

/*▼中面設定*/
.conts .all-width{margin:0 auto;line-height:2.0;width: 1000px;min-width: 1000px;font-size:90%;padding:50px 0;font-family: "Chikugo", sans-serif;letter-spacing:0.1em;}

/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 1100px){
.conts .all-width{display: block;margin: 0 auto;width:92%;min-width:92%;}
}
@media screen and (max-width: 480px){
#breadcrumbs{font-size: 10px;margin: 15px 15px !important;}
}
/*--------------------------------------------------------------------------------*/

/* 見出しh2〜h6 */
.conts h2 {
   position: relative;
   padding: 0.5em 0; /* 内側余白調整 */
   border-bottom: solid 1px #e0e0e0; /* 下線１：実線・太さ・色 */
   color:#4D4D4D; /* 文字色*/
  font-size: 24px;font-weight:normal;margin-bottom:40px;
  line-height: 1.4;font-family: "Noto Sans JP", sans-serif;
}

.conts h2:after{
   position: absolute;
   content: '';
   display: block;
   border-bottom: solid 1px #4D4D4D; /* 下線２：実線・太さ・色 */
   bottom:-1px;
   width:30%; /* 下線２の幅*/
}

.conts h3{font-size: 20px !important;letter-spacing: normal;margin:45px 0 15px 0;padding:6px 18px;line-height: 1.3;letter-spacing:0.05em;background:#F9FAFF;font-weight:normal;font-family: "Noto Sans JP", sans-serif;}
.conts h4{color: #4D4D4D;font-size: 18px !important;letter-spacing:0.05em;line-height: 1.3;margin:45px 0 15px 0;border-left: 6px solid #939393;padding:0px 10px 0px 10px;font-weight:normal;font-family: "Noto Sans JP", sans-serif;}

/*投稿記事枠画像最大値*/
.conts img{
max-width: 100%;
height: auto !important;
padding-bottom: 2px;
}

/*投稿記事枠画像の回り込み*/
.alignleft{
float: left;
margin: 3px 20px 3px 0;
}
.aligncenter{
display: block;
margin: 0 auto 10px auto;
}
.alignright{
float: right;
margin: 3px 0 3px 20px;
}
.alignnone{display: block;}

/*中ページフッタバナー無し*/
#no-banner{margin:100px 0 0 0;}

/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
.conts h2{font-size: 21px !important;}
.conts h3{font-size: 20px !important;}
}
@media screen and (max-width: 480px) {
.conts h2{font-size: 20px !important;margin-bottom:40px;}
.conts h3{font-size: 18px !important;}
.conts h4{font-size: 17px !important;}
/*中ページフッタバナー無し*/
#no-banner{margin:50px 0 0 0;}
}

/*--------------------------------------------------------------------------------*/

/*リスト*/
.conts ul {
background: none;
list-style-type: none;
list-style-position: outside;
padding: 0;
margin-bottom: 2em;
}
.conts ul li {
position: relative;line-height: 1.8;
padding-left: 1.6em;line-height: 1.3;
margin-bottom: 0.8em;
}
.conts ul li:before {
content: "■";
color:#939393;
position: absolute;
left: 0;
top: 0;
}

/*ページ内カテゴリ名のulli設定を削除*/
.conts .category ul {
background: none;
list-style-type: none;
list-style-position: outside;
padding: 0;
margin-bottom: 0;
}
.conts .category ul li {
position: relative;line-height: 1;
padding-left: 0;
}

.conts .category ul li:before {
content: "";
color:none;
position: static;
left: 0;
top: 0;

}

/*ナンバー付リスト*/
.conts ol {
counter-reset: ordered_num;
background: none;
overflow: hidden;
margin-bottom: 1.2em;
}
.conts ol li {
text-indent: -1.7em;
padding-left: 1.7em;
margin-bottom: 0.5em;line-height:1.3;
}
.conts ol li:before {
counter-increment: ordered_num;
content: counter(ordered_num);
font-weight:normal;
background-color: #939393;
display: inline-block;
color: #fff;
width: 1.5em;
height: 1.5em;
line-height: 1.6em;
margin-right: 0.6em; 
text-indent: 0;
text-align: center;
vertical-align:middle; 
margin-bottom:0.3em;
}


/* テーブル */
table {
width: 100%;
padding: 0;
margin-bottom: 2.5em;
border-collapse: collapse;
vertical-align: top;
border: 1px solid #ddd;line-height:1.6;font-size:14px;
}
table caption {
font-weight: bold;
background-color: transparent;
text-align: center;
padding: 0.7em 0.7em;
 font-size: 20px;
}
table th, table td {
border: 1px solid #ddd;
padding: 1.2em 1.2em;font-size: 1.2rem;font-size:14px;
}
table th {
background: #F9FAFF;
font-weight: normal;
width: 30%;
}
table thead th {
font-size: 0.9rem;
background-color:  #F9FAFF;
color: #fff;
}
.table_line {
border: none;
}
.table_line th {
background: none;
border-left: 0;
border-right: 0;
text-align: left;
background: #F9FAFF
}
.table_line td {
border-left: 0;
border-right: 0;
vertical-align: middle;
}
/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 540px) {
table th, table td {font-size:14px;}
table th {white-space: normal;width: 32%;}
}
/*--------------------------------------------------------------------------------*/

/*背景色ベージュバック枠*/
.bg-box{background:#Fbfbfb !important ;padding:30px 40px;}
/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
.bg-box{padding:20px 25px;}
}
/*--------------------------------------------------------------------------------*/

/*お問い合わせフォーム*/
.formbox textarea{width:100%;height: 7em;}
.formbox input{width:60%;}
.formbox input,textarea{
padding: 6px;
border: 1px solid #ccc;
font-size: 16px ;
}
.formbox select{font-size: 17px !important;}
.formbox input[type="submit"]{
-webkit-appearance: none;

}
.formbox dl{margin: 25px 0 0 0;}
.formbox dd{margin: 0 0 15px 0;}
.formbox .formbuttan{text-align: center;margin: 20px 0;}
.formbox .formbuttan input{
color: #fff;padding: 9px 0 !important;border: 1px solid #4D4D4D; width: 386px !important;font-size:14px !important;
background:#4D4D4D;font-family: "Chikugo", sans-serif;letter-spacing:0.1em;
}
.formbox .formbuttan input:hover{
color: #4D4D4D;padding: 9px 0 !important;border: 1px solid #4D4D4D; width: 386px !important;

background:#fff url(../img/arrow-orange.png) no-repeat right 18px center;
background-size:7px auto;
cursor:pointer;}


/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 600px){
/*お問い合わせフォーム*/
.formbox input{width:100%;}
.formbox .formbuttan input{width: 100% !important;padding: 9px 0 !important;}
.formbox .formbuttan input:hover{ width: 100% !important;}
}
@media screen and (max-width: 480px){
}
/*--------------------------------------------------------------------------------*/

.link-btn{
display: inline-block;vertical-align: middle;
line-height: 1;
max-width:500px;
min-width:250px;
font-size:14px !important;background-color:#4D4D4D;
border: 1px solid #4D4D4D;
}
.link-btn a{padding: 10px  !important;display: block;color:#fff;}
.link-btn a:hover{background-color: #fff;color:#4D4D4D;text-decoration:none;}


/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 600px){
.conts .link-btn{min-width:100%;}
}
@media screen and (max-width: 480px){
.conts .link-btn a{width: 100% !important;padding: 20px 0 !important;
font-size:14px !important;}
}
/*--------------------------------------------------------------------------------*/

/*アーカイブ（カテゴリ一覧）ページ*/
.listbox{display: inline-block;vertical-align: top;
padding-bottom: 25px;margin-bottom: 25px;width:100% !important;border-bottom: 1px solid #3F665C;}

.listbox .thumb{float: left;}
.listbox .thumb img{margin: 0 1em 0 0;width:100px !important; height: 100px !important; display: inline-block;vertical-align: top;object-fit: cover; }
.listbox .title{font-size: 16px;line-height: 1.3; margin: 0 0 10px 0;color:#3F665C;}
.listbox .title br{display: none;}
.listbox a{text-decoration:none;color:#3F665C;}
.listbox .date{font-size: 12px;font-family: "Noto-m", sans-serif;}

.listbox .date{display: inline-block;}
.listbox .category{display: inline-block;font-family: "Noto-m", sans-serif;font-size: 12px;}
.listbox .category p{display: inline-block;color:#8AA6FF;margin-left: 25px;}
.listbox .category .post-categories{display: inline-block;}
.listbox .category a{color:#8aa6ff;}


/*ギャラリーアーカイブ（一覧）ページ*/
.g-listbox{
display: inline-block;vertical-align: top;
padding: 0;width:31.2% !important;
margin: 0 0.8% 30px 0.8%;
line-height: 1.4;
}
.g-listbox a{text-decoration:none;color:#000;}
.g-listbox .thumb{margin-bottom: 10px;}
.g-listbox .date{font-size: 12px;margin-top: 10px;}


/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 768px){
.g-listbox{
display: inline-block;vertical-align: top;
padding: 0;width:31.2% !important;
margin: 0 0.6% 30px 0.6%;
line-height: 1.4;
}
}
@media screen and (max-width: 600px){
.listbox .title{line-height: 1.3; line-height: 1.3;margin: 5px 0 10px 0;}
}
@media screen and (max-width: 480px){
.listbox .thumb img{width: 100px !important; height: 100px !important; display: inline-block;vertical-align: top;}

.g-listbox{
display: inline-block;vertical-align: top;
padding: 0;width:48% !important;
margin: 0 0.5% 30px 0.5%;
line-height: 1.4;
}
}
/*--------------------------------------------------------------------------------*/

.box3-list{display: inline-block;font-size: 14px;line-height: 1.3;width: 31.6% !important;margin: 0 7px 15px 7px;background-color: #fff;filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.1));vertical-align: top;}
.box3-list img{width: ;}
.box3-list .text{padding: 14px;}
/*レスポンシブ対応------------------------------------------------------------------*/
@media screen and (max-width: 768px){
.box3-list,.box3-list-last{display: inline-block;font-size: 14px;line-height: 1.3;width: 47.5% !important;margin: 0 0.8% 15px 0.8%;background-color: #fff;filter: }
}
@media screen and (max-width: 480px){
.box3-list,.box3-list-last{display: inline-block;font-size: 14px;line-height: 1.3;width: 100% !important;margin: 0 0 15px 0.8%;background-color: #fff;filter: }
}
/*--------------------------------------------------------------------------------*/

/*ページャー*/
.pager{
text-align: center;
font-size: 13px;
padding:0;margin-top: 0;
}
.pager a{color: #000;}
.pager h2{display: none !important;}

.wp-pagenavi {text-align: center;display: block;margin-top: 5px;}
.wp-pagenavi a, .wp-pagenavi span {
text-decoration: none;
border: none;
padding: 2px 3px;
margin: 0px;font-size: 14px;display: inline-block;
}

.p-footer {margin: 30px 0 0 0;}
.p-footer .tenline {margin: 5px 0 10px 0;border: none;}
.p-footer .date {margin-right: 5px;font-size: 13px;display: inline-block;}
.p-footer .category {color:#1B70B5;font-size:12px;min-width:80px;line-height:1;display: inline-block;}
.p-footer .tag {padding: 0 8px;display: inline-block;font-size: 13px;line-height: 1.3;border-left: 1px solid #000;}

