@charset "utf-8";
/*各cssの読み込み*/
/*トップページのメイン画像用css*/
/*トップページのメインイメージ
---------------------------------------------------------------------------*/
/*アニメーションのキーフレーム。透明(opacity:0)から色がつく(opacity:1)までのアニメーションです。*/
@keyframes img {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}

/*画像全体を囲むブロック*/
#mainimg {
    overflow: hidden;
    margin-bottom: 40px;	/*画像の下に空けるスペース。下のコンテンツとの間の余白です。*/
    background: url(../images/mainimg_bg.png) no-repeat center center / cover;	/*アニメーションがスタートする前の土台画像の読み込み*/
}
/*画像１枚ごとの指定*/
#mainimg img {
    width: 20%;			/*画像の幅。５枚なので100÷5=20です。*/
    float: left;		/*左に回り込み*/
    transition: 0.4s;	/*マウスオン時に0.4秒かけて動く(少しだけ大きくなる)指定*/
    transform-origin: left top;	/*マウスオン時に画像が少しだけ大きくなる際の基準点*/
    animation-name: img;		/*アニメーションのキーフレームの名前。上の@keyframesの横の名前です。*/
    animation-duration: 0.5S;	/*アニメーション(上のkeyframe)を実行する時間。*/
    animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
}
/*画像にリンクをはった際のマウスオン時設定*/
#mainimg a img:hover {
    opacity: 1;
    position: relative;z-index: 1;
    transform: scale(1.04);	/*画像を104%に拡大する*/
}
/*１枚目画像*/
#img1 {
    animation-delay: 2s;	/*2秒遅れてアニメーションをスタート*/
}
/*２枚目画像*/
#img2 {
    animation-delay: 2.2s;	/*2.2秒遅れてアニメーションをスタート*/
}
/*３枚目画像*/
#img3 {
    animation-delay: 2.4s;	/*2.4秒遅れてアニメーションをスタート*/
}
/*４枚目画像*/
#img4 {
    animation-delay: 2.6s;	/*2.6秒遅れてアニメーションをスタート*/
}
/*５枚目画像*/
#img5 {
    animation-delay: 2.8s;	/*2.8秒遅れてアニメーションをスタート*/
}

/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){
    /*画像全体を囲むブロック*/
    #mainimg {
        margin-bottom: 20px;	/*画像の下に空けるスペース。下のコンテンツとの間の余白です。*/
    }
}

/*
DEFAULT
*/
body {
    margin: 0px;
    padding: 0px;
    color: #333;
    font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 2;
    background: #fff;
    -webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {
    margin: 0px;
    padding: 0px;
    font-size: 100%;
    font-weight: normal;
}
ul {
    list-style-type: none;
}
img {
    border: none;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
@media screen and (min-width:600px) {
    img.picture_data_office {
        width:200px;
        max-height:200px;
    }
    img.picture_data_office.big {
        max-height:unset;/*20191127*/
    }
    img.noimg {
        width:200px;
    }
    .list .text {
        width:78%;
    }
    img.side_bar {
        max-height: 100px;
    }
    img.user {
        width:100px;
        height:100px;
        display:block;
        margin:0 auto;
    }
    img.company_profile {
        display:inline;
        float:left;
        margin-right: 30px;
        max-width:40%;
    }
    span.text_user {
        text-align: center;
        display:block;
    }
}
table {
    border-collapse:collapse;
    font-size: 100%;
    border-spacing: 0;
}
iframe {
    /*width: 100%;削除20200206*/
}
iframe.gmap{
    width: 100%;
}
video,audio {
    max-width: 100%;
}
a {
    color: #333;
    transition: 0.5s;
}
.site-header {
    position: relative;
}

header {
    background: #fff;	/*背景色*/
    height: 100px;		/*高さ*/
    color: #333;		/*文字色*/
}
/*hover*/
a:hover {
    color: #8cc167;
    text-decoration: none;
}
/*マウスオン時の画像*/
a:hover img {
    opacity: 0.8;	/*80%色がついた状態*/
}
/*
HEADER
*/
header #logo {
    /*width: 350px;*/		/*ロゴ画像の幅*/
    display: flex;
    align-items: center;
    gap: 1em;
    float: left;		/*左に回り込み*/
    margin-top: 30px;	/*ロゴの上にあける余白。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
    margin-left: 3%;	/*ロゴの左側にあける余白。*/
    font-size: 25px;
}
header .header-logo-link {
    display: flex;
    align-items: center;
}
header .header-national-link {
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
    color: #333;
    text-decoration: underline;
}
header .header-national-link:hover {
    color: #8cc167;
}
/*ログイン（ヘッダー右側のログイン）*/
header .login a {
    display: inline-block;text-decoration: none;
    float: right;		/*右に回り込み*/
    margin-right: 3%;	/*右に空けるスペース*/
    margin-top: 30px;	/*上に空けるスペース。ヘッダー内の上下の配置バランスをここで調整して下さい。*/
    border: 1px solid #fe7200;	/*枠線の幅、線種、色*/
    background: #fe7200;/*背景色（古いブラウザ用）*/
    background: #fe7200 url(../images/icon_login.png) no-repeat 20px 11px / 12px;/*背景色、アイコンの読み込み。左から25px、上から11pxの場所に配置。画像幅は12px。*/
    color: #fff;	/*文字色*/
    padding: 5px 30px 5px 50px;	/*上、右、下、左へのボタン内の余白*/
    border-radius: 4px;		/*角丸のサイズ*/
    font-size: 14px;		/*文字サイズ*/
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅*/
    letter-spacing: 0.2em;	/*文字間隔を少し広くとる指定*/
}
/*マウスオン時*/
header .login a:hover {
    background-color: #fe9b00;	/*背景色だけ変更する*/
    color: #fff;	/*も地色*/
}

/*
TABLE
*/

/*
ID
*/
/*
CLASS
*/
.inner {
    max-width: 1300px;	/*サイトの最大幅*/
    margin: 0 auto;
}
span.error,
div.error {
    color:red;
}
.top_head {
    margin:0;
    padding:0;
    font-size:0.7em;
    color:#999;
    width:100%;
    display:block;
    height:1em;
}
.top_logo {
    width:50px;
    box-shadow:none;
}
ul.cities{
    margin-bottom: 20px;
    list-style:none;
    justify-content: space-around;
    display:flex;
    flex-wrap: wrap;
}
li.city_list {
    background-color: #f7f1ad;
    margin: 5px;
}
li.city_list a{
    text-align: center;
    padding: 10px 20px 0;
    height: 36px;
    cursor: pointer;
    display:block;
}
li.city_list a:hover{
    opacity:0.8;
}
.type_office_select {
    margin:0 0 10px 0;
    word-break: keep-all;
    word-wrap: normal;
    list-style:none;
    /*justify-content: space-around;*/
    display:flex;
    flex-wrap: wrap;
    font-size: 14px;
}
.type_office_select label {
    display:flex;
    width:20%;
}
.municipality-reset-link {
    font-size: 12px;
    font-weight: normal;
    margin-left: 1em;
    text-decoration: underline;
    color: #333;
}
.municipality-reset-link:hover {
    color: #8cc167;
}
.ta1 select.ws,
.ta1 input.ws {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}
/*
.filter_area, .filter_title{
    cursor:pointer;
}
*/
div.type_office_select input[type="radio"] + span{
    background-color: #f4c7c3;
    margin: 2px 2px;
    padding:6px 13px 4px 13px;
    line-height: 18px;
    text-align: center;
    cursor: pointer;
    display:block;
    width: 100%;
    word-break: break-all;
}
#service div.type_office_select input[type="radio"] + span{
    word-break: initial;
}
div.type_office_select input[type="radio"] + span::before{
    content: "";
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 0;
    border-radius: 0;
}
div.type_office_select input[type="radio"]:checked + span::before{
    border: 0;
}
div.type_office_select input[type="radio"]:checked + span{
    border: 2px solid #ff5722;
    padding: 4px 13px 2px 13px;
}
div.type_office_select input[type="radio"]:checked + span::after{
    content: "";
    display: none;
    position: relative;
    padding: 0;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 0;
    border-radius: 0;
}
/*
SELECT
*/
select {
    padding: 5px 5px;
    width: 70%;
    border-radius: 3px;
    border: 1px solid #aaa;
    line-height: 1.8em;
    padding-left: 0.3em;
    background-color: #fefefe;
    box-shadow: 1px 1px 1px #eee inset;
}
select:disabled {
    background-color: #eee;
}
select.error {
    border:1px solid red;
}
/*
INPUT
*/
input:disabled,
input:read-only{
    background-color: #eee;
}
input.error {
    border:1px solid red;
}
/*
INPUT SUBMIT
*/
#main input[type="submit"].btn,
input[type="button"].btn,
#main input[type="reset"].btn,
#counter input[type="submit"].btn,
#search_by_name input[type="submit"].btn {
    padding: 7px 12px;		/*上下、左右へのボタン内の余白*/
    border-top:0px;
    border-left:0px;
    /*border-right: 2px solid #e90;*/
    /*border-bottom: 4px solid #e90;*/
    border-radius: 4px;		/*角丸のサイズ*/
    background: #fa0;		/*背景色*/
    color:#fff;
    width: 40%;/*20190708*/
    font-size: 14px;
    min-width: 80px;
    min-height:32px;
    cursor:pointer;
    border: 0px;
    margin: 2px;
}
#main input[type="button"].btn {
    width: 20%;/*20190708*/
    min-width: 110px;
}
#main input[type="button"].btn:disabled {
    background-color: #eee;
    /*border-color: #ccc;*/
    cursor:default;
    color: #333;
}
input[type="time"] {
    width: 90px;
    border-radius: 3px;/*20190708*/
    border:1px solid #aaa;/*20190708*/
    line-height: 1.6em;/*20190708*/
    padding: 3px 0 0 5px;
    background-color: #fefefe;/*20190708*/
    box-shadow: 1px 1px 1px #eee inset;
}
#main input[type="submit"].btn:hover,
#main input[type="button"].btn:hover,
#main input[type="reset"].btn:hover {
    /*border-right: 2px solid #ffc127;
    /*border-bottom: 4px solid #ffc127;
    background: #FFe127;		/*背景色*/
}
/*20190727*/
#main input[type="button"].btn:disabled:hover {
    background-color: #eee;
    /*border-color: #ccc;*/
    cursor:default;
    border: 0px;
    margin: 2px;
}
#side input[type="button"] {
    background-color: #f7f1ad;
    padding: 5px;
    margin-left: 5%;
    width:90%;
    /*border: 1px solid #999;*/
    cursor:pointer;
    border: 0px;
    margin: 2px;
}

#search_by_name input[type="submit"].btn{
    padding: 2px 10px;
    border-radius: 3px;
    /*border-right: 1px solid #dfa107;*/
    /*border-bottom: 2px solid #dfa107;*/
    width: 80px;/*20190708*/
    font-weight: normal;
    font-size:16px;
    border: 0px;
    margin: 2px;
}
#search_by_name input[type="submit"].btn:hover{
    border-right: 1px solid #ffc127;
    border-bottom: 2px solid #ffc127;
    background: #FFe127;		/*背景色*/
    border: 0px;
    margin: 2px;
}

/*
INPUT TEXT
*/
/*
INPUT NUMBER
*/
/*
INPUT TIME
*/
/*
INPUT CHECKBOX
*/
input[type="checkbox"] {
    display: none;
}

/*
INPUT RADIO
*/
/*
TEXTAREA
*/
textarea.error {
    border:1px solid red;
}

/*
DIV
*/
/*
HIDE SHOW
*/
.hidden{
    display:none;
}

/*
COLOR
*/
/*
BUTTON
*/
/*
FOOTER
*/
/*
IMG
*/
img {
    /*
    border:1px solid #ccc;
    padding:0px;
    box-shadow: 2px 2px 1px 0px #eee;
    margin-bottom:10px;
    */
}
img.picture {
    display: inline-block;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.8);
    position:relative;
    margin-bottom:10px;
}
div.img_frame p {
    position: absolute;/*絶対配置*/
    color: #fff;/*文字は白に*/
    bottom: 0;
    right: 0;
    font-size: 0.7px;
}
p.img a img {
    width:200px;max-height:200px;
}
p.img a img.big {
    max-height:unset;/*20191127*/
}
/*
GLOBAL NAVI
*/
#menubar {
    clear: both;
    height: 75px;		/*メニューの高さ。下の「#menubar ul li a」の「height」と「padding-top」の数字を合計した数字に合わせる。*/
    text-align: center;	/*文字を中央に*/
    background: #8cc167;	/*背景色*/
    border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
}
#menubar li {
    float: left;	/*左に回り込み*/
    width: 16.66%;	/*メニュー幅（100÷6個=16.66%）　もし４個にするなら100÷4=25%になる。*/
}
#menubar li a {
    text-decoration: none;display: block;
    line-height: 1.6;	/*行間を少し狭く*/
    color: #fff;		/*文字色*/
    height: 60px;		/*高さ*/
    padding-top: 15px;	/*上に追加する余白*/
    border-right: 1px solid #fff;	/*メニューの右側の線の幅、線種、色（古いブラウザ用）*/
    border-right: 1px solid rgba(255,255,255,0.5);	/*右の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
#menubar li:first-child a {
    border-left: 1px solid #fff;	/*メニューの線の幅、線種、色（古いブラウザ用）*/
    border-left: 1px solid rgba(255,255,255,0.5);	/*左の線の幅、線種、255,255,255は白の事で0.5は50%色がついた状態の事。*/
}
#menubar li span {
    display: block;
    font-size: 9px;			/*文字サイズ*/
    font-weight: normal;	/*文字を太字でなく標準に戻す設定*/
    letter-spacing: 0.2em;	/*文字間隔を少しあける設定*/
    opacity: 0.5;			/*透明度50％*/
}
#menubar li a:hover, #menubar li.current a {
    background: #a4d582;	/*背景色*/
}
#menubar-s {
    display: none;
}
#menubar-s ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
#menubar_hdr {
    display: none;
}
#menubar ul.ddmenu {
    position:absolute;visibility: hidden;z-index: 10;padding-top: 1px;
    width: 16.66%;		/*幅。上の「#menubar li」と合わせる。*/
    font-size: 12px;	/*文字サイズ*/
}
#menubar ul.ddmenu li {
    float: none;
    width: 100%;
}
#menubar ul.ddmenu li a {
    width: 100%;height: auto;font-weight: normal;
    border: none;	/*線を一旦リセット*/
    border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
    background: #000;	/*背景色（古いブラウザ用）*/
    background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は70%色がついた状態の事。*/
    color: #fff;		/*文字色*/
    padding: 10px 0;	/*上下、左右への余白*/
}
#menubar ul.ddmenu li.title a {
    background: #8cc167;	/*背景色*/
    cursor: default;		/*カーソルをリンク用でなくデフォルトの矢印にしておく*/
    padding: 3px 0;			/*上下、左右への余白*/
}
#menubar ul.ddmenu li a:hover {
    background: #000;	/*背景色*/
}
#menubar ul.ddmenu li.title a:hover {
    background: #8cc167;
}

/*fixmenu設定（メニューが画面上部に到達した際のスタイル）*/
/*上部固定メニュー用fixmenu設定*/
body.is-fixed-menu .nav-fix-pos {
    width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed-menu header {
    margin-bottom: 75px;	/*メニューの高さを指定。menubarのborderが1px分ありますが大差ないので75でOKです。*/
}
/*上の設定の「is-fixed-menu」を「is-fixed」に変更したものをそのまま記入します。fixmenuスクリプトを２つ使う為に必要な設定になります。*/
body.is-fixed .nav-fix-pos {
    width: 100%;z-index: 100;position: fixed;top: 0;left: 0;
}
body.is-fixed header {
    margin-bottom: 75px;
}

/*
CONTENT（３カラムを囲むブロック）
*/
#contents {
    clear: both;overflow: hidden;
    padding-top: 40px;		/*上に空けるボックス内の余白*/
    padding-bottom: 40px;	/*下に空けるボックス内の余白*/
}

/*mainとsubを囲むブロック*/
#contents-in {
    float: left;	/*左に回り込み*/
    width: 80%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #contents-in {
    float: none;
    width: auto;
}
#main {
    float: right;	/*右に回り込み*/
    width: 100%;		/*ブロックの幅*/
}
#main h2 {
    clear: both;
    margin-bottom: 20px;
    padding: 10px 20px;	/*上下、左右への余白*/
    font-size: 18px;	/*文字サイズ*/
    color: #fff;		/*文字色*/
    background: #8cc167;	/*背景色*/
}
#main h2::first-letter {
    border-left: 3px solid #fff;	/*左の線の幅、線種、色*/
    padding-left: 15px;				/*線とテキストとの余白*/
}
#main h3 {
    clear: both;
    margin-bottom: 20px;
    padding: 4px 20px;	/*上下、左右への余白*/
    font-size: 16px;	/*文字サイズ*/
    border: 1px solid #ccc;		/*枠線の幅、線種、色*/
}
#main h3::first-letter {
    border-left: 3px solid #8cc167;	/*左の線の幅、線種、色*/
    padding-left: 15px;				/*線とテキストとの余白*/
}
#main p {
    padding: 0px 20px 20px;	/*上、左右、下への余白*/
}
#main p + p {
    margin-top: -5px;
}
#main h2 + p,
#main h3 + p {
    margin-top: -10px;
    padding-bottom: 0;
}
#main section + section {
    margin-top: 30px;
}

/*
CONTENT LEFT
*/
#sub {
    float: left;	/*左に回り込み*/
    width: 22.5%;	/*ブロックの幅*/
}
/*
CONTENT RIGHT
*/
#side {
    float: right;	/*右に回り込み*/
    width: 18%;		/*ブロックの幅*/
}
/*２カラム時*/
.c2 #side {
    display: none;
}
#sub h2,
#side h2 {
    text-align: center;		/*文字をセンタリング*/
    padding: 8px 0px;		/*上下、左右への余白*/
    color: #fff;			/*文字色*/
    background: #9d9980;	/*背景色（古いブラウザ用）*/
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
#sub p,#side p {
    line-height: 1.6;	/*行間を少し狭く*/
}
#sub .box1,
#side .box1 {
    border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
    padding: 10px;			/*ボックス内の余白*/
    margin-bottom: 20px;	/*ボックスの下にあけるスペース*/
    background: #f1f0ec;	/*背景色*/
}
.box1 .submenu {
    margin-bottom: 0 !important;
}
#sub .submenu,
#side .submenu {
    margin-bottom: 20px;		/*メニューブロックの下にあけるスペース*/
    border-top: 1px solid #8c876c;	/*上の線の幅、線種、色*/
}
#sub .submenu li a,
#side .submenu li a {
    text-decoration: none;display: block;
    padding: 0 10px;		/*上下、左右のボックス内の余白*/
    border: 1px solid #8c876c;	/*枠線の幅、線種、色*/
    border-top: none;		/*上の線を消す設定*/
    background: #fff;		/*背景色*/
}

footer {
    clear: both;
    background: #8cc167;	/*背景色*/
    font-size: 85%;			/*文字サイズ*/
    color: #fff;			/*文字色*/
}
footer a, footer a:hover {
    color: #fff;	/*リンクテキスト、マウスオン時の文字色*/
}
footer .pr {display: block;font-size: 85%;}
#footermenu {
    overflow: hidden;
    padding: 20px 0;	/*上下、左右へのボックス内の余白*/
    font-size: 12px;	/*文字サイズを少し小さく*/
}
#footermenu ul {
    float: left;	/*左に回り込み*/
    width: 18%;		/*幅。今回は5列作ったのでここの幅18%と下のpadding(合計の2%)でトータル20%になるよう設定。列に応じて調整して下さい。*/
    padding-right: 1%;
    padding-left: 1%;
}
#footermenu ul li {
    padding: 0 10px;	/*上下、左右への余白*/
}
#footermenu li.title {
    font-weight: bold;	/*太字にする*/
    background: rgba(0,0,0,0.1);	/*背景色*/
    border-radius: 2px;	/*角丸のサイズ*/
}
#footermenu a {
    text-decoration: none;
    opacity: 0.7;	/*透明度。70%色がでた状態の事。*/
}
#footermenu a:hover {
    opacity: 1;	/*透明度。100%色がでた状態の事。*/
}
#copyright {
    clear: both;
    text-align: center;
    background: #333;	/*背景色*/
}
#copyright a {
    text-decoration: none;
}
/*トップページ内「更新情報・お知らせ」ブロック*/
/*ブロック全体の設定*/
#new dl {
    padding: 0px 20px;	/*上下、左右へのブロック内の余白*/
    margin-bottom: 20px;	/*ブロックの下(外側)に空ける余白*/
}
/*日付設定*/
#new dt {
    float: left;
    width: 9em;
    letter-spacing: 0.1em;
}
/*記事設定*/
#new dd {
    padding-left: 9em;
    border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
}

/*よく頂く質問ページ*/
/*質問と答えのボックス全体を囲むブロック*/
.faq {
    padding: 0 20px 10px;	/*上、左右、下へのボックス内余白*/
}
/*質問*/
.faq dt {
    font-weight: bold;	/*太字にする設定*/
    color: #8cc167;		/*文字色*/
}
/*回答*/
.faq dd {
    padding-bottom: 10px;	/*下に空けるスペース*/
}

/*テーブル*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
    border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
    border-bottom: none;	/*下線だけ消す*/
    text-align: left;		/*文字を左寄せ*/
    background: #eee;		/*背景色*/
    color: #666;			/*文字色*/
    font-weight: bold;		/*太字に*/
    margin-bottom: 10px;
    padding: 15px;
    background-color: #fff;
    border: none;
    border-left: 10px solid #8cc166;
}
/*ta1設定*/
.ta1 {
    table-layout: fixed;
    width: 100%;
    margin: 0 auto 20px;
    background: #fff;	/*背景色*/
    color: #666;		/*文字色*/
}
.ta1, .ta1 td, .ta1 th {
    word-break: break-all;
    border: 0px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
    padding: 20px;	/*ボックス内の余白*/
    border-bottom: 1px solid #d6ceb4;
    border-top: 1px solid #fff;

}
.ta1 tr:nth-child(1) th,
.ta1 tr:nth-child(1) td {
    border-top: 1px solid #d6ceb4;
}
/*ta1の左側ボックス*/
.ta1 th {
    width: 140px;		/*幅*/
    text-align: left;	/*センタリング*/
    width: 25%;/*daycare_navi*/
    background-color: #faf8f5;
    border-right:none;
    border-left:none;
}
/*labelタグ*/
.ta1 label {
    display: inline-block;
}
/*こだわりアイコンのフロート指定(CMS用)*/
.ta1 td .specialbox {
    float: left;
    width: 80px;	/*アイコン幅。*/
    height: 40px;	/*アイコンの高さ。*/
}
/*checkbox*/
/* css checkbox01 */
span.text{
    padding-left: 25px;
    position:relative;
    margin-right: 20px;
    font-size:1.2em;
}
span.text::before{
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 0px;
    width: 17px;
    height: 17px;
    border: 2px solid #999;
    border-radius: 4px;
}
input[type="checkbox"]:checked + span.text{

}
input[type="checkbox"]:checked + span.text::after{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 5px;
    width: 7px;
    height: 14px;
    transform: rotate(40deg);
    border-bottom: 4px solid #8cc167;
    border-right: 4px solid #8cc167;
}
/*radio*/
/*css radio02*/
input[type="radio"] {
    display: none;
}
input[type="radio"] + span{
    padding-left: 30px;
    position:relative;
    margin-right: 20px;
}
input[type="radio"] + span::before{
    content: "";
    display: block;
    position: absolute;
    top: 0px;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
}
input[type="radio"]:checked + span::before{
    border: 2px solid #8cc167;
}
input[type="radio"]:checked + span{
}
input[type="radio"]:checked + span::after{
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 4px;
    width: 16px;
    height: 16px;
    background: #8cc167;
    border-radius: 50%;
}
/*btn（赤い色の大きなボタン）*/
a.btn {
    display: block;text-decoration: none;
    background: #d90000;	/*背景色（古いブラウザ用）*/
    background: linear-gradient(#d90000, #a70000);	/*グラデーション*/
    color: #fff;		/*文字色*/
    font-size: 20px;	/*文字サイズ*/
    text-align: center;	/*文字をセンタリング*/
    padding: 10px;		/*ボタン内の余白*/
    border-radius: 4px;	/*角丸のサイズ*/
    letter-spacing: 0.2em;	/*文字間隔を広くとる設定*/
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);	/*ボックスの影。右に、下に、ぼかし幅、0,0,0は黒の事で0.3は色が30%ついた状態。*/
    border: 1px solid #a70000;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
a:hover.btn {
    box-shadow: none;
    background: #fff;	/*背景色*/
    color: #a70000;		/*文字色*/
}
/*btn2（青い色のボタン）*/
a.btn2 {
    display: inline-block;text-decoration: none;
    background: #2e8bdb;	/*背景色（古いブラウザ用）*/
    background: linear-gradient(#51a9f3, #2e8bdb);	/*グラデーション*/
    color: #fff;		/*文字色*/
    text-align: center;	/*文字をセンタリング*/
    padding: 2px 10px;	/*上下、左右へのボタン内の余白*/
    border-radius: 2px;	/*角丸のサイズ*/
    font-size: 14px;	/*文字サイズ*/
}
/*マウスオン時*/
a.btn2:hover {
    opacity: 0.7;	/*色が70%ついた状態*/
}
/*PAGE TOP（↑）設定*/
/*アニメーションのキーフレーム設定（変更不要）*/
@keyframes scroll {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
/*デフォルトでは非表示に*/
body .nav-fix-pos-pagetop a {display: none;}
/*ボタンの設定*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
    display: block;text-decoration: none;text-align: center;z-index: 100;position: fixed;
    width: 50px;		/*幅*/
    line-height: 50px;	/*高さ*/
    bottom: 50px;		/*下から50pxの場所に配置*/
    right: 3%;			/*右から3%の場所に配置*/
    background: #000;	/*背景色（古いブラウザ用）*/
    background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は透明度60%の事。*/
    color: #fff;		/*文字色*/
    border: 1px solid #fff;	/*枠線の幅、線種、色*/
    animation-name: scroll;	/*上のアニメーションで指定しているkeyframesの名前（scroll）*/
    animation-duration: 1S;	/*アニメーションの実行時間*/
    animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
    background: #999;	/*背景色*/
}
/*トップページのNEWアイコン*/
.newicon {
    background: #F00;	/*背景色*/
    color: #FFF;		/*文字色*/
    font-size: 70%;
    line-height: 1.5;
    padding: 2px 5px;
    border-radius: 2px;
    margin: 0px 5px;
    vertical-align: text-top;
}
/*checkブロック。赤い注意書きブロックです。*/
p.check {
    background: #ff0000;
    color:#fff;
    padding: 10px 25px !important;
    margin-bottom: 20px;
}
p.check a {color: #fff;}
/*ul.disc,olタグ*/
ul.disc {
    list-style: disc;
    padding: 0 20px 20px 45px;
}
ol {
    padding: 0 20px 20px 47px;
}
/*その他*/
.look {
    background: #eee;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 4px;
}
.mb15,.mb1em {
    margin-bottom: 15px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.clear {
    clear: both;
}
.color1, .color1 a {
    color: #8cc167 !important;
}
.color2, .color2 a {
    color: #999 !important;
}
.red, .red a {
    color: #ff0000 !important;
}
.pr {
    font-size: 10px;
}
.wl {
    width: 96%;
    border-radius: 3px;
    border: 1px solid #aaa;
    line-height: 1.8em;
    padding-left: 0.3em;
    background-color: #fefefe;
    box-shadow: 1px 1px 1px #eee inset;
}
.ws {
    width: 70%;
    border-radius: 3px;/*20190708*/
    border:1px solid #aaa;/*20190708*/
    line-height: 1.8em;/*20190708*/
    padding-left:0.3em;/*20190708*/
    background-color: #fefefe;/*20190708*/
    box-shadow: 1px 1px 1px #eee inset;
}
.c {
    text-align: center;
}
.r {
    text-align: right;
}
.l {
    text-align: left;
}
img.fr {
    float: right;
    margin-left: 10px;
    margin-bottom: 10px;
}
img.fl {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
}
.big1 {
    font-size: 24px;
    letter-spacing: 0.2em;
}
.mini1 {
    font-size: 14px;
}
.sh {
    display: none;
}
/*必須*/
.require {
    font-size: 0.7em;
    vertical-align: top;
    color:red;
}
/*****************
bookmark 20200131
*****************/
.bookmark {
    position: absolute;
    right: 12%;
    top: 16px;
    max-width: 13%;
}
.bookmark span {
    position:absolute;
    right:0%;
    top:30px;
    width:88%;
    color:white;
}
.bookmark .balloon {
    position:absolute;
    right:-27px;
    top:5px;
    display:block;
    width:23px;
    height:23px;
    padding:3px 7px 11px;
    color:white;
    background-color: #fe7200;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    border-radius:50%;
    text-align:center;
}
.bookmark_list {
    background-color: white;
    position: absolute;
    max-width:600px;
    z-index: 102;
    border: 5px solid #ffc127;
    padding:10px 20px;
    border-radius: 5px;
}
/**********************************************************
画面幅1301px以上の設定
**********************************************************/
@media screen and (min-width:1301px){
    /*inner共通*/
    .inner {
        width: 1301px;	/*サイトの幅。この指定がないと上部メニューが一瞬段落ちする場合があります。*/
    }
    /*メインメニューとドロップダウンメニューの設定変更。
    メニュー数が6個なので、1301÷6=216pxになります。*/
    #menubar li, #menubar ul.ddmenu {
        width: 216px;
    }
}
/**********************************************************
画面幅1300px以下の設定
************************************************************/
@media screen and (max-width:1300px){
    /*contents（３カラムを囲むブロック）*/
    #contents {
        margin: 0 1%;	/*上下、左右へのコンテンツの外側へ空けるスペース*/
    }
}
/**********************************************************
画面幅900px以下の設定
**********************************************************/
@media screen and (max-width:900px){
    /*ログイン（ヘッダー右側のログイン）*/
    header .login a {
        float: left;			/*ロゴの右に来るように再指定*/
        margin-left: 20px;		/*ロゴとの間にとるスペース*/
        background-image: none;	/*ブラウザ幅が狭くなるので、鍵マークを消す*/
        padding: 5px 30px;		/*上下、左右へのボタン内の余白*/
    }
    /*fixmenu設定（メニューが画面上部に到達した際のスタイル）*/
    /*fixmenuから折りたたみメニューになるのでリセット。*/
    body.is-fixed-menu header,
    body.is-fixed header {
        margin-bottom: 0px;
    }
    /*メインメニュー*/
    /*アニメーションのフレーム設定。全100コマアニメーションだと思って下さい。透明(0%)から色を100%出すアニメーション指定。*/
    @keyframes menu1 {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    /*スマホ用メニューブロック*/
    #menubar-s {
        display: none;
        overflow: hidden;
        z-index: 10;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        border-top: 1px solid #fff;
    }

    #menubar-s.is-open {
        display: block;
        animation-name: menu1;
        animation-duration: 0.5S;
        animation-fill-mode: both;
    }
    /*メニュー１個あたりの設定*/
    #menubar-s li a {
        display: block;text-decoration: none;
        padding: 15px 10px 15px 20px;	/*上、右、下、左へのメニュー内の余白*/
        border-bottom: 1px solid #fff;	/*下の線の幅、線種、色*/
        background: #8cc167;	/*背景色*/
        font-size: 20px;		/*文字サイズ*/
        color: #fff;		/*文字色*/
    }
    /*英語表記（飾り文字）*/
    #menubar-s li a span {
        display: block;
        font-size: 12px;	/*文字サイズ*/
    }
    /*PC用メニューを非表示にする*/
    #menubar {
        display: none;
    }

    /*３本バーアイコン設定*/
    /*３本バーブロック*/
    #menubar_hdr {
        display: block;position: absolute;
        top: 24px;	/*上から24pxの場所に配置*/
        right: 3%;	/*右から3%の場所に配置*/
        border: 1px solid #fff;	/*枠線の幅、線種、色*/
    }
    /*アイコン共通設定*/
    #menubar_hdr.close,
    #menubar_hdr.open {
        width: 50px;		/*幅*/
        height: 50px;		/*高さ*/
        border-radius: 50%;	/*円形にする。この行削除すれば正方形になります。*/
    }
    /*三本バーアイコン*/
    #menubar_hdr.close {
        background: #8cc167 url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、アイコンの読み込み、上半分(top)を表示、幅50px*/
    }
    /*閉じるアイコン*/
    #menubar_hdr.open {
        background: #8cc167 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、アイコンの読み込み、上半分(bottom)を表示、幅50px*/
    }
    /*contents（３カラムを囲むブロック）*/
    #contents {
        padding: 0px 2% 20px;	/*上下、左右へのボックス内の余白*/
    }
    /*main,sub,side,contents-in*/
    #main, #sub, #side, #contents-in {
        float: none;
        width: auto;
        overflow: hidden;
    }
    /*その他*/
    body.s-n #sub,body.s-n #side {
        display: none;
    }
    .sh {
        display:block;
    }
    .pc {
        display:none;
    }
}
/**********************************************************
画面幅600px以下の設定
**********************************************************/
@media screen and (max-width:600px) {
    /*ヘッダー（ロゴが入った最上段のブロック）*/
    /*ヘッダーブロック*/
    header {
        text-align: left;
        border-bottom:10px solid #8cc167;
        height: 60px;
        margin-bottom: 10px;
        background-color: #8cc167;
        padding: 1px 15px 5px 10px;
    }
    /*ロゴ画像*/
    header #logo {
        float: none;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.5em 1em;
        margin: 4% 0% 0 0;
        padding: 8px 0;
        width: 99%;
        font-size:14px;
        font-weight:bold;
    }
    header .header-national-link {
        font-size: 12px;
    }
    /*ログイン（ヘッダー右側のログイン）*/
    header .login a {
        float: none;
        margin: 0;
    }
    #search_by_name {
        display:none;
    }
    .list-sub {
        font-size: 15px;
    }
    /*
    IMG
    */
    .list .text {
        width: 57%;
        float: right;
    }
    .list p.img {
        width: 40%;
        float:left;
    }
    .list p.img.small {
        width: 31%;
        float:left;
    }
    .list .text.widen {
        width: 66%;
        float: right;
    }
    li.city_list {
        padding:2px 2px 2px 20px;
        color:blue;
        cursor:pointer;
        font-size: 18px;
    }
    img.picture_data_office {
        max-height: 400px;
        overflow-y: hidden;
        width:400px;
    }
    img.noimg {
        width:100%;
    }
    img.user {
        width:80px;
        height:80px;
        margin:0 auto;
        text-align: center;
    }
    img.company_profile {
        margin-right: 30px;
    }
    span.text_user {
        display:none;
    }

    .top_head {
        display:none;
    }
    .top_logo {
        width: 25px;
        margin-right: 5px;
    }
    table.ta1 th {
        display:block;
        width:95%;
    }
    table.ta1 td {
        display:block;
        width:95%;
        padding: 10px;
    }
    table.ta1 td input {
        width:95%;
    }
    table.ta1 label {
        padding: 2px;
    }
    table {
        width:100%;
    }
    #main {
        font-size:16px;
    }
    #main input[type="submit"].btn,
    #main input[type="button"].btn,
    #main input[type="reset"].btn,
    #search_by_name input[type="submit"].btn {
        padding: 7px 12px;		/*上下、左右へのボタン内の余白*/
        border-radius: 4px;		/*角丸のサイズ*/
        background: #fa0;		/*背景色*/
        color:#fff;
        width:98%;
        font-size: 14px;
        cursor:pointer;
        float:none;
        margin:0 0 3%;
        font-size: 16px;
    }
    #main input[type="button"].btn:disabled {
        background-color: #eee;
        cursor:default;
        color: #333;
    }
    #main input[type="submit"].btn:hover,
    #main input[type="button"].btn:hover,
    #main input[type="reset"].btn:hover {
        background: #FFe127;		/*背景色*/
    }
    /*20190727*/
    #main input[type="button"].btn:disabled:hover {
        background-color: #eee;
        cursor:default;
    }
    #side input[type="button"] {
        background-color: #f7f1ad;
        padding: 5px;
        margin-left: 5%;
        cursor:pointer;
    }
    #menubar_hdr {
        top: 12px;
    }
    /*20200131*/
    .bookmark {
        /*display:none;*/
        right: 25%;
    }
    .bookmark .balloon {
        padding: 0;
        right: -15px;
    }
    .bookmark_list {
        padding: 5px;
    }
    .bookmark_list input[type="button"] {
        min-width:50px;
    }
    .modal tr td:nth-child(2) {
        padding-left:0.5em;
        max-width: 150px;
    }
    /*list_company select city etc*/
    .type_office_select label {
        width:33%;
    }
}
/**********************************************************
画面幅480px以下の設定
**********************************************************/
@media screen and (max-width:480px){
    /*全体の設定*/
    body {
        font-size: 12px;	/*文字サイズ*/
    }
    /*contents（３カラムを囲むブロック）*/
    #contents {
        line-height: 1.5;	/*行間*/
    }
    /*mainコンテンツ*/
    #main h2, #main h3 {
        font-size: 14px;
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 10px;
    }
    /*段落タグ設定*/
    #main p {
        padding: 0px 10px 10px;
    }
    /*submenu（sub,sideのメニュー）*/
    /*メニュー１個ごとの設定*/
    #sub .submenu li a,
    #side .submenu li a {
        padding: 10px;	/*ボックス内の余白*/
    }
    /*フッターメニュー
    ウィンドウ幅が狭くなって見づらくなるので、１列にレイアウト変更。*/
    #footermenu ul {
        float: none;
        width: auto;
    }
    /*こだわりアイコン*/
    /*アイコン共通*/
    .icon {
        font-size: 9px;		/*文字サイズ*/
    }
    /*一覧ページのボックス内の右上のマーク
    （CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）*/
    /*option1〜option2、と、newアイコン共通*/
    .option1,.option2,.new {
        font-size: 9px;		/*文字サイズ*/
        padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
        line-height: 14px;	/*高さ*/
        right: 15px;		/*右から15pxの場所に配置*/
    }
    /*トップページ内「更新情報・お知らせ」ブロック*/
    /*ブロック全体の設定*/
    #new dl {
        padding-left: 10px;
        padding-right: 10px;
        margin-bottom: 10px;	/*ブロックの下(外側)に空ける余白*/
    }
    /*よく頂く質問ページ*/
    /*質問と答えのボックス全体を囲むブロック*/
    .faq {
        padding: 0 10px 10px;	/*上、左右、下へのボックス内余白*/
    }
    /*btn（赤い色の大きなボタン）*/
    a.btn {
        font-size: 16px;		/*文字サイズ*/
        letter-spacing: normal;	/*文字間隔を標準に戻す*/
    }
    /*テーブル(ta1)*/
    /*余白の上書き*/
    .ta1 caption,.ta1 th,.ta1 td {
        padding: 5px;
    }
    /*テーブル内の左側*/
    .ta1 th {
        width: 100px;
    }

    /*ul.disc,olタグ*/
    ul.disc {
        list-style: disc;
        padding: 0 20px 20px 30px;
    }
    ol {
        padding: 0 20px 20px 30px;
    }
    /*その他*/
    .ws,.wl {
        width: 94%;
    }
    .big1 {
        font-size: 18px;
        letter-spacing: normal;
    }
    img.fr,
    img.fl {
        float: none;
        margin: 0;
        width: 100%;
    }
    .sh {
        display:block;
    }
    .pc {
        display:none;
    }
}

/*********************************
*詳細ページ
*
*
*********************************
---------------------------------------------------------------------------*/
.item {
    position: relative;
}
/*こだわりアイコン（テキスト表示用）
---------------------------------------------------------------------------*/
/*アイコン共通*/
.icon {
    display: inline-block;position: relative;bottom: 2px;
    font-size: 14px;		/*文字サイズ*/
    padding: 0 5px;			/*上下、左右へのボックス内の余白*/
    border-radius: 4px;		/*角丸のサイズ*/
    border: 1px solid #ccc;	/*枠線の幅、線種、色*/
    background: #eee;		/*背景色*/
}
.icon.current {background: #ccc;}
.icon a {text-decoration: none;}
/*アイコン：赤*/
.icon .color1 {
    border: 1px solid #d90000;	/*枠線の幅、線種、色*/
    background: #d90000;		/*背景色*/
    color: #fff !important;		/*文字色*/
}
/*アイコン：青*/
.icon .color2 {
    border: 1px solid #2b2ebc;	/*枠線の幅、線種、色*/
    background: #2b2ebc;		/*背景色*/
    color: #fff;				/*文字色*/
}
/*一覧ページのボックス内の右上のマーク
（CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
/*option1〜option2、と、newアイコン共通（初期設定）*/
.option1,.option2,.new {
    text-align: center;display: inline-block;padding: 0;
    font-size: 10px;	/*文字サイズ*/
    line-height: 20px;	/*高さ*/
    width: 100px;		/*幅*/
    position: absolute;
    right: 0px;		/*右から0pxの場所に配置*/
    top: 0px;		/*上から0pxの場所に配置*/
    background: #999;	/*背景色*/
    color: #fff;		/*も地色*/
    transform: rotate(45deg) translate(27px,-10px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
}
/*詳細ページで使う場合の変更設定*/
.item .option1, .item .option2, .item .new {
    position: static;transform: none;width: auto;
    padding: 0 10px;	/*上下、左右へのアイコン内の余白*/
    margin-left: 5px;	/*アイコン同士に空けるスペース*/
}
/*「new」への追加設定。色を変更します。*/
.new {
    color: #FFF;		/*文字色*/
    background: #F00;	/*背景色*/
}
/*「option1」への追加設定。色を変更します。*/
.option1 {
    color: #FFF;			/*文字色*/
    background: #ff9000;	/*背景色*/
}

/*listブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.list {
    overflow: hidden;
    position: relative;
    border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
    padding: 10px 20px 0px;	/*上、左右、下へのボックス内の余白*/
    line-height: 1.3;			/*行間を少し狭く*/
    display: block;
}
/*最後のブロックに下線を入れる*/
.list:last-of-type {
    border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}
/*ブロック内の画像*/
@media screen and (min-width:600px){
.list p.img {
    padding: 0px !important;
    float: left;		/*左に回り込み*/
    width: 20%;		/*画像の幅*/
    margin-right: 1%;	/*画像の右側へ空けるスペース*/
}
/*右側ブロック*/
.list .text {
    float: right;	/*ブロックを右寄せ*/
    width: 78%;		/*幅*/
}
}
/*ブロック内の段落(p)タグ*/
.list p {
    padding: 0 !important;
}
/*ブロック内の見出し(h4)*/
.list h4 {
    font-size: 20px;	/*文字サイズ*/
}
/*ブロック内の見出し(h4)にリンクを貼った場合の設定*/
.list h4 a {
    color: #8cc167;		/*文字色*/
}
/*ボックス内のサイト名*/
.list p.name {
    position: absolute;
    right: 20px;	/*ボックスの右から20pxの場所に配置*/
    bottom: 5px;	/*ボックスの下から5pxの場所に配置*/
}
/*４列タイプ(list-compact)のブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
.list-compact {
    position: relative;overflow: hidden;
    margin: 1%;			/*ボックスの外側に空けるスペース*/
    float: left;		/*左に回り込み*/
    width: 23%;			/*幅*/
    height: 220px;		/*高さ*/
    font-size: 12px;	/*文字サイズ*/
    line-height: 1.5;	/*行間を少し狭くする*/
}
/*ボックス内のh4タグ設定*/
.list-compact h4,.list-compact h4 a {
    font-weight: bold;	/*太字にする*/
    height: 1.5em;		/*高さ*/
    overflow: hidden;	/*高さ以上になったら非表示にする*/
}
/*ボックス内のp(段落)タグ設定*/
.list-compact p {
    padding: 0px !important;
    height: 3em;		/*高さ*/
    overflow: hidden;	/*高さ以上になったら非表示にする*/
}
/*画像を共通サイズにする設定*/
.list-compact p.img {
    width: 100%;	/*幅*/
    height: 60%;	/*高さ*/
}
.list-compact img {width: 100%;height: 100%;}
/*ボックス内のサイト名*/
.list-compact p.name {
    height: auto;
}

/*登録日・更新日
---------------------------------------------------------------------------*/
.date {
    clear: both;
    font-size: 14px !important;	/*文字サイズ*/
    color: #999;		/*文字色*/
    text-align: right;	/*右寄せ*/
    position: relative;
    top: -20px;
    height: 10px;
}
.date span {
    display: inline-block;
}

/*一覧ページの各物件ボックス内のテーブル
---------------------------------------------------------------------------*/
.list table.c2 {
    font-size: 12px;	/*文字サイズ*/
    width: 100%;		/*テーブル幅*/
    margin-bottom: 5px;
}
.list table.c2,
.list table.c2 td,
.list table.c2 th {
    border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
}
.list table.c2 td,
.list table.c2 th {
    padding: 1%;	/*テーブル内の余白*/
}
.list table.c2 th {
    width: 20%;		/*幅*/
    background: #fafafa;	/*背景色*/
}
.list table.c2 td {
    width: 30%;		/*幅*/
}

/*list2ボックス（２列並びのボックス）
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
.list2 {
    overflow: hidden;
}
/*各ボックスの設定*/
.list2 li {
    float: left;		/*左に回り込み*/
    width: 49%;			/*幅*/
    line-height: 1.5;	/*行間*/
    margin: 0px 0.5% 20px;	/*上、左右、下へのボックスの外側へ空けるスペース*/
}
.list2 a {
    display: block;text-decoration: none;
    height: 65px;		/*ボックスの高さ*/
    overflow: hidden;	/*ボックスから飛び出た場合、非表示にする設定*/
    border-radius: 10px;	/*角丸のサイズ*/
    padding: 15px;			/*ボックス内の余白*/
    border: 1px solid #ccc;	/*枠線の幅、線種、色*/
    background: linear-gradient(#fff, #f2f2f2);/*背景グラデーション*/
    box-shadow: 2px 2px 3px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は10%色がついた状態の事。*/
}
/*マウスオン時*/
.list2 a:hover {
    background: #fff;	/*背景色*/
    box-shadow: none;	/*ボックスの影をなくす設定*/
    position: relative;
    left: 1px;	/*現在地から右に1px移動する*/
    top: 1px;	/*現在地から下に1px移動する*/
}
/*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
.list2 .img {
    height: 100%;	/*高さ*/
    float: right;	/*右に回り込み*/
}
/*件数のテキスト。※list2内でspanタグで囲った場合。*/
.list2 span {
    font-size: 28px;	/*文字サイズ*/
    color: #8cc167;		/*文字色*/
}

/*sub,sideコンテンツ内のlist-subボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
.list-sub {
    position: relative;overflow: hidden;
    border-left: 1px solid #8c876c;		/*左の線の線種、幅、色*/
    border-right: 1px solid #8c876c;	/*右の線の線種、幅、色*/
    border-bottom: 1px solid #8c876c;	/*下の線の線種、幅、色*/
    line-height: 1.8;					/*行間を少し狭くする。基本となる値は一番上のbodyにあります。*/
    			/*文字サイズ*/
    background: #fff;	/*背景色*/
}
@media screen and (min-width:600px){
    .list-sub {
        font-size: 12px;
    }
}
.list-sub a {
    display: block;text-decoration: none;overflow: hidden;
    padding: 5px;		/*ボックス内の余白*/
    background: #fff;	/*背景色*/
}
.list-sub a.login_user,
.list-sub a.login_owner {
    display: block;
    text-decoration: none;
    width:70%;
    margin:0 auto;
    /*
    border-right:2px solid #ee6200;
    border-bottom:4px solid #ee6200;
    */
    background: #fe7200;
    background: #fe7200 url(../images/icon_login.png) no-repeat 20px 10px / 12px;
    color: #fff;
    text-align: center;
    padding:3% 5%;
    border-radius: 4px;
    font-size: 14px;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.2em;
}
.list-sub a.login_owner {
    /*
    border-right:2px solid #008678;
    border-bottom:4px solid #008678;
    */
    background: #009688;
    background: #009688 url(../images/icon_login.png) no-repeat 20px 10px / 12px;
}
/*マウスオン時のボックス*/
.list-sub a.login_user:hover{
    /*
    border-right:2px solid #ff9220;
    border-bottom:4px solid #ff9220;
    */
    background: #ff9220 url(../images/icon_login.png) no-repeat 20px 10px / 12px;
}
.list-sub a.login_owner:hover{
    /*
    border-right:2px solid #20a698;
    border-bottom:4px solid #20a698;
    */
    background: #20c6b8 url(../images/icon_login.png) no-repeat 20px 10px / 12px;
}
.list-sub a:hover {
    /*background: #fffee1;	背景色*/
}
/*h4タグ*/
.list-sub a h4 {
    font-weight: bold;	/*太字にする設定*/
}
/*段落(p)タグ*/
.list-sub p {
    padding: 0 !important;
}
/*画像（サイドコンテンツの「お知らせ」内のサムネイル画像）*/
.list-sub .img.t {
    width: 25%;			/*画像の幅*/
    float: left;		/*左に回り込み*/
    margin-right: 10px;	/*画像右側に空ける余白*/
}
/*他、微調整*/
section .list-sub:last-of-type {margin-bottom: 20px;}
.box1 .list-sub:last-of-type {margin-bottom: 0;}

/*サイト名（name）
---------------------------------------------------------------------------*/
p.name {
    overflow: hidden;
    font-size: 12px !important;	/*文字サイズ*/
    background: url(../images/icon_home.png) no-repeat left center/12px;
    padding-left: 15px !important;
    float: right;
}



/*画面幅1000px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:1000px){

    /*４列タイプ(list-compact)のブロック
    ---------------------------------------------------------------------------*/
    /*画像を共通サイズにする設定*/
    .list-compact p.img {
        height: 50%;	/*高さ*/
    }

}



/*画面幅900px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:900px){

    /*４列タイプ(list-compact)のブロック
    ---------------------------------------------------------------------------*/
    /*画像を共通サイズにする設定*/
    .list-compact p.img {
        height: 70%;	/*高さ*/
    }

    /*sub,sideコンテンツ内のlist-subボックス
    ---------------------------------------------------------------------------*/
    /*画像（サイドコンテンツの全ての画像を共通で変更）*/
    .list-sub .img {
        width: 25%;			/*画像の幅*/
        float: left;		/*左に回り込み*/
        margin-right: 10px;	/*画像右側に空ける余白*/
    }

}



/*画面幅750px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:750px){

    /*４列タイプ(list-compact)のブロック
    ---------------------------------------------------------------------------*/
    /*画像を共通サイズにする設定*/
    .list-compact p.img {
        height: 55%;	/*高さ*/
    }

}



/*画面幅600px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:600px){

    /*４列タイプ(list-compact)のブロック
    ---------------------------------------------------------------------------*/
    /*各ボックスの設定*/
    .list-compact {
        float: none;
        width: auto;
        height: auto;
    }
    /*ボックス内のh4タグと、p(段落)タグ設定*/
    .list-compact h4,.list-compact h4 a, .list-compact p, .list-compact p.img, .list-compact img {
        height: auto;
    }
    .list-compact p.img {
        float: left;
        width: 25%;
        margin-right: 2%;
    }

}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

    /*一覧ページのボックス内の右上のマーク
    （CMSの場合は管理ページだと「オプション1」～のプルダウン、setup.phpだと「オプション選択肢」に関連します）
    ---------------------------------------------------------------------------*/
    /*option1〜option2、と、newアイコン共通（初期設定）*/
    .option1,.option2,.new {
        transform: rotate(45deg) translate(45px,-25px);	/*45度回転、右へ,下へ(マイナス設定なので上へ向けての指定)の移動距離*/
    }

    /*listブロック
    ---------------------------------------------------------------------------*/
    /*ブロック全体*/
    .list {
        padding: 5px 10px 25px;	/*上、左右、下へのブロック内の余白*/
    }
    /*ブロック内の見出し(h4)*/
    .list h4 {
        font-size: 16px;	/*文字サイズ*/
    }

    /*list2ボックス（２列並びのボックス）
    ---------------------------------------------------------------------------*/
    /*各ボックスの設定*/
    .list2 a {
        padding: 5px 10px;	/*上下、左右へのボックス内の余白*/
    }
    /*件数のテキスト。※list2内でspanタグで囲った場合。*/
    .list2 span {
        font-size: 18px;	/*文字サイズ*/
    }

}



/*画面幅360px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:360px){

    /*list2ボックス（２列並びのボックス）
    ---------------------------------------------------------------------------*/
    /*各ボックスの設定*/
    .list2 li {
        float: none;width: auto;	/*１列にする設定*/
        margin: 0 0 10px;	/*上、左右、下に空けるボックスの外側の余白。*/
    }
    .list2 li a {
        height: auto;
    }
    /*ボックス内の画像。※imgタグにclass="img"をつけた場合。*/
    .list2 .img {
        height: auto;	/*高さをリセット*/
        width: 20%;		/*幅の指定に変更*/
    }

}

/**************
modal
***************/
.modal-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1000%;
  background-color: rgba(0,0,0,.8);
  z-index: 101;
  cursor: pointer;
  display:none;
}
.show {
    display:block;
}
img.modal.show {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    background-color: #fff;
    z-index: 102;
}
body.modal{
    overflow:hidden;
}
/**************
bookmark
***************/
.modal table,
.modal tr,
.modal th,
.modal td {
    border:1px solid #999;
    border-collapse: collapse;
}
.modal table {
    width:95%;
    margin:0 auto;
}
.modal thead {
    background-color: #8cc167;
    color: white;
}
.bookmark_list a {
    cursor:pointer;
    color: #3a84df;
    padding-left:0.5em;
}
.modal tr td:first-child {
    padding-left:0.5em;
}
.modal tr td:not(:first-child) {
    /*min-width:100px;*/
}
.modal table input[type="button"].btn {
    width: 80%;
    margin: 5% 10%;
}
.modal .title {
    font-weight: bold;
}
/**************
news books youtube twitter
***************/
.list.news {
    min-height:60px;
}
.list.news p.img {
    width:12%;
    text-align: center;
}
.list.news img.picsum {
    width:82px;
    border-radius: 0%;
    margin-bottom:10px;
    margin-right: 2%;
}
.list.news .text {
    width:85%;
}
.list.news .text a {
    color: #3F51B5;
    text-decoration: none;
}
/**************
utility
***************/
label:hover, input[type="submit"]:hover,
input[type="button"]:hover{
    opacity:0.5;
}
.icon_service {
    display : -webkit-box;     /* old Android */
    display : -webkit-flex;    /* Safari etc. */
    display : -ms-flexbox;     /* IE10        */
    display:flex;
    -webkit-flex-wrap: wrap;          /* Safari etc. */
    -ms-flex-wrap    : wrap;          /* IE10        */
    flex-wrap        : wrap;
    margin:0 0 10px;
}
.icon_service li {
    padding:4px 8px 0;
    margin:3px;
    color:white;
    text-align: center;
    width:70px;
    height:31px;
    background-color:#ccc;
}
.icon_service .blue {
    background-color:#3a84df;
}
.icon_service .able {
    background-color:#3a84df;
}
/**************
socialBookmark
***************/
.socialBookmark{

}
.socialBookmark iframe{
    display:block;
    margin:10px;
}
/**************
readmore
***************/
._readmore {
    color:#3F51B5;margin-top:0.5em;margin-bottom:1em;display:block;
}
/**************
socialBookmark
***************/
#_facebook,
#_twitter,
#_hatena,
#_pocket{
    text-align: center;
    font-weight: 600;
    font-size: 20px;
    width: 100%;
    height: 35px;
    cursor:pointer;
    border-radius:4px;
}
#_facebook{
    background-color: #3b5998;
}
#_twitter {
    background-color: #00a4f4;
}
#_hatena {
    background-color: #0092e0;
}
#_pocket {
    background-color: #d65158;
}

.pagination-wrap {
    margin: 20px 0 80px;
}

.pagination-nav {
    width: 100%;
}

.pagination-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pagination-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 32px;
    padding: 7px 12px;
    border-radius: 4px;
    background: #fa0;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    border: 0;
    margin: 2px;
}

a.pagination-item:hover {
    background: #ffe127;
    color: #fff;
}

.pagination-item.is-current {
    background: #2f6f3e;
    font-weight: 700;
}

.pagination-item.is-disabled,
.pagination-item.is-ellipsis {
    background: #eee;
    color: #666;
    cursor: default;
}

.pagination-item.is-ellipsis {
    min-width: auto;
    padding: 7px 8px;
}
