@charset "utf-8";

/* css記載順序
A. reset.css
B. style.css
C. pc.css
D. tablet.css
E. smart.css

B-01. 枠組共通
B-02. header
B-03. nav
B-04. main共通
B-05. h1,h2見出し
B-06. breadcrumb
B-07. pager
B-08. aside
B-09. footer
B-10. toppage
B-11. form
B-12. レギュレーション
B-13. 検索結果
B-14. 内部ページ
end css記載順序*/


/*************************** B-01. 枠組共通 ***********************/
html {
    font-size: 62.5%;
}

@media screen and (max-width:1279px) {
    html {
        font-size: 56.25%;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif, "メイリオ", "ＭＳ Ｐゴシック", "MS Gothic", "Osaka－等幅", Osaka-mono, monospace;
    font-size: 1.6rem;
    color: #333;
}

#wrapper {
    margin: 0 auto;
    padding: 4px 0 20px;
}

.fixbox {
    max-width: 1280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

main {
    display: flex;
    justify-content: space-between;
    max-width: 1450px;
    padding: 0 5px;
    margin: 0 auto;
}

main article {
    margin-top: 6.0rem;
    max-width: 832px;
    width: 68.47%;
}

main article#top {
    margin-top: 0;
    max-width: 986px;
}

main article section {
    /*h2*/
    margin-top: 80px;
}

main article section section {
    /*h3*/
    margin-top: 60px;
}

main article section section section {
    /*h4*/
    margin-top: 40px;
}

main article section section section section {
    /*h5 h6*/
    margin-top: 30px;
}



/*************************** B-02. header ************************/
header {
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0px 10px 5px -5px #f2f2f2;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
}

.header-container div.logo {
    display: flex;
    padding-top: 1rem;
}

.header-container span {
    margin-left: 1.0rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.header-container img {
    width: 28.4rem;
    height: auto;
}

.header-container input[type="text"] {
    padding: 12px;
    width: 280px;
    border: none;
    background-color: #f0f2f4;
    position: relative;
    display: inline-block;
    outline: none;
    transition: background-color .3s, border .3s;
    font-size: 16px;
}

.header-container input::placeholder {
    color: #aaa;
}

.header-container input[type="text"]:focus {
    background: rgb(220, 220, 220);
}

.header-container input[type="submit"] {
    position: relative;
    padding: 13px 4px 13px 6px;
    width: 30px;
    background: #f0f2f4 url(../images/icons/icon-search.svg) no-repeat right 5px top 50%;
    background-size: auto 50%;
    border: none;
    text-align: left;
    margin-left: -4px;
    cursor: pointer;
    transition: background-color .3s;
}

.header-container input[type="text"]:focus+input[type="submit"] {
    background-color: rgb(220, 220, 220);
}

.header-container input[type="submit"]:hover {
    background: rgb(220, 220, 220) url(../images/icons/icon-search.svg) no-repeat right 5px top 50%;
    background-size: auto 50%;
}

.header-right {
    display: flex;
}

.header-right-02 {
    display: flex;
}

.header-right-02 li {
    width: 320px;
    list-style: none;
    text-align: center;
    margin-left: 1.6rem;
}
.header-right-02 li.line {
    width: 220px;
}

.header-right-02 li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    padding: 1.2rem 0;
    border-radius: 0 0 8px 8px;
}

.header-right-02 li.line a {
    background: #4DC764;
    padding-top: 0.7rem;
    height: 86px;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0px 2px 0px 0px #299f40;
}

.header-right-02 li.line img {
    display: block;
    width: 40px;
    margin: 0 auto 0.7rem;
}

.header-right-02 li.tel {
    font-size: 1.3rem;
}

.header-right-02 li.tel span {
    font-size: 1.1rem;
    align-items: end;
    justify-content: center;
    margin: 0.3rem 0 0;
}

.header-right-02 li.tel span strong {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 1.4px;
}

.header-right-02 li.tel a {
    height: 86px;
    background: #F7941D;
    box-shadow: 0px 2px 0px 0px #b66a0e;
    font-size: 1.4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ハンバーガーボタン */
.hamburger,
.header-sp,
.header-sp-search {
    display: none;
}

/*************************** B-03. nav ***************************/
/*megamenu 共通部分*/
.megamenu {
    max-width: 1440px;
    margin: 16px auto 0;
}

.megamenu a {
    display: block;
    text-decoration: none;
    color: #333;
}

/*megamenu 2階層目以降のhere共通*/
.megamenu div ul li.here>a {
    color: #009bde;
}

.megamenu div ul li.here>a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 4px;
    color: #009bde;
}

/*#wrapper,footerをjsと共に黒くする*/
footer::after,
#wrapper::after {
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    content: '';
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    transition: z-index .3s, opacity .3s;
}

footer.overlay::after,
#wrapper.overlay::after {
    z-index: 1;
    opacity: 1;
}

/* 第一階層 */
.megamenu>ul {
    display: flex;
    position: relative;
}

.megamenu>ul>li {
    text-align: center;
    width: 100%;
    flex-grow: 1;
    border-right: 2px solid #c6c6c6;
}

.megamenu>ul> :last-child {
    border-right: 0;
}

.megamenu>ul>li.here>a {
    font-weight: bold;
    color: #009bde;
}

.megamenu>ul>li>a {
    font-size: 2rem;
    padding: 1.6rem 1.2rem;
    border-top: 1px solid #fff;
    font-weight: bold;
}

.megamenu>ul>li:hover>a,
.megamenu>ul>.nav_open>a {
    background-color: #f0f2f4;
    border-top: 1px solid #c6c6c6;
    opacity: 1;
}

/*子階層がある場合*/
.megamenu>ul>li.has-child>a {
    position: relative;
}

.megamenu>ul>li.has-child>a::before {
    position: absolute;
    bottom: 4px;
    right: 0;
    left: 0;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
    transform: rotate(135deg);
    display: block;
    transition: transform .3s;
}

.megamenu>ul>li.nav_open>a::before {
    transform: rotate(-45deg);
}

/* 第2階層 */
.megamenu div {
    display: none;
    background-color: #f0f2f4;
    width: 100%;
    left: 0;
    top: 54px;
    z-index: 10000;
    position: absolute;
    padding: 50px 0;
}

.megamenu div p {
    width: 400px;
    margin: 0 auto 16px;
    text-align: left;
    font-weight: bold;
}

.megamenu div p a {
    border: 1px solid #333;
    padding: 15px;
    position: relative;
}

.megamenu div p a::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 14px;
    margin: auto;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 3px solid #666;
    border-right: 3px solid #666;
    transform: rotate(45deg);
    display: block;
    transition: right .3s, background-color .3s;
}

.megamenu div a:hover {
    opacity: .5;
    transition: .5s;
}

.megamenu div p a:hover::after {
    right: 24px;
}

.megamenu div>ul {
    display: flex;
    flex-wrap: wrap;
}

.megamenu div>ul>li {
    width: 23%;
    margin: 1%;
    background-color: #fff;
    text-align: left;
}

.megamenu div>ul>li>a {
    font-size: 2.0rem;
    color: #222;
    font-weight: bold;
    padding: 15px;
    padding: 10px 0px 10px 15px;
}


/* 第3階層 */
.megamenu div>ul>li>ul {
    padding: 0 0 10px 16px;
}

.megamenu div>ul>li>ul>li>a {
    padding: 4px 0;
    font-weight: 500;
    color: #666;
}

/* 第4階層 */
.megamenu div>ul>li>ul>li>ul {
    margin: 2px 0 10px;
}

.megamenu div>ul>li>ul>li>ul>li {
    margin-left: 4px;
    padding-left: 8px;
    border-left: 1px solid #999;
}

.megamenu div>ul>li>ul>li>ul>li>a {
    padding: 3px 0 6px;
}

/* 第5階層 */
.megamenu div>ul>li>ul>li>ul>li>ul {
    margin: 4px 0 0;
    padding-bottom: 4px;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li {
    margin-left: 6px;
    padding-left: 7px;
    border-left: 1px solid #aaa;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li>a {
    padding: 3px 0 6px;
}

/* 第6階層 */
.megamenu div>ul>li>ul>li>ul>li>ul>li>ul {
    margin: 4px 0 0;
    padding-bottom: 4px;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li>ul>li {
    margin-left: 5px;
    padding-left: 6px;
    border-left: 1px solid #888;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li>ul>li>a {
    padding: 3px 0 6px;
}

/* 第7階層 */
.megamenu div>ul>li>ul>li>ul>li>ul>li>ul>li>ul {
    margin: 4px 0 0;
    padding-bottom: 4px;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li>ul>li>ul>li {
    margin-left: 4px;
    padding-left: 5px;
    border-left: 1px solid #888;
}

.megamenu div>ul>li>ul>li>ul>li>ul>li>ul>li>ul>li>a {
    padding: 3px 0 6px;
}

/*************************** B-04. main共通 ***********************/
.tablet {
    display: none;
}

.tablet-show {
    display: none;
}

.sp {
    display: none;
}

a {
    text-decoration: none;
    color: #237cd5;
    transition: color .3s, background .3s, opacity .3s, border .3s;
}

a:hover {
    opacity: .5;
}

.more {
    text-align: center;
    margin-top: 20px;
}

.more a {
    border: 1px solid #333;
    display: inline-block;
    width: 100%;
    max-width: 300px;
    font-size: 1.4rem;
    padding: 2rem 0;
    border-radius: 10px;
    color: #333;
}
.more a:hover {
    background: #eee;
}

a.pdf::after {
    content: "\f1c1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-left: 6px;
}

.line-break{
    word-break: keep-all;
}

main p {
    font-size: 1.8rem;
    line-height: 3.6rem;
    margin-bottom: 1.8rem;
}

main p strong {
    color: #000;
}

main p.lead {
    font-size: 2.2rem;
}

mark {
    background: linear-gradient(transparent 80%, #6cf 80%);
    font-weight: bold;
}

.const {
    padding: 100px 0;
    text-align: center;
    background: #f0f0f0;
    border: 10px solid #ddd;
    font-size: 2.4rem;
}

.chat {
    margin-bottom: 20px;
    position: relative;
}

.chat:before,
.chat:after {
    clear: both;
    content: "";
    display: block;
}

.chat.left p.img {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
}

.chat.right p.img {
    float: right;
    margin-left: 20px;
    width: 60px;
    height: 60px;
}

.chat p.img img {
    width: 100%;
    height: 100%;
    border: 1px solid #aaa;
    border-radius: 50%;
    margin: 0;
}

.chat p.img span {
    margin-top: -4px;
    font-size: 1.1rem;
    text-align: center;
    display: block;
}

.chat div.txt {
    position: relative;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    max-width: -webkit-calc(100% - 120px);
    max-width: calc(100% - 120px);
    display: inline-block;
}

.chat.left div.txt {
    float: left;
    border-color: #aaa;
    background: #f0f2f4;
}

.chat.right div.txt {
    border-color: #aaa;
    background: #c3f69d;
    float: right;
}

main .chat p {
    margin: 0 0 10px;
    line-height: 1.8;
}

.chat p:last-child {
    margin-bottom: 0;
}

.chat div.txt::before,
.chat div.txt::after {
    position: absolute;
    content: '';
    border: 10px solid transparent;
    top: 15px;
}

.chat.left div.txt::before {
    border-right: 10px solid #aaa;
    left: -20px;
}

.chat.left div.txt::after {
    border-right: 10px solid #f0f2f4;
    left: -19px;
}

.chat.right div.txt::before {
    border-left: 10px solid #aaa;
    right: -20px;
}

.chat.right div.txt::after {
    border-left: 10px solid #c3f69d;
    right: -19px;
}

.related-article-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5rem 0;
}
.related-article-box {
    border: 1px solid #ccc;
    padding: 2rem 2rem 1rem;
    margin: 0 0 4rem;
    position: relative;
    width: 100%;
}
.related-article-box::after {
    position: absolute;
    content: "関連ページ";
    background: #eee;
    color: #111;
    width: 12rem;
    text-align: center;
    padding: 0.8rem 0;
    top: -1.5rem;
    left: 1rem;
}
.related-article-box a {
    display: block;
    text-decoration: none;
    color: #333;
    display: flex;
    font-size: 2.0rem;
}
.related-article-box a:hover {
    opacity: 0.5;
}

.related-article-box div.img img {
    transition: opacity 0.3s;
    width: 18rem;
    height: 12rem;
    margin-right: 1rem;
    object-fit: cover;
}
.related-article-box a:hover div.img img {
    opacity: 0.5;
}
.related-article-box div.txt {
    width: calc(100% - 21rem);
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

dl.faq dt {
    font-size: 2.2rem;
    line-height: 1.6;
    padding: 0 3px;
    display: flex;
    margin-bottom: 3px;
}

dl.faq dt span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #f0f2f4;
    width: 80%;
}

dl.faq dt span::before {
    position: absolute;
    content: '';
    border-right: 15px solid #f0f2f4;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    left: -15px;
    transform: translateY(-50%);
}

dl.faq dt::before {
    content: "Q";
    font-size: 3.6rem;
    background: #171d63;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    margin-right: 10px;
}

dl.faq dd {
    margin-bottom: 5rem;
    line-height: 1.4;
    padding: 0 3px;
    display: flex;
    justify-content: flex-end;
}

dl.faq dd span {
    border-radius: 10px;
    padding: 10px;
    position: relative;
    background: #eee;
    width: 80%;
}

dl.faq dd span::before {
    position: absolute;
    content: '';
    border-left: 15px solid #eee;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    top: 30px;
    right: -15px;
    transform: translateY(-50%);
}

dl.faq dd::after {
    content: "A";
    font-size: 3.6rem;
    background: #999;
    color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

dl.faq img {
    display: block;
}

blockquote {
    padding: 30px 40px 20px;
    background: #f9f9f9;
    color: #666;
    position: relative;
}

blockquote::before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 10px;
}

blockquote::after {
    content: "\f10e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

blockquote p.cite {
    text-align: right;
}

.conversion {
    margin: 25px auto;
    width: 100%;
    text-align: center;
    margin-top: 5rem;
}

.conversion a {
    background: #f3981c;
    color: #fff;
    padding: 3.6rem;
    font-size: 3.6rem;
    display: block;
    text-decoration: none;
}

.miniConversion {
    margin: 25px auto;
    width: 80%;
    max-width: 500px;
    text-align: center;
}
.miniConversion.mt-5{
    margin-top: -5rem;
}

.miniConversion a {
    background: #ddd;
    color: #333;
    padding: 2.4rem;
    font-size: 2.4rem;
    display: block;
    text-decoration: none;
}

.conversion-box {
    background: #EFEEEA;
    margin-top: 19rem;
}

.conversion-box ul {
    display: flex;
    flex-wrap: wrap;
    padding: 7rem 0;
    justify-content: space-between;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.conversion-box ul li {
    width: 32%;
    list-style: none;
    text-align: center;
}

.conversion-box ul li a {
    color: #fff;
    padding: 4.8rem 0;
    width: 100%;
    display: block;
    background: #F7941D;
    border-radius: 10px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.conversion-box ul li.line a {
    background: #4DC764;
}

.conversion-box ul li a img {
    display: block;
    margin: 0 auto 3rem;
    width: 82px;
    height: auto;
}

a.blank::after {
    content: "\f24d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-left: 6px;
}

p.annotation {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #999;
}

ul.listing {
    margin-left: 30px;
    margin-bottom: 26px;
}

ul.listing li {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

ol.listing {
    margin-left: 30px;
    margin-bottom: 26px;
}

ol.listing li {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
ul.list-flex{
    display:flex;
    flex-wrap: wrap;
}
.list-flex li{
    list-style: none;
    line-height: 1.6;
}
.list-flex li:after{
    content: "、";
}
.list-flex li:last-of-type:after{
    display: none;
}
ul.twoColumns,
ul.threeColumns,
ul.fourColumns,
ul.fiveColumns,
ul.sixColumns {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
    list-style: none;
}

ul.twoColumns.center li,
ul.threeColumns.center li,
ul.fourColumns.center li,
ul.fiveColumns.center li,
ul.sixColumns.center li {
    text-align: center;
}

ul.twoColumns li {
    width: 48%;
    margin: 1%;
}

ul.threeColumns li {
    width: 31.3333%;
    margin: 1%;
}

ul.fourColumns li {
    width: 23%;
    margin: 1%;
}

ul.fiveColumns li {
    width: 18%;
    margin: 1%;
}

ul.sixColumns li {
    width: 14.6666%;
    margin: 1%;
}

ul.twoColumns li img,
ul.threeColumns li img,
ul.fourColumns li img,
ul.fiveColumns li img,
ul.sixColumns li img {
    width: 100%;
    height: auto;
    display: block;
}

.flex-container-two,
.flex-container-three,
.flex-container-four {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}

.flex-container-two>* {
    width: 48%;
    margin: 0 1% 3%;
}

.flex-container-three>* {
    width: 31.3333%;
    margin: 0 1% 3%;
}

.flex-container-four>* {
    width: 23%;
    margin: 0 1% 3%;
}

.flex-container-three p,
.flex-container-four p {
    font-size: 1.6rem;
    line-height: 2.8rem;
}

.max30percent {
    width: 30%;
}

.max40percent {
    width: 40%;
}

.max50percent {
    width: 50%;
}

.max60percent {
    width: 60%;
}

.max70percent {
    width: 70%;
}

.max80percent {
    width: 80%;
}

.max30percent img,
.max40percent img,
.max50percent img,
.max60percent img,
.max70percent img,
.max80percent img {
    width: 100%;
    height: auto;
}

td,
th {
    line-height: 1.4;
}

div.data {
    overflow: auto;
    white-space: nowrap;
}

div.data::-webkit-scrollbar {
    height: 5px;
}

div.data::-webkit-scrollbar-track {
    background: #F1F1F1;
}

div.data::-webkit-scrollbar-thumb {
    background: #BCBCBC;
}

div.data table {
    width: 100%;
    margin-bottom: 10px;
}

div.data table caption {
    margin-bottom: 5px;
    font-size: 80%;
    color: #666;
}

div.data table thead th {
    padding: 15px 5px;
    background: #f0f2f4;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}

div.data table tbody th {
    white-space: nowrap;
}

div.data table tbody td {
    padding: 12px 5px;
    text-align: center;
}

div.data table tbody tr {
    background: #f7f7f7;
}

div.data table tbody tr:nth-child(2n+1) {
    background: #fff;
}

div.data table tr:hover {
    background: #eee;
}

.chart table {
    border-spacing: 0;
    width: auto;
    min-width: 400px;
    table-layout: fixed;
    margin-bottom: 10px;
}

.chart table caption {
    margin-bottom: 5px;
}

.chart table thead th {
    background: #f0f2f4;
    border-bottom: 1px solid #ccc;
    padding: 15px 5px;
    text-align: left;
}

.chart table tbody th {
    padding: 12px 5px;
    text-align: left;
}

.chart table tbody td {
    padding: 12px 5px;
}

.chart table tbody tr {
    background: #f7f7f7;
}

.chart table tbody tr:nth-child(2n+1) {
    background: #fff;
}

.chart table tbody tr:hover {
    background: #eee;
}


div.scroll table {
    word-break: break-all;
    table-layout: fixed;
    display: block;
    max-height: 80vh;
    margin-bottom: 10px;
}

div.scroll table caption {
    margin-bottom: 5px;
}

div.scroll thead th {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 15px 5px;
    background: #f0f2f4;
}

div.scroll thead th:first-child {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background: #f0f2f4;
}

div.scroll tbody tr {
    background: #f7f7f7;
}

div.scroll tbody tr:nth-child(2n+1) {
    background: #fff;
}

div.scroll tbody tr:hover {
    background: #eee;
}

div.scroll tbody th {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 2;
    border: none;
    white-space: normal;
    min-width: 80px;
    padding: 12px 5px;
    text-align: left;
}

div.scroll tbody td {
    padding: 12px 5px;
    text-align: center;
}

div.scroll th,
div.scroll td {
    position: relative;
    border: none;
    z-index: 0;
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}

div.scroll th::before,
div.scroll td::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-right: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
    z-index: -1;
}

div.scroll thead th::before {
    border-top: 1px solid #dedede;
    z-index: -1;
}

div.scroll thead tr th:first-child::before,
div.scroll tbody tr th:first-child::before {
    border-left: 1px solid #dedede;
    z-index: -1;
}

div.scroll tbody tr th {
    background: #f7f7f7;
}

div.scroll tbody tr:nth-child(2n+1) th {
    background: #fff;
}

div.largeT table {
    margin-bottom: 10px;
}

div.largeT table caption {
    margin-bottom: 5px;
}

div.largeT thead th {
    padding: 15px 5px;
    background: #f0f2f4;
    border: 1px solid #dedede;
}

div.largeT tbody tr {
    background: #f7f7f7;
}

div.largeT tbody tr:nth-child(2n+1) {
    background: #fff;
}

div.largeT tbody tr:hover th,
div.largeT tbody tr:hover td,
div.largeT tbody tr:hover:nth-child(2n+1) th {
    background: #eee;
}

div.largeT tbody th {
    padding: 12px 5px;
    text-align: left;
    border: 1px solid #dedede;
    vertical-align: middle;
    line-height: 1.2;
    white-space: nowrap;
}

div.largeT tbody td {
    vertical-align: middle;
    line-height: 1.2;
    border: 1px solid #dedede;
    padding: 12px 5px;
}

dl.table {
    margin: 0px 0 15px;
    list-style: none;
    overflow: auto;
}

dl.table dt {
    clear: both;
    width: 200px;
    float: left;
    padding: 15px 0;
    line-height: 1.6;
}

dl.table dd {
    border-bottom: 1px solid #ddd;
    padding: 15px 0 15px 200px;
    line-height: 1.6;
}

dl.table dd ul {
    margin-left: 20px;
}

dl.table dd ul li {
    margin-bottom: 5px;
}

div.flow-ol-container ol {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    background: linear-gradient(to right, #f0f2f4, #999);
    counter-reset: flow-list;
}

div.flow-ol-container ol li {
    list-style: none;
    width: calc(100% / 6);
    text-align: center;
    padding: 100px 0;
    background: url(../images/icons/flow-start.svg) no-repeat right center, url(../images/icons/flow-right-end.svg) no-repeat left center;
    background-size: auto 60%;
}

div.flow-ol-container ol li:last-child {
    background: url(../images/icons/flow-right-end.svg) no-repeat left center;
    background-size: auto 60%;
}

div.flow-ol-container ol li:first-child {
    background: url(../images/icons/flow-right-start.svg) no-repeat right center;
    background-size: auto 60%;
}

div.flow-ol-container ol li::before {
    counter-increment: flow-list;
    content: counter(flow-list);
    display: block;
    font-size: 4.8rem;
    padding-bottom: 1rem;
}

.iframe-content {
    position: relative;
    width: 100%;
    padding: 56.25% 0 0 0;
}

.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.leftImg .img {
    float: left;
    margin-right: 30px;
    width: 35%;
}

div.leftImg img {
    width: 100%;
    height: auto;
}

div.rightImg .img {
    float: right;
    margin-left: 30px;
    width: 35%;
}

div.rightImg img {
    width: 100%;
    height: auto;
}

video {
    width: 100%;
}

.screenshot {
    text-align: center;
}

.screenshot img {
    max-width: calc(100% - 12px);
    height: auto;
    margin: 1rem auto 2rem;
    box-shadow: 0 0 6px #333;
}

ul.updateDate li {
    list-style: none;
    margin-bottom: 10px;
}

ul.updateDate li span {
    background: #FF0;
    font-size: 1rem;
    padding: 1px 4px;
    border: 1px solid #ccc;
    margin-right: 5px;
}

.page-parent {
    display: flex;
    margin: 2% -1%;
    flex-wrap: wrap;
}

.page-parent li {
    width: 48%;
    margin: 1%;
    list-style: none;
    background: #f0f2f4;
    min-height: 14.0rem;
}

.page-parent li a {
    display: flex;
    align-items: center;
    padding: 0 1.0rem 0 2.4rem;
    font-size: 2.0rem;
    line-height: 1.4;
    color: #333;
    position: relative;
    width: 100%;
    height: 100%;
}

.page-parent li a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 51%;
    left: 1.2rem;
    transform: translateY(-50%);
}

.lazyload-box img {
    opacity: 0;
    transform: translate(0, 50px);
    transition: 2s;
}

.lazyload-box img.lazyloaded {
    transform: translate(0, 0);
    opacity: 1;
}

.point {
    border-radius: 4px;
    border: #6DC8DB 1px solid;
    position: relative;
    padding: 20px 30px 12px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.point span {
    background: #6DC8DB;
    width: 58px;
    border-radius: 50%;
    color: #fff;
    position: absolute;
    display: block;
    padding: 10px;
    border-radius: 50%;
    letter-spacing: 1px;
    top: -30px;
    left: 20px;
}

.lead-list {
    border-radius: 4px;
    background: #f5f5f5;
    position: relative;
    padding: 50px 20px 20px;
    margin-bottom: 50px;
}

.lead-list:before {
    content: "この記事でわかること";
    background: #6DC8DB;
    color: #fff;
    position: absolute;
    display: block;
    padding: 10px;
    border-radius: 2px;
    letter-spacing: 1px;
    top: 0;
    left: 0;
}
.lead-list ul.listing {
    margin-bottom: 0;
}

.d-none{
    display: none;
}
/*************************** B-05. h1,h2見出し *******************/
h1 {
    font-size: 4.0rem;
    margin-bottom: 4.0rem;
    line-height: 5.4rem;
}

h1 span {
    font-size: 1.8rem;
    display: block;
    font-weight: normal;
    line-height: 3;
}

h2 {
    font-size: 3.0rem;
    margin: 0 0 3.0rem;
    position: relative;
    border-bottom: 3px solid #eee;
}

#page h2 {
    padding: 1rem 0;
    line-height: 1.4;
}

h2::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 300px;
    height: 0;
    border-bottom: 3px solid #171d63;
}

h3 {
    font-size: 2.6rem;
    margin-bottom: 2.6rem;
    font-weight: bold;
    border-left: 1.0rem solid #999;
    padding-left: 1.0rem;
    margin-bottom: 2.0rem;
}

h4 {
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
    padding-left: 5.6rem;
    position: relative;
    font-weight: bold;
    border-left: 0.8rem solid #aaa;
    padding-left: 0.8rem;
    margin-bottom: 1.0rem;
}

h5 {
    font-size: 2.0rem;
    margin-bottom: 2.0rem;
    border-left: 6px solid #bbb;
    padding-left: 6px;
    margin-bottom: 10px;
}

h6 {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    border-left: 0.4rem solid #ccc;
    padding-left: 0.4rem;
    margin-bottom: 1.0rem;
}

#page h1 {
    font-weight: normal;
}

#top h2,
#page h2 {
    font-size: 3rem;
    position: relative;
    margin-bottom: 3rem;
    border-bottom: none;
    font-weight: normal;
}

#top h2::after,
#page h2::after {
    display: none;
}

#page h2 {
    border-bottom: 1px #222 solid;
    margin-bottom: 2rem;
    font-size: 3.2rem;
}

#page h3 {
    font-size: 2.6rem;
    margin-bottom: 2.6rem;
    font-weight: normal;
    border-left: 1.0rem solid #999;
    padding-left: 1.0rem;
    margin-bottom: 2.0rem;
    margin-top: 2rem;
}


/*目次*/
main.column h1 {
    counter-reset: chapter;
}
main.column h2 {
    counter-reset: sub-chapter;
}
main.column h2::before {
    counter-increment: chapter;
    content: "chapter " counter(chapter) ".";
    display: block;
    font-size: 60%;
    opacity: 0.7;
    font-weight: normal;
}
main.column h3 {
    counter-reset: section;
    margin-bottom: 10px;
}
main.column h3::before {
    counter-increment: sub-chapter;
    content: "chapter " counter(chapter) "-"counter(sub-chapter) ". ";
    display: block;
    font-size: 60%;
    opacity: 0.7;
    font-weight: normal;
    padding-bottom:0.8rem;
}
main.column h4 {
    border-left: 6px solid #aaa;
    padding-left: 5px;
    margin-bottom: 10px;
}
main.column h4::before {
    counter-increment: section;
    content: "chapter " counter(chapter) "-"counter(sub-chapter) "-"counter(section) ". ";
    display: block;
    font-size: 70%;
    opacity: 0.7;
    font-weight: normal;
    padding-bottom:0.6rem;
}
main.column h4::after {
    content: none;
}
main.column h5 {
    counter-reset: h5;
}
main.column h5::before {
    counter-increment: h4;
    content: "chapter " counter(h1) "-"counter(h2) "-"counter(h3) "-"counter(h4) ". ";
    display: block;
    font-size: 80%;
    opacity: 0.7;
    font-weight: normal;
}
main.column h6 {
    counter-reset: h6;
}
main.column h6::before {
    counter-increment: h5;
    content: "chapter " counter(h1) "-"counter(h2) "-"counter(h3) "-"counter(h4) "-"counter(h5) ". ";
    font-size: 80%;
    display: block;
    opacity: 0.7;
    font-weight: normal;
}

main.column h2 a,
main.column h3 a,
main.column h4 a,
main.column h5 a,
main.column h6 a {
    color: #333;
}

div.page-index {
    background: #f0f2f4;
    width: 80%;
    max-width: 800px;
    margin: 0px auto 50px;
    padding: 2%;
    box-sizing: border-box;
}

div.page-index p {
    text-align: center;
    border-bottom: 1px dotted #ccc;
}

div.page-index>ol {
    margin-left: 0;
}

div.page-index>ol ol {
    padding-left: 20px;
}

div.page-index ol {
    counter-reset: section;
    margin-bottom: 10px;
}

div.page-index ol li {
    line-height: 1.6;
    list-style: none;
}

div.page-index ol a {
    font-size: 1.4rem;
    color: #333;
    text-decoration: none;
    transition: 0.5s;
}

div.page-index ol a:hover {
    text-decoration: underline;
}

div.page-index ol>li:before {
    content: counters(section, '-') '. ';
    counter-increment: section;
    font-size: 1.4rem;
    color: #333;
}

p.hundred img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*************************** B-06. breadcrumb ********************/
.breadcrumb {
    font-size: 1.4rem;
    margin: 20px auto 0;
    color: #999;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
}

.breadcrumb li::after {
    padding: 0 8px;
    color: #ccc;
}

.breadcrumb li:not(:last-child)::after {
    content: '>';
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #06F;
    opacity: 1;
}

.breadcrumb li:first-child a::before {
    content: "\f015";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 3px;
}

.breadcrumb.view {
    margin: 5px 10px 0 0;
}


/*************************** B-07. pager backnumber等 *************/
.pager {
    border-top: 1px solid #ddd;
    margin-top: 2rem;
    padding-top: 1rem;
}

.pager ul.order {
    list-style: none;
}

.pager ul.order li {
    border: 1px solid #ddd;
    text-align: center;
    width: 100px;
    padding: 10px 0;
}

.pager ul.order li.prev {
    float: left;
}

.pager ul.order li.next {
    float: right;
}

.pager ul.order li a {
    color: #fff;
    background: #09f;
    display: block;
    padding: 10px 0;
    margin: -10px 0;
    text-decoration: none;
}


.pager ul.direct {
    clear: both;
    display: table;
    margin: 0 auto;
    border-spacing: 5px;
    /* 左右 上下で記述 */
}

.pager ul.direct li {
    display: table-cell;
    border: 1px solid #ddd;
    text-align: center;
    padding: 8px 0;
    min-width: 34px;
}

.pager ul.direct li a {
    padding: 8px 1rem;
    display: block;
    width: 100%;
    margin: -8px 0;
    color: #fff;
    background: #09f;
}

.pager ul.direct li a:hover {
    background: #0CF;
}
.backnumber h3{
	padding:0;
	border: none;
	margin-bottom: 0;
    font-size: 1.8rem;
}
.backnumber h3 a{
    color: #333;
}

/*************************** B-08. aside *************************/
aside {
    width: 32%;
    max-width: 390px;
    height: 100%;
    margin-left: 20px;
    margin-top: 4rem;
    top: 0;
    /*position: sticky;*/
}

#page aside {
    margin-top: 0;
}

.aside-01 {
    background: #EFEFEF;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

aside div.aside-01-tit {
    margin-top: 0;
}

aside div.aside-01-tit::before {
    content: url(../images/img/top_11.png);
    vertical-align: middle;
    padding-right: 10px;
}

.aside-01 form {
    position: relative;
}

.aside-01 form input[type="text"] {
    padding: 18px;
    width: 100%;
    border: 1px solid #E2E2E2;
    border-radius: 10px;
    background-color: #fff;
    position: relative;
    display: inline-block;
    outline: none;
    transition: background-color .3s, border .3s;
    font-size: 18px;
}

.aside-01 form input[type="submit"] {
    position: absolute;
    top: 48.5%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    padding: 11px 4px 11px 6px;
    width: 94px;
    border-radius: 12px;
    background: #404042;
    border: none;
    text-align: center;
    letter-spacing: 2px;
    margin-left: -4px;
    cursor: pointer;
    transition: background-color .3s;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0px 2px 0px 0px #000;
}

.aside-01 form input[type="submit"]:hover {
    opacity: 0.7;
}



.aside-01 dl {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.5rem;
    margin-top: 2rem;
}
.aside-01 dl dt{
    margin-bottom: 1rem;
}
.aside-01 dl dd a {
    display: inline-block;
    margin-right: 1rem;
    color: #000;
    line-height: 2;
}

.aside-02 {
    margin-bottom: 3rem;
}

.aside-03 {
    margin-bottom: 8rem;
}

aside .tit.aside-03-tit {
    margin-bottom: 3rem;
}

aside div.aside-03-tit::before {
    content: url(../images/img/top_10.png);
    padding-right: 10px;
}
.aside-03>a{
    color:#333;
}
.aside-03> div {
    display: flex;
    justify-content: start;
    margin-bottom: 3rem;
}

.aside-03>div>div {
    max-width: 254px;
    flex-grow: 1;
    margin-left: 1.8rem;
}

.aside-03>div figure {
    width: 100%;
    max-width: 120px;
}

.aside-03 >div figure img {
    aspect-ratio: 120/96;
    object-fit: cover;
    border-radius: 8px;
}

.aside-03 div ul li {
    list-style: none;
}

.aside-03-ttl {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}
.aside-03-ttl a{
    color:#333;
}

.aside-03-price {
    font-size: 2rem;
    color: #f7941d;
    margin-bottom: 1rem;
    line-height: 1;
}

.aside-03-price span {
    font-size: 1.5rem;
    color: #000;
    margin-left: 1rem;
}

.aside-03-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}

.aside-03-tags li {
    margin-right: 1rem;
}

.aside-03-tags li a {
    display: block;
    font-size: 1.5rem;
    background: #afcdd4;
    color: #fff;
    padding: 8px 10px;
    border-radius: 1.6rem;
    min-width: 80px;
    text-align: center;
    letter-spacing: 2px;
}

.aside-04 {
    background: #F3F2ED;
    padding: 3.5rem 2rem 2rem;
    border: 2px solid #E1E1E1;
    border-radius: 12px;
    position: relative;
}

.aside-04:before {
    content: url(../images/img/top_08.png);
    position: absolute;
    top: -62px;
    left: -8px;
    z-index: 1;
}

.aside-04:after {
    content: url(../images/img/top_09.png);
    position: absolute;
    top: -64px;
    right: 0;
}

.aside-04 .tit {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    text-align: center;
    background: #6DC8DB;
    padding: 1rem;
    border: 1px solid #808080;
    width: 86%;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: #404041;
    margin-top: 0;
    border-radius: 8px;
}

@media screen and (max-width:1500px) {
    .aside-04 .tit {
        font-size: 1.6rem;
    }
}

.aside-04 ul {
    margin-bottom: 0;
}

.aside-04 ul li {
    list-style: none;
}

.aside-04 ul li a {
    font-size: 1.5rem;
    line-height: 4rem;
    color: #000;
    cursor: pointer;
}

.aside-04 ul li a:before {
    content: '＞';
    margin-right: 0.6rem;
}

.aside-04>p {
    text-align: right;
    font-size: 1.5rem;
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 2px solid #c8c8c4;
}

.aside-04>p a {
    color: #000;
}

.aside-04>p:after {
    content: '＞';
    margin-left: 0.8rem;
}

aside div.aside-05-tit {
    margin-bottom: 1.8rem;
}

aside .tit {
    margin-top: 6rem;
    margin-bottom: 0.8rem;
    font-size: 2.5rem;
}

aside nav ul li {
    margin-bottom: 1px;
}

aside nav ul li ul {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px solid #ccc;
}

aside nav ul li.here>a {
    color: #009bde;
    font-weight: bold;
}

aside nav ul li.here>a::before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 4px;
    color: #009bde;
}

aside nav ul li a {
    display: block;
    color: #333;
    font-size: 1.4rem;
}

aside nav ul li a:hover {
    background-color: #fff;
    opacity: 1;
}

aside nav>ul>li {
    margin-bottom: 1px;
}

aside nav>ul>li>a {
    font-size: 1.8rem;
    font-weight: bold;
    padding: 10px 5px;
}

aside nav>ul>li>ul>li a {
    padding: 6px 4px;
}

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
    background: #f5f5f5;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 1% 1% 1% 44px;
    transition: all .5s ease;
}
.title p{
	margin-bottom: 0;
}
.title a:hover{
	opacity: 0.7;
}

/*アイコンの＋と×*/
.title::before,
.title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title::before{
    top:21px;
    left: 15px;
    transform: rotate(0deg);
    
}
.title::after{    
    top:21px;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
  transform: rotate(45deg);
}

.title.close::after{
  transform: rotate(-45deg);
}

.title > p a{
	display: inline;
	font-size: 1.8rem;
    color: #333;
}
.title > p a:hover{
	text-decoration: underline;
}
.title a{
	font-size: 1.6rem;
    color: #333;
}

/*アコーディオンで現れるエリア*/
.box {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
  margin:0 3% 3% 1%;
    padding: 3%;
}


/*************************** B-09. footer ************************/
footer {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
}

ul.footerNav {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

ul.footerNav li {
    list-style: none;
}

ul.footerNav li a {
    font-size: 2rem;
    padding: 0 18px;
    color: #333;
    text-decoration: none;
}

footer .logo img {
    max-width: 260px;
    margin-top: 30px;
}

address {
    font-size: 1.2rem;
    margin: 30px 0;
    line-height: 2.0;
}

small {
    display: block;
    padding: 34px 0;
    font-size: 1.2rem;
}

footer .contigo a {
    color: #aaa;
    text-decoration: none;
    display: inline-block;
    padding: 10px 0;
    font-size: 1.2rem;
}

footer .contigo a:hover {
    color: #333;
}

footer .contigo span {
    position: relative;
    margin-left: 24px;
}

footer .contigo span::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    left: -19px;
    background: url(../images/common/contigo.svg) no-repeat;
    background-size: contain;
    top: 50%;
    transform: translateY(-50%);
}

ul.edit-link li {
    position: fixed;
    bottom: 4px;
    right: 4px;
    list-style: none;
    z-index: 9999;
}

ul.edit-link li img {
    width: 30px;
    height: auto;
}

#pageTop {
    position: fixed;
    bottom: 5%;
    right: 2%;
}

#pageTop a {
    z-index: 999;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#pageTop a::before {
    content: "\f35b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 3.6rem;
    padding-bottom: 6px;
    text-shadow: 0px 0px 5px #fff;
}

#pageTop a:hover {
    text-decoration: none;
    opacity: 0.7;
}


/*************************** B-10. toppage ***********************/
.top-01 {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.top-01 img {
    width: 100%;
    height: auto;
}
.top-map{
    margin-top: 1rem;
}
.top-02-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.top-02-container::after {
    content: "";
    display: block;
    width: 30%;
}

.top-02-container>* {
    width: 30%;
}
main article#top .top-02-container section {
    margin-bottom: 8rem;
    margin-top: 0;
    max-width: 986px;
}

main article .top-02-container figure img {
    aspect-ratio: 5/3.2;
    border-radius: 1rem;
}

.top-02-container ul li {
    list-style: none;
    margin-right: 1.2rem;
    margin-top: 1rem;
}

.top-02-ttl {
    font-size: 1.6rem;
    font-weight: normal;
    padding: 1rem;
    line-height: 1.4;
    padding-left: 0;
    border-left: 0;
    margin-bottom: 0;
}

.top-02-price {
    font-size: 2.5rem;
    line-height: 1;
    color: #f7941d;
    margin-bottom: 0rem;
}

.top-02-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.top-02-tags li {
    list-style: none;
    margin-right: 1.2rem;
    margin-top: 1rem;
}

.top-02-tags li a {
    display: block;
    font-size: 1.5rem;
    background: #afcdd4;
    color: #fff;
    padding: 8px 10px;
    border-radius: 1.6rem;
    min-width: 80px;
    text-align: center;
    letter-spacing: 2px;
}

.btn a {
    display: block;
    text-align: center;
    width: 100%;
    background: #404041;
    color: #fff;
    padding: 18px;
    border-radius: 30px;
    letter-spacing: 1px;
    font-size: 1.8rem;
    box-shadow: 0px 1px 0px 1px #030303;
    transition: 0.5s;
}

.btn:hover a {
    box-shadow: none;
    transform: translateY(1px);
}

main article#top section.top-05 {
    margin-top: 8rem;
    margin-bottom: 9rem;
}

#top .top-05 h2 {
    margin-bottom: 2.6rem;
}

dl.table-news {
    margin: 0px 0 30px;
    list-style: none;
    overflow: auto;
    font-size: 1.5rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

dl.table-news dt {
    clear: both;
    width: 120px;
    float: left;
    padding: 0;
    color: #000;
}

dl.table-news dd {
    padding: 0 0 0 120px;
    margin-bottom: 1rem;
}

dl.table-news dd a {
    color: #000;
    word-break: break-word;
}

dl.table-news span.new {
    text-align: center;
    color: #ff0000;
}

.more-02 {
    text-align: right;
    font-size: 1.5rem;
}

.more-02 a {
    color: #000;
}

.top-06 {
    background: #F3F2ED;
    padding-top: 3rem;
    border-radius: 8px;
    border: 3px solid #d5d5d5;
}
.top-06 ul{
    display: flex;
    flex-wrap: wrap;
    padding: 1rem;
}
.top-06 ul li{
    display: block;
    margin: 1rem;
    color: #aaa;
}
.top-06 ul li a{
    color: #333;
}
.top-06 ul li a:first-of-type:before{
    display: none;
}
.top-06 ul li a:before{
    content: "/";
    color: #ddd;
    padding: 0 0.5rem;
}

#top .top-06 h2 {
    padding-left: 3rem;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.top-06 h2::before {
    content: url(../images/img/top_07.png);
    vertical-align: middle;
    padding-right: 12px;
}

.top-06 figure {
    text-align: center;
    padding-bottom: 2rem;
}

.top-06 p {
    padding: 3rem 6rem;
    font-size: 1.5rem;
    line-height: 4rem;
    letter-spacing: 1px;
    margin-bottom: 0;
}

main article#top section.top-07 {
    margin-top: 5rem;
}
.top-07{
    margin-bottom: -3rem;
}
#top .top-07 h2 {
    margin-bottom: 3rem;
}
.top-07 h1{
    font-size: 2rem;
    margin-top: 5rem;
    margin-bottom: 1.4rem;
    line-height: 1.3;
}

.top-07 p {
    font-size: 1.5rem;
    line-height: 1.6;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.top-07 div.rightImg .img {
    width: 12%;
    margin-left: 60px;
}
main article section.top-08{
    margin-top: 4rem;
}

#top .top-08 h2{
    margin-bottom:1.4rem;
}
.top-08 ul{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1%;
}
.top-08 ul li{
    width:23%;
    margin: 0 1% 1.5%;
    list-style: none;
}
.top-08 ul li img{
    border-radius: 1rem;
}

/*************************** B-11. form **************************/
main#form {
    margin: 0 auto;
    justify-content: center;
}

form dl {
    padding: 0 10px;
    background: #f0f2f4;
    margin-bottom: 30px;
}

form dl dt {
    float: left;
    width: 260px;
    padding: 10px 0 10px;
    min-height: 60px;
    line-height: 1.6;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

form dl dd {
    padding: 10px 0 10px 260px;
    line-height: 1.6;
    font-size: 16px;
    border-bottom: 3px solid #fff;
}

form dl dd:last-child {
    border-bottom: none;
}

form span.required,
form span.will,
form span.fixed {
    float: right;
    margin-right: 15px;
    background: #009bde;
    color: #fff;
    padding: 1px 4px 2px;
    text-decoration: none;
    border-bottom: none;
    font-size: 1.4rem;
}

form span.will {
    background: #999;
    color: #fff;
}

form span.fixed {
    background: #333;
    color: #fff;
}

form dl input,
form dl select,
form dl textarea {
    ime-mode: active;
    font-size: 16px;
    transition: .3s;
    border: 1px solid #ccc;
    width: 100%;
    padding: 10px;
    color: #333;
}

form dl input:not([type="radio"]):focus,
form dl select:focus,
form dl textarea:focus {
    border: 1px solid #009bde;
    outline: none;
    box-shadow: 0 0 4px #009bde;
}

.width80 {
    max-width: 80px;
}

.width100 {
    max-width: 100px;
}

.width150 {
    max-width: 150px;
}

.width200 {
    max-width: 200px;
}

.width250 {
    max-width: 250px;
}

.width300 {
    max-width: 300px;
}

.width400 {
    max-width: 400px;
}

form dl textarea {
    height: 150px;
    line-height: 1.4;
}

form.filter {
    margin-bottom: 8rem;
}

form.filter dl dt {
    width: 150px;
}

form.filter dl dd {
    padding-left: 150px;
}

form.filter dl dd .filter-flex {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

form.filter dl label {
    padding: 4px 8px;
    padding-left: 38px;
}

form.filter dl dd .filter-flex>* {
    width: 30%;
    margin-bottom: 2rem;
}

form.filter ul li {
    list-style: none;
    position: relative;
}

form.filter ul li.filter-title {
    font-weight: bold;
}

form.filter ul li input[type=checkbox] {
    position: absolute;
    top: 50%;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: fit-content;
    float: left;
    display: block;
}

form.filter ul li input[type=checkbox]::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    width: 28px;
    height: 28px;
    left: -1rem;
    margin-top: -13px;
    position: absolute;
    top: 50%;
}

form.filter ul li input[type=checkbox]::after {
    border-right: 3px solid #237cd5;
    border-bottom: 3px solid #237cd5;
    content: '';
    display: block;
    height: 16px;
    left: 0px;
    margin-top: -10px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
    transition: opacity .3s;
}

form.filter ul li input[type=checkbox]:checked::after {
    opacity: 1;
}

/*checkbox*/
form dl label {
    cursor: pointer;
    display: block;
    padding: 4px 32px;
    position: relative;
    width: auto;
}

form dl input[type=checkbox] {
    display: none;
}

form dl label input[type=checkbox]+span::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    left: 0;
    margin-top: -13px;
    position: absolute;
    top: 50%;
}

form dl label input[type=checkbox]+span::after {
    border-right: 3px solid #237cd5;
    border-bottom: 3px solid #237cd5;
    content: '';
    display: block;
    height: 16px;
    left: 7px;
    margin-top: -13px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
    width: 8px;
    transition: opacity .3s;
}

form dl label input[type=checkbox]:checked+span::after {
    opacity: 1;
}

/*radio*/
form dl label input[type=radio] {
    position: absolute;
    top: 19px;
    left: 9px;
    width: 15px;
    z-index: -1;
}

.radio-01 {
    position: relative;
    padding: 4px 0;
    width: 100%;
    margin-left: 32px;
}

form dl label input[type=radio]+span {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    padding: 5px 30px;
    margin-left: -32px;
    position: relative;
    width: auto;
}

form dl label input[type=radio]+span::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 24px;
    width: 24px;
    left: 0;
    margin-top: -13px;
    position: absolute;
    top: 50%;
}

form dl label input[type=radio]+span::after {
    background: #237cd5;
    border-radius: 50%;
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    left: 4px;
    margin-top: -9px;
    opacity: 0;
    position: absolute;
    top: 50%;
    transition: opacity .3s;
}

form dl label input[type=radio]:checked+span::after {
    opacity: 1;
}

form .submit {
    text-align: center;
}

form .submit input {
    font-size: 4.0rem;
    width: 100%;
    padding: 2.0rem;
    background: #f3981c;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: opacity .3s;
}

.submit input:hover {
    opacity: .7;
}





/*************************** B-13. 検索結果 ***********************/
main#search article {
    counter-reset: h1;
}

main#search article section h2::before {
    counter-increment: h1;
    content: counter(h1) ". ";
    font-size: 80%;
}

.submit02 input[type="submit"] {
    position: absolute;
    top: 48.5%;
    right: 5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    padding: 11px 4px 11px 6px;
    width: 94px;
    border-radius: 12px;
    background: #404042;
    border: none;
    text-align: center;
    letter-spacing: 2px;
    margin-left: -4px;
    cursor: pointer;
    transition: background-color .3s;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0px 2px 0px 0px #000;
    transition: 0.3s;
}

.submit02 input[type="submit"]:hover {
    transform: translateY(-46%);
    box-shadow: none;
}

.keyword-search dd {
    position: relative;
}

form dl.keyword-search dt {
    height: 84px;
}

form .keyword-search input {
    padding: 24px;
}

#search p em {
    font-weight: bold;
    font-size: 150%;
    color: #009bde;
}

p.search-jump {
    display: none;
}

.search-btn {
    margin: 15px auto;
    width: 80%;
    max-width: 500px;
    text-align: center;
}

.search-btn input {
    background: #ddd;
    color: #333;
    padding: 1rem 2.4rem;
    font-size: 1.8rem;
    width: 100%;
    border: none;
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: .5s;
}

.search-btn input:hover {
    opacity: .5;
}

ul.search-list li {
    list-style: none;
    font-size: 1.8rem;
    line-height: 1.6;
}

.search article {
    margin-top: 6rem;
}
.search .top-02-container>*{
    margin-top: 4rem;
}
.search-number strong{
    font-size:2.4rem;
}

.hidden-box {
    margin: 1.0rem 0;
}

.hidden-box label.search-label {
    padding: 5px;
    text-align: center;
    margin: 0 auto;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    transition: .5s;
}

.hidden-box label.search-label::before {
    display: inline-block;
    content: '\f078';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 5px;
    transition: 0.2s;
}

.hidden-box label.search-label:hover {
    background: #eee;
}

.hidden-box input:checked~label.search-label:before {
    content: '\f00d';
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.hidden-box>input {
    display: none;
}

.hidden-box .hidden-show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
}

.hidden-box input:checked~.hidden-show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

ul.tags {
    display: flex;
}

ul.tags li {
    text-align: center;
    list-style: none;
    margin-right: 8px;
}

ul.tags li a {
    background: #f0f2f4;
    color: #333;
    border-radius: 5px;
    padding: 2px 8px 4px;
    font-size: 1.4rem;
}

ul.tags li a::before {
    content: "#";
}

/*************************** B-14. 内部ページ ***********************/
.page-header {
    text-align: center;
    margin-bottom: 0;
}

.page-header img {
    width: 100%;
    max-width: 1280px;
    height: auto;
}

/*物件詳細*/
#page .property h2 {
    border-bottom: 0;
}

.bx-wrapper .bx-pager.bx-custom-pager {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.bx-wrapper .bx-pager.bx-custom-pager::before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
    margin: 1% 0;
}

.bx-wrapper .bx-pager.bx-custom-pager::after {
    content: "";
    display: block;
    width: 23%;
    margin: 1% 0;
}

.bx-wrapper .bx-pager-item {
    width: 23%;
    margin: 1% 0;
}

.bx-wrapper .bx-controls-direction a {
    top: 34%;
}

.bx-wrapper .bx-pager-item::before {
    content: "";
    display: block;
    width: 23%;
    order: 1;
}

.bx-wrapper .bx-pager-item::after {
    content: "";
    display: block;
    width: 23%;
}

.bx-wrapper .bx-pager.bx-custom-pager img {
    width: 100%;
    max-width: 100%;
}

.property-point {
    background: #FFF4E6;
    color: #f7941d;
    padding: 9rem 2rem;
    font-size: 3rem;
    position: relative;
    border-radius: 10px;
    border: 2px solid;
    margin-bottom: 4rem;
}

.property-point a {
    color: #222;
}

.property-point p {
    margin-bottom: 0;
    font-size: 2.6rem;
    text-align: center;
}

.property-point span {
    background: #f7941d;
    color: #fff;
    position: absolute;
    display: block;
    padding: 19px;
    border-radius: 10px;
    letter-spacing: 1px;
    top: -10px;
    left: 22px;
}

.property-campain {
    font-size: 3rem;
    text-align: center;
    margin: 4rem 0;
}

dl.property-data {
    border: dotted 2px #858585;
    text-align: center;
    padding: 0 2rem;
    font-size: 2rem;
    border-radius: 10px;
}

dl.property-data dt {
    font-size: 2.4rem;
    padding: 1.6rem;
    border-bottom: dashed 1px #858585;
}

dl.property-data dd {
    padding: 2.6rem 0;
    line-height: 1.4;
}

dl.property-data dd ul li {
    list-style: none;
}

.property-data strong {
    font-size: 3.6rem;
}

ul.property-tag {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    margin: 10px 0 10px;
}

ul.property-tag li {
    list-style: none;
    text-align: center;
    margin: 0 4px 6px 0;
}

ul.property-tag li a {
    display: block;
    background: #AFCDD5;
    color: #fff;
    font-size: 1.6rem;
    padding: 6px 6px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 1px;
}

ul.property-tag li a::before {
    content: '#';
    padding-right: 1px;
}

main article section.property-02 {
    margin-top: 3rem;
}

.property-02-box {
    background: #EFEEEA;
    padding-bottom: 3rem;
    border-radius: 10px;
}

.property-02-address {
    font-size: 2rem;
}

.property-02-box-01 {
    display: flex;
    justify-content: space-between;
    width: 98%;
    margin: 2rem auto;
}

ul.property-02-tab {
    display: flex;
}

ul.property-02-tab li {
    display: block;
    text-align: center;
    margin-left: 1rem;
}

ul.property-02-tab li a {
    background: #fff;
    padding: 1rem 2rem;
    color: #222;
    font-size: 2.4rem;
    display: block;
    border-radius: 4px;
    border: #ddd solid 2px;
    box-shadow: 0px 2px #999;
}

ul.property-02-tab li a:hover {
    box-shadow: none;
    transition: 0.2s;
    transform: translateY(2px);
    box-shadow: none;
}

/*liにactiveクラスがついた時の形状*/
ul.property-02-tab li.active a:hover {
    transform: translateY(2px);
    box-shadow: none;
    transition: 0.2s;
}

ul.property-02-tab li.active a {
    color: #fff;
    background: #F7941D;
    transform: translateY(2px);
    border: none;
    box-shadow: none;
    border-top: #F7941D solid 2px;
}
.footer-conversion{
    display: none;
}
.footer-cat div a{
    display:block;
    width:100%;
    padding:1rem;
    font-size:1.8rem;
    background:#f7f7f7;
    color:#333;
    box-shadow: 0px 10px 5px -5px #f2f2f2;
    transition:0.3s;
}

.footer-cat div a:hover{
    transform:translateY(2px);
    box-shadow:0px;
}

/*エリアの表示非表示と形状*/
.property-02-area {
    display: none;
    /*はじめは非表示*/
    opacity: 0;
    /*透過0*/
    background: #fff;
    border-radius: 10px 10px 0 0;
}

/*areaにis-activeというクラスがついた時の形状*/
.property-02-area.is-active {
    display: block;
    /*表示*/
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.property-02-box-02 {
    padding: 0 1%;
}

.property-02-box dl {
    background: #fff;
    display: flex;
    padding: 2rem 0;
    margin: 0 auto;
    margin-top: 3%;
    border-radius: 8px;
    font-size: 2rem;
}

.property-02-box dl dt {
    width: 30%;
    text-align: center;
    border-right: solid 2px #c2c2c2;
    line-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-02-box dl dd {
    width: 80%;
    padding: 2rem;
    font-size: 1.8rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
}

.property-02-box dl dd ul {
    width: 100%;
    padding-left: 3rem;
}

.property-02-box dl dd ul li {
    line-height: 1.4;
}

.icon-blur {
    opacity: 0.3;
}

.property-04 li {
    list-style: none;
}

main article section section.property-room {
    border-radius: 10px;
    margin-top: 4rem;
}

.property-room {
    border-radius: 10px;
}

.property-room-top {
    display: flex;
    justify-content: space-between;
    background: #878787;
    color: #fff;
    border-radius: 10px 10px 0 0;
    padding: 1.6rem 3rem;
}

.property-room-top,
.property-room-bottom,
.property-room-top-left,
.property-room-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.property-room-top-right{
    width: 100%;
}
.property-room-top dl {
    display: flex;
    font-size: 2rem;
    align-items: baseline;
    padding-left: 1rem;
}

.property-room-top dl dt {
    margin-right: 0.6rem;
}

.property-room-top dl dd {
    margin-right: 2rem;
}

.property-room-top dl dd strong {
    font-weight: normal;
    font-size: 3.6rem;
}

.property-room-gender {
    display: flex;
    justify-content: space-between;
    width: 20%;
    max-width: 106px;
}

.property-room-gender li {
    width: 46%;
    list-style: none;
}

.property-room-top-left span {
    padding: 1rem 0;
    text-align: center;
    border-radius: 30px;
    width: 100px;
    font-size: 1.8rem;
}

span.room-vacant {
    background: #40CCEF;
}

span.room-occupied {
    background: #D4E01E;
    color: #222;
}

#page .property-room h3 {
    border-left: none;
    padding-left: none;
    font-size: 3rem;
    font-weight: normal;
}

#page .property-room h3 span {
    padding-left: 1rem;
    font-size: 2rem;
}
.property-room-info{
    border-left: none;
    font-size: 3rem;
    font-weight: normal;
    min-width: 400px;
}
.property-room-info span {
    padding-left: 1rem;
    font-size: 2rem;
}



.property-room-bottom {
    background: #EFEEEA;
    justify-content: space-between;
    padding: 2rem;
    align-items: flex-start;
}

.property-room-bottom ul.fourColumns {
    margin: -1%;
}

.property-room-bottom ul.fourColumns li {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.property-room-bottom ul.fourColumns li img {
    width: 44%;
    margin-right: 2%;
    background: #92A9CB;
    border-radius: 10px;
}

.property-room-bottom ul.fourColumns li.icon-gray {
    text-decoration: line-through;
    color: #999;
}

.property-room-bottom ul.fourColumns li.icon-gray img {
    background: #D5D5D5;
}

.property-room-bottom-left {
    width: 36%;
}

.property-room-bottom figure img {
    border-radius: 8px;
}

.property-room-bottom-right {
    width: 60%;
}


.bar_container {
    background: #EFEEEA;
    border: 3px #888786 dotted;
    padding: 4rem 4rem 1rem;
    border-radius: 8px;
}

dl.bar_table {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4rem;
}

dl.bar_table dt {
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

dl.bar_table dd {
    width: 80%;
    align-items: center;
}

dl.bar_table dd ul.label-box {
    display: flex;
    list-style: none;
    margin-left: 2rem;
    margin-top: 8px;
}

dl.bar_table dd ul.label-box>li {
    display: flex;
    margin-right: 10px;
    font-size: 2rem;
}

dl.bar_table dd ul.label-box>li:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: #5E8BF0;
    margin-right: 4px;
}

dl.bar_table dd ul.label-box>li:first-of-type:before {
    background: #5E8BF0;
}

dl.bar_table dd ul.label-box>li:nth-of-type(2):before {
    background: #F0A2C9;
}

dl.bar_table dd ul.label-box>li:nth-of-type(3):before {
    background: #8DC339;
}

dl.bar_table dd ul.label-box>li:nth-of-type(4):before {
    background: #DBE449;
}

dl.bar_table dd ul.label-box>li:nth-of-type(5):before {
    background: #52C2D6;
}

.bar-box {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
}

.bar-box>div {
    display: inline-block;
    box-sizing: border-box;
    height: 40px;
    animation: bar-animation 1 3s;
    width: 100%;
}

.bar-box>div:first-of-type {
    border-radius: 8px 0 0 8px;
    background-color: #5E8BF0;
}

.bar-box>div:nth-of-type(2) {
    background-color: #F0A2C9;
}

.bar-box>div:nth-of-type(3) {
    background-color: #8DC339;
}

.bar-box>div:nth-of-type(4) {
    background-color: #DBE449;
}

.bar-box>div:nth-of-type(5) {
    background-color: #52C2D6;
}

.bar-box>div:last-of-type {
    border-radius: 0 8px 8px 0;
}

@keyframes bar-animation {
    0% {
        width: 0px;
    }

    100% {
        width: 100%;
    }
}

.mw-5 {
    max-width: 5%
}

.mw-10 {
    max-width: 10%
}

.mw-15 {
    max-width: 15%
}

.mw-20 {
    max-width: 20%
}

.mw-25 {
    max-width: 25%
}

.mw-30 {
    max-width: 30%
}

.mw-35 {
    max-width: 35%
}

.mw-40 {
    max-width: 40%
}

.mw-45 {
    max-width: 45%
}

.mw-50 {
    max-width: 50%
}

.mw-55 {
    max-width: 55%
}

.mw-60 {
    max-width: 60%
}

.mw-65 {
    max-width: 65%
}

.mw-70 {
    max-width: 70%
}

.mw-75 {
    max-width: 75%
}

.mw-80 {
    max-width: 80%
}

.mw-85 {
    max-width: 85%
}

.mw-90 {
    max-width: 90%
}

.mw-95 {
    max-width: 95%
}

.mw-100 {
    max-width: 100%
}

#page h3.top-02-ttl {
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 0;
    line-height: 1.8;
    padding-left: 0;
    border-left: 0;
    margin-bottom: 0;
}

#page .top-02-container section figure {
    width: 100%;
    aspect-ratio: 5/3;
    border-radius: 8px;
    overflow: hidden;
}

#page .top-02-container section figure img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page .top-02-container>* {
    width: 32%;
    margin-top: 4rem;
}

#page .property-report h3 {
    border-left: none;
    padding-left: 0;
    font-size: 2.4rem;
    line-height: 1;
    margin-top: 0;
    margin-bottom: 0;
    color: #000;
}

.property-report time {
    color: #000;
}

.property-report section {
    background: #EFEEEA;
    padding: 1.6rem;
    border-radius: 8px;
}

.property-report section figure {
    width: 40%;
    margin-bottom: 0;
}

.property-report .flex-container-two>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0;
}

.property-report .flex-container-two {
    justify-content: space-between;
}

main article .property-box section {
    margin-top: 1rem;
}

.conversion-box.narrow {
    background: #fff;
    margin-top: 0rem;
}

.conversion-box.narrow ul {
    padding: 7rem 0rem;
}

.conversion-box.narrow ul li a {
    font-size: 2rem;
    padding: 1.8rem 0;
}

.conversion-box.narrow ul li a img {
    margin-bottom: 2rem;
}

#iw_wrapper {
    display: none;
}

#iw_wrapper ol {
    width: 300px;
    height: auto;
}

li.map-station {
    display: block;
    background: #878787;
    color: #fff;
    font-size: 1.6rem;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 1px;
    margin: 10px 0;
    transition: 0.5s;
}

li.map-station:hover {
    opacity: 0.7;
}

.property-02-box p.annotation {
    line-height: 2.6;
}

.iw-box {
    display: flex;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.iw-left {
    margin-right: 1%;
}

div.iw-title a {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
}

.iw-rent-box {
    display: flex;
}

div.iw-rent {
    font-size: 2.3rem;
    font-weight: bold;
    margin-right: 2rem;
}

div.iw-rent span {
    font-size: 1.6rem;
    font-weight: normal;
}

div.iw-img {
    width: 80px;
    height: 80px;
}

div.iw-img img {
    object-fit: cover;
    width: 100%;
    height: inherit;
}

.info ol {
    position: relative;
    border-bottom: 2px solid #ddd;
    padding-bottom: 2rem;
}

li.iw_station {
    list-style: none;
    clear: both;
}

.iw_rent {
    font-size: 2.3rem;
    font-weight: bold;
    margin-right: 2rem;
    float: left;
}

.info .btn a {
    padding: 8px;
    max-width: 220px;
    margin: 0 auto;
}

.iw_rent span {
    font-size: 1.6rem;
    font-weight: bold;
}

.iw_name a {
    color: #333;
    font-size: 1.6rem;
    font-weight: bold;
}

.iw_btn {
    width: 90%;
    margin: 0 auto;
    margin-top: 1rem;
}


.iw_btn a {
    font-size: 1.8rem;
    background: #404042;
    display: block;
    text-align: center;
    width: 100%;
    color: #fff;
    padding: 1rem;
}

span.d-block {
    display: block;
}

.flex-container-two>*.prop-sec {
    margin-bottom: 6rem;
}
.property-form-01{
    margin-bottom: 4rem;
}

/*バックナンバー*/
.back-number-container p.time {
    margin-bottom: 0.2rem;
}

.back-number-container h2 {
    border-bottom: 0;
}

.back-number-container h2 a {
    color: #222;
}

.back-number-container h2::after {
    display: none;
}

/* area 町名・駅名 */
/*B-14-1 エリア*/
.area-map{
    position: relative;
    z-index: 1;
}
.area-map > ul{
    list-style: none;
}
.area-map > ul > li{
    display: flex;
    align-items: center;
    margin-bottom: 14px;
}
.area-map > ul > li > a{
    display: block;
    padding:8px 5px;
    width: 12rem;
    background:#f0f0f0;
    position: relative;
    transition:color .3s,background .3s;
    flex-shrink: 0;
}
.area-map > ul > li > a:hover{
    text-decoration:none;
    background: #eee;
}
.area-map > ul > li > a::after{
    position: absolute;
    content: '';
    border-left: 10px solid #f0f0f0;/*底辺*/
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    transition:.3s;
}
.area-map > ul > li > a:hover::after{
    border-left: 10px solid #eee;
}

.area-map > ul > li > ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-left: 10px;
}
.area-map > ul > li > ul > li{
    text-align: center;
    margin: 4px 0;
}
.area-map > ul > li > ul > li:not(:last-child){
    margin-right: 10px;
}
.area-map > ul > li > ul > li > a{
    display: block;
    border-radius: 4px;
    border:1px solid #eee;
    padding:8px 5px;
    transition:color .3s, background .3s;
    position: relative;
    z-index: 2;
    /*
    pointer-events:none;
    */
}
.area-map > ul > li > ul > li.here > a{
    background: #ccc;
}
.area-map > ul > li > ul > li.map-has-store > a{
    pointer-events: inherit;
}
.area-map > ul > li > ul > li > a:hover{
    background: #f29600;
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

#mapSvg {
    z-index: 1;
}
#mapSvg g path {
    cursor: pointer;
    fill:#eee;
    stroke:#fff;
    stroke-width:1.0;
    stroke-miterlimit:10;
    transition:fill .3s;
}
#mapSvg g.here path{
    fill:#80d0cc;
}
#mapSvg g line {
    fill: #ccc;
    stroke:#ccc;
    stroke-width:2.0;
    stroke-miterlimit:10;
}
.map-active {
    fill: #f29600 !important;
    background: #f29600 !important;
    color: #fff !important;
}

.area-map-prefecture ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.area-map-prefecture ul > li{
    text-align: center;
    margin-bottom: 1rem;
}
.area-map-prefecture ul > li:not(:last-child){
    margin-right: 10px;
}
.area-map-prefecture ul > li > a{
    display: block;
    border-radius: 4px;
    border:1px solid #eee;
    padding:8px 5px;
    transition:color .3s, background .3s;
}
.area-map-prefecture ul > li > a:hover{
    background: #f29600;
    color: #fff;
    opacity: 1;
}

.area-cities-container {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5%;
}
.area-cities-container ul {
    width: 19%;
    margin: 0 0.5% 3%;
}
.area-cities-container ul li {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}
.area-cities-container ul li.here{
    background: #009bde;
    color: rgba(255,255,255,0.6);
}
.area-cities-container ul li.here::before{
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    padding-right: 3px;
    padding-left: 2px;
    color: #fff;
}
.area-cities-container ul li.here a {
    color: #fff;
}

.area-cities-container ul li a {
    color: #06f;
    text-decoration: none;
}
.area-cities-container ul li a:hover {
    text-decoration: underline;
}
.area-cities-container ul li strong{
    display: flex;
    align-items: center;
}
.area-cities-container ul li strong::before,
.area-cities-container ul li strong::after{
    border-top: 1px solid #ccc;
    content: "";
    flex-grow: 1;
}
.area-cities-container ul li strong::before {
    margin-right: 1rem;
}
.area-cities-container ul li strong::after {
    margin-left: 1rem;
}

.area-map-chomei{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5%;
    list-style: none;
}
.area-map-chomei li{
    width: 15.6666%;
    margin: 0 0.5% 1%;
}
.area-map-chomei li::before{
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 3px;
    color: #333;
}
/*駅で探すページ*/
.station-map-container{
    background: #f5f5f5;
    padding: 3rem;
    border-radius: 8px;
    position: relative;
}
.station-map{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin:0 auto;
}
.station-map.pa{
    max-width: 414px;
}
.station-map li{
	list-style: none;
}
.station-map > li.ac{
    width:10px;
    padding: 0.1rem;
    border:none;
    background: #f5f5f5;
}
.station-map > li{
    list-style: none;
    font-size: 1.4rem;
    text-align: center;
    width:32%;
    max-width: 130px;
    border-radius: 8px;
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 8px;
    line-height: 1.6;
    background: #fff;
    border: 2px solid #ddd;
    color: #333;
    margin: 4px ;
    position: relative;
}
.station-map > li > span{
    display: block;
    color: #777;
    margin-bottom: 0.2rem;
}
.station-map > li > span a{
    padding: 0.3rem;
    border:1px solid #ddd;
    font-size: 1.4rem;
    font-weight: bold;
    margin-top: 0.5rem;
    background: #f5f5f5;
    margin-bottom: 0.2rem;
}
.station-map > li ul li > span a{
	background: #fff;
}
.station-map li.left:before{
    content: "";
    width: 200px;
    height: 15px;
    background: #999;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
}
.station-map li.ac li.left:before{
    display: none;
}
.station-map li.left-2-3:after {
    content: "";
    width: 100px;
    height: 15px;
    background: #999;
    position: absolute;
    top: 90%;
    left: -4%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
    transform: rotate(-34deg);
}
.station-map li.right-2-3:after {
    content: "";
    width: 100px;
    height: 15px;
    background: #999;
    position: absolute;
    top: 90%;
    left: 26%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    z-index: -1;
    transform: rotate(34deg);
}
.station-map li.left-3-3:after {
    content: "";
    width: 15px;
    height: 100px;
    background: #999;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: -1;
}
.station-map li a{
    display: block;
    color: #777;
    background: #eee;
    margin-bottom: 0.2rem;
}
.station-map li.no-prop a{
    background:#fff;
}
.station-map li.no-prop a:after{
    content:"（無）";

}
.direction{
    text-align: center;
}
.direction.top{
    margin-bottom: 3rem;   
}
.direction.left{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.direction.right{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.station-map-container.side{
    padding: 1.6rem 3rem;
    margin-bottom: 9rem;
}
.station-map-container.side .station-map > li{
    width:32%;
    max-width:100px;
    font-size: 1.2rem;
    padding: 0.8rem;
}
.station-map-container.side .station-map > li.ac{
    width: 10px;
    padding: 0.1rem;
    border: none;
    background: #f5f5f5;
}
.station-map-container.side .station-map li.no-prop a:after{
    font-size:1rem;
}
.station-map-container.side .station-map > li .small{
    font-size: 1.1rem;
}
.station-map-container.side .station-map > li > span a{
    font-size: 1.2rem;
}
.station-map-container.side .direction.left,
.station-map-container.side .direction.right,
.station-map-container.side .direction.top{
    font-size: 1.2rem;
}
.station-map-container.side .direction.top{
    margin-bottom: 1rem;
}


/****** columnコラムページ *****/
/* page_all station_tag_column.html */
.column-property-container{
    display: flex;
    margin:0 -1%;
}
.column-property-box{
    width: 31.3333%;
    margin: 0 1%;
}
.column-property-ttl {
    font-size: 1.6rem;
    font-weight: normal;
    padding: 1rem;
    line-height: 1.4;
    padding-left: 0;
    border-left: 0;
    margin-bottom: 0;
}

.column-property-price {
    font-size: 2.5rem;
    line-height: 1;
    color: #f7941d;
    margin-bottom: 0rem;
}

.column-property-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
}

.column-property-tags li {
    list-style: none;
    margin-right: 1.2rem;
    margin-top: 1rem;
}

.column-property-tags li a {
    display: block;
    font-size: 1.5rem;
    background: #afcdd4;
    color: #fff;
    padding: 8px 10px;
    border-radius: 1.6rem;
    min-width: 80px;
    text-align: center;
    letter-spacing: 2px;
}
main .p-box p{
    font-size: 1.4rem;
}
.p-box ul li,
.p-box ul.property-tag li,
.p-box ul.property-tag li a{
    font-size: 1.4rem;
}
.p-box ul.property-tag{
    margin-top: 0;
    margin-bottom: 0;
}
dl.table.small dt{
    width:100px;
}
dl.table.small dd{
    padding-left: 100px;
    font-size: 1.4rem;
}
dl.table.small dd strong{
    font-size: 2.2rem;
    color:#f3981c;
}
dl.table.long dt{
    width:300px;
}
dl.table.long dd{
    padding-left: 300px;
}
.p-box .flex-container-two>*{
    margin-bottom: 1%;
}
.p-box .point {
    padding: 10px 16px;
    margin-top: 10px;
}
main .p-box .point p{
    margin-bottom: 0;
    font-weight: bold;
}
.point span{
    width: 46px;
}
.p-box .miniConversion a{
    background: #f3981c;
    color:#fff;
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 1px;
}
.p-box .miniConversion.blue a{
    background: #6DC8DB;
}