@charset "utf-8";





/*
Base style
*/
body {
    font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 15px;
    color:#333;
    background-color: #F1F1F0;
}
img {
    width: 100%;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
th,td {
    vertical-align:top;
    text-align: left;
}
.h--large {
    margin: 0;
    font-size: 40px;
}


/* 背景色設定　ここから */
.bgcolor-lightblue {
    background-color: #E3F2FF;
}
.bg--color_02 {
    background-color: #333;
}
.bg--pattern_01 {
  /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #F2F2F2 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #F2F2F2 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}
.bg--pattern_02 {
  /* 方眼紙模様に必須のスタイル */
    background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
    background-size: 16px 16px;
    background-repeat: repeat;
    background-position: center center;
}
/* 背景色設定　ここまで */

/* ページ内アンカー用 */
#Top--area {
    padding-top: 80px;
    margin-top:-80px;
}

/* 改行の表示非表示設定 ここから */
.br--none {
    display: none;
}
.br--block {
    display: block;
}
@media screen and (max-width: 768px) {
    .br--none {
        display: block;
    }
    .br--block {
        display: none;
    }
}
/* 改行の表示非表示設定 ここまで */

@media screen and (max-width: 900px) {
    body {
        height: 100%;
        width: 100%;
    }
    .h--numbers {
        font-size: 40px;
    }
    .h--medium {
        font-size: 20.8px;
    }
    .h--large {
        position: static;
        font-size: 25.6px;
    }
    .text--regular {
        font-size: 12.8px;
        margin: 0;
    }
    .text--bold {
        font-size: 14px;
    }
}


/*
section
*/
.section {
    padding: 50px 0 100px;
}
.section--bgcolor-gray {
    background-color: #F7F7F7;
}
.section-main {
    width: 100%;
    margin: 50px auto;
}
.section-main--secondary {
    width: 64%;
    margin: 0 auto;
}
.section-main--big {
    width: 80%;
    margin: 0 auto;
}

@media screen and (max-width: 900px) {

}

/*
grid
*/
.grid--wrap {
    margin-top: 140px;
}
.grid {
    display: flex;
    margin: 0 auto;
    padding: 0;
    justify-content: center;
}
.grid--item {
    position: relative;
}
.grid--col-2 > .grid--item {
    width: calc(100% / 2);
    margin: 0 10px 0 0;
}
.grid--col-2 > .grid--item:last-child {
    margin: 0;
}
.grid--col-2 > .grid--itemleft {
    width: 70%;
    margin: 0 30px 0 0;
}
.grid--col-2 > .grid--itemright {
    width: 30%;
    margin: 0 30px 0 0;
}
.grid--col-3 > .grid--item {
    width: calc(100% / 3);
    margin: 0 35px 0 0;
}
.grid--col-3 > .grid--item:last-child {
    margin: 0;
}
.grid--col-4 > .grid--item {
    width: calc(100% / 4);
}
@media screen and (max-width: 900px) {
    .grid {
        display: block;
    }
    .grid--col-3 > .grid--item,
    .grid--col-2 > .grid--item {
        width: 100%;
    }
}



/* 共通css設定 START */
.button a {
    display: inline-block;
    padding: 10px 30px;
    background-color: #00439A;
    border: 2px solid #00439A;
    border-radius: 30px;
    color: #fff;
    transition: all 0.2s;
}
@media (hover: hover) {
    .button a:hover {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}
@media (hover: none) {
    .button a:active {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}
/* 共通css設定 END */

/*
header
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
}
.header--bgcolor {
    background-color: #F1F1F0;
}
.header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 30px;
    background-color: #F1F1F0;
    transition :all .3s;
}
.header-logo {
    display: flex;
    width: 410px;
    justify-content: space-between;
    align-items: center;
}
.header-logo span {
    font-size: 13px;
    font-weight: normal;
    letter-spacing: .05em;
}
.header-logo > a {
    display: block;
    line-height: 0;
}
.header-logo > a img {
    width: 220px;
}
/* .header__list-wrap {} */
.header__list-wrap .list {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__list-wrap li {
    padding: 5px 20px;
    border-right: #ccc 1px solid;
    letter-spacing: .05em;
}
.header__list-wrap li:last-child {
    padding: 5px 0 5px 20px;
    border-right: none;
}
.header__list-wrap li > a {
    display: block;
    position: relative;
    color: #333;
    font-size: 14px;
    text-decoration: none;
}

/* ヘッダーアイコン設定 START */
.header__list-wrap .sign--icon a {
    padding: 5px 0 5px 45px;
    background-image: url('../image/icon__sign.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 36px;
}
.header__list-wrap .email--icon a {
    padding: 0 0 0 27px;
    background-image: url('../image/icon__email.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 20px;
}
.header__list-wrap .tel--icon a {
    padding: 2px 0 2px 27px;
    background-image: url('../image/icon__tel.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: 20px;
}
/* ヘッダーアイコン設定 END */

@media (hover: hover) {
    .header__list-wrap li > a:hover {
        color: #00439A;
    }
}
@media (hover: none) {
    .header__list-wrap li > a:active {
        color: #00439A;
    }
}
.header-copy {
    display: none;
}

@media screen and (max-width: 1090px) {
    .header-logo {
        margin: 0;
    }
    .header__list-wrap{
        /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
        position:fixed;
        /*ナビのスタート位置と形状*/
        top:0;
        right: -120%;
        width:100%;
        height: 100vh;/*ナビの高さ*/
        background:#F1F1F0;
        /*動き*/
        transition: all 0.6s;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    /*アクティブクラスがついたら位置を0に*/
    .header__list-wrap.panelactive{
        right: 0;
    }
    
    /*ナビゲーション*/
    .header__list-wrap .list {
        /*ナビゲーション天地中央揃え*/
        display: block;
        position: static;
        z-index: 999;
        padding: 100px 3% 50px;
    }
    /*リストのレイアウト設定*/
    
    .header__list-wrap li,
    .header__list-wrap li:last-child {
        padding: 0;
        margin: 20px;
        list-style: none;
        text-align: center;
        border-right: none;
    }
    .header__list-wrap .sign--icon a,
    .header__list-wrap .email--icon a,
    .header__list-wrap .tel--icon a {
        padding: 0;
        background-image:none;
    }
    .header__list-wrap .tel--icon a {
        display: inline-block;
        padding: 5px 30px;
        color: #fff;
        font-size: 20px;
        font-weight: bold;
        border-radius: 30px;
        background-color: #00439A;
        transition: all .3s;
    }

    @media (hover: hover) {
        .header__list-wrap li:last-child > a:hover {
            color: #fff;
            background-color: #333;
        }
    }
    @media (hover: none) {
        .header__list-wrap li:last-child > a:active {
            color: #fff;
            background-color: #333;
        }
    }
    .header-copy {
        display: block;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.05em;
    }


    /*========= ボタンのためのCSS ===============*/

    .openbtn1{
        position:fixed;
        z-index: 9999;/*ボタンを最前面に*/
        right: -30px;
        cursor: pointer;
        width: 100px;
        height:50px;
    }

    /*×に変化*/  
    .openbtn1 span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 2px;
        border-radius: 2px;
        background-color: #00439A;
        width: 30%;
    }
    
    .openbtn1 span:nth-of-type(1) {
        top:15px; 
    }
    
    .openbtn1 span:nth-of-type(2) {
        top:23px;
    }
    
    .openbtn1 span:nth-of-type(3) {
        top:31px;
    }
    
    .openbtn1.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }
    
    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .openbtn1.active span:nth-of-type(3){
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }
}

@media screen and (max-width: 768px) {
    .header-main {
        height: 80px;
        padding: 20px;
    }
    .header-logo {
        width: 100%;
        padding: 0;
    }
    .header-logo > a img {
        width: 30%;
        min-width: 150px;
    }
    .header-logo span {
        display: none;
    }
}


/*========= ボタンのためのCSS ===============*/
.fixed__bnr {
    width: 230px;
    position: fixed;
    bottom: 20px;right: 20px;
    z-index: 999999;
}
.fixed__bnr p {
    margin: 0;
    transition: .3s all;
}
.fixed__bnr p:hover{
    opacity: .7;
}




/* 基本の表のレイアウトcss設定 START */
.table__box {
    margin-top: 100px;
}
.table--list {
    width: 100%;
    margin: 0 0 30px;
}
.table--list tr:last-child {
    padding: 30px;
    border-bottom: 2px solid #E6E6E6;
}
.table--list__item {
    border-top: 2px solid #E6E6E6;
}
.table--list__item th {
    width: 25%;
    padding: 30px;
}
.table--list__item td {
    width: 75%;
    padding: 30px 30px 30px 0;
}

@media screen and (max-width: 768px) {
    .table--list__item th {
        padding: 20px;
    }
    .table--list__item td {
        padding: 20px 20px 20px 0;
    }
} 

/* @media screen and (max-width: 900px) {
    .table--list {
        color: #707070;
    }
    .table--list__item {
        border-top: 1px solid #E6E6E6;
    }
    .table--list tr:last-child {
        border-bottom: 1px solid #E6E6E6;
    }
    .table--list__item th,
    .table--list__item td {
        padding: 15px 10px;
    }
}*/
/* 基本の表のレイアウトcss設定 END */


/*========= 下層頁　見出し画像 START =========*/
/* 共通 START */
.heading--bgimg {
    background-repeat: no-repeat;
    background-position:center center;
    background-size: cover;
    position: relative;
    padding: 100px;
}
.heading--bgimg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #00439A;
    opacity: 0.4;
}
.heading--bgimg p {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-size: 37px;
    font-weight: bold;
    letter-spacing: 5px;
    color: #fff;
}
/* 共通 END */

/* 各種画像設定 START */
.sign__heading--bgimg {
    background-image: url(../image/top--img__02.png);
    border-bottom: 10px solid #00439A;
}
/* 各種画像設定 END */

/*========= 下層頁　見出し画像 END =========*/


/*========= トップページ〈index.html〉 START =========*/
/*

/* 
main-image 
*/
.main-image img {
    height: 100vh;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
}


/* スクロールダウンのためのCSS START */
/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:40px;
    /*全体の高さ*/
  height:50px;
  z-index: 999;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
    position: relative;
    top: -35px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /*線の形状*/
    width: 1px;
    height: 30px;
    background: #eee;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
    0%{
        height:0;
        top:0;
        opacity: 0;
    }
    30%{
        height:30px;
        opacity: 1;
    }
    100%{
        height:0;
        top:50px;
        opacity: 0;
    }
}
/* スクロールダウンのためのCSS END */


/* 見出しレイアウト START */
.h--wrap {
    position: relative;
    font-family: 'Mukta Vaani', sans-serif;
    text-align: center;
}
.h--wrap::after {
    content: "";
    position: absolute;
    bottom: -110px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 60px;
    background: #00439A;
}
.h--wrap .h--large {
    color: #00439A;
    font-size: 60px;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1em;
    margin: 0;
}
.h--wrap p {
    font-weight: bold;
    letter-spacing: .3em;
}
.h--wrap.color--White::after {
    background: #fff;
}
.h--wrap.color--White .h--large {
    color: #fff;
}
.h--wrap.color--White p {
    color: #fff;
}
/* 見出しレイアウト END */


/* お試し START */
#text{
    position: absolute;
    top: 75%;
    left: 75%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    color: #fff;
    /* opacity: 0; */
    transition: all 0.3s;
    /* pointer-events: none; */
}
g a:hover #text{
    color: #333;
    /* opacity: 1; */
}
/* お試し END */




/* トップページ　エリアから探す START */
g.st0 path{fill:#ED553B;}
g.st1 path{fill:#21639B;}
g.st2 path{fill:#3CAEA2;}
g.st3 path{fill:#F7D55D;}

g path{transition: .3s all;}
g path:hover{fill:#333;}
g a{cursor: url(../image/icon__cursor.svg),auto;}


g a.test01{cursor: url(../image/icon__cursor-map01.svg) 10 20,auto;}
g a.test02{cursor: url(../image/icon__cursor-map02.svg) 10 20,auto;}
g a.test03{cursor: url(../image/icon__cursor-map03.svg) 10 20,auto;}
g a.test04{cursor: url(../image/icon__cursor-map04.svg) 10 20,auto;}
g a.test05{cursor: url(../image/icon__cursor-map05.svg) 10 20,auto;}
g a.test06{cursor: url(../image/icon__cursor-map06.svg) 10 20,auto;}
g a.test07{cursor: url(../image/icon__cursor-map07.svg) 10 20,auto;}
g a.test08{cursor: url(../image/icon__cursor-map08.svg) 10 20,auto;}
g a.test09{cursor: url(../image/icon__cursor-map09.svg) 10 20,auto;}
g a.test10{cursor: url(../image/icon__cursor-map10.svg) 10 20,auto;}
/* 
Top--area 
*/
.Top--area {
    width: 75%;
    margin: 0 auto;
}
.Top--area--wrap {
    position: relative;
    height: 90vh;
    max-height: 1000px;
}

/* トップページ　エリアマップsvg START */
/* Top--area__Map */
.Top--area__Map {
    height: 100%;
    text-align: center;
}
.Top--area__Map svg{
    height: 100%;
    max-width: 50vw;
}
/* トップページ　エリアマップsvg END */



/* トップページ　商業施設から探す START */
/*
Top--area__01
*/
.Top--area__01 {
    position: absolute;
    top: 50px;left: -100px;
    max-width: 500px;
    min-width: 400px;
    width: 30%;
    height: 90vh;
    max-height: 1000px;
    border-top: #00439A 2px solid;
    pointer-events: none;/* 下の要素も上の要素もクリックできるようにする */
}
.Top--area__01__sp--list--wrap {
    display: none;
}
.Top--area__01--title {
    margin: 10px 0 0;
    padding: 5px 10px;
    background-color: #fff;
    text-align: left;
}
.Top--area__01 h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .1em;
    /* アイコン設置用設定 */
    padding: 2px 0 2px 30px;
    background-image: url('../image/icon.svg');
    background-repeat: no-repeat;
}
.Top--area__01--list {
    display: block;
    position: relative;
    height: 100%;
    padding: 0;
    margin: 30px 0 0 0;
}

.Top--area__01--list li {
    position: absolute;
    left: 0;
    min-width: 180px;
    width: 48%;
}
.Top--area__01--list li:nth-child(2n) {
    left: unset;
    right: 0;
}
.Top--area__01--list li:nth-child(1) {
    top: 0;
}
.Top--area__01--list li:nth-child(2) {
    top: 14%;
}
.Top--area__01--list li:nth-child(3) {
    top: 28%;
}
.Top--area__01--list li:nth-child(4) {
    top: 42%;
}
.Top--area__01--list li:nth-child(5) {
    top: 56%;
}
.Top--area__01--list li:nth-child(6) {
    top: 70%;
}

.Top--area__01--list li a {
    color: #333;
    font-size: 14px;
    cursor: url(../image/icon__cursor.svg),auto;
    pointer-events: auto;/* 下の要素も上の要素もクリックできるようにする */
}
.Top--area__01--list li p {
    margin: .3em 0 0 0;
}
.Top--area__01--item-img {
    width:100%;
    overflow:hidden;
    border: #00439A 2px solid;
    transition: all .3s ease-in-out;
}
.Top--area__01--item-img img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    transition: .8s all;
}

/* hover START */
.Top--area__01--item:hover .Top--area__01--item-img {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 0 50px rgba(128, 128, 128, 0.15) ;
}
.Top--area__01--item:hover .Top--area__01--item-img img {
    transform:scale(1.1,1.1);
}
/* hover END */

/* トップページ　商業施設から探す END */


/* トップページ　インターチェンジから探す START */
/*
Top--area__02
*/
.Top--area__02 {
    position: absolute;
    top: 50px;right: -100px;
    max-width: 500px;
    min-width: 400px;
    width: 30%;
    height: 90vh;
    max-height: 1000px;
    border-top: #333 2px solid;
    pointer-events: none;/* 下の要素も上の要素もクリックできるようにする */
}
.Top--area__02--title {
    margin: 10px 0 0;
    padding: 5px 10px;
    background-color: #fff;
    text-align: left;
}
.Top--area__02 h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .05em;
    /* アイコン設置用設定 */
    padding: 2px 0 2px 30px;
    background-image: url('../image/icon__02.svg');
    background-repeat: no-repeat;
}
.Top--area__02--list--wrap,
.Top--area__01__sp--list--wrap {
    margin: 30px 0 0 0;
}
.Top--area__02--list,
.Top--area__01__sp--list {
    display: flex;
    position: relative;
    width: 95%;
    height: 100%;
    padding: 0;
    margin: 0 auto;
}
.Top--area__02--list li,
.Top--area__01__sp--list li {
    width: 50%;
    margin: 0 10px 10px 0;
}
.Top--area__02--list li:last-child,
.Top--area__01__sp--list li:last-child {
    margin-right: 0;
}
.Top--area__02--list li a,
.Top--area__01__sp--list li a {
    display: block;
    padding: .7em 1em;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    letter-spacing: .05em;
    cursor: url(../image/icon__cursor.svg),auto;
    pointer-events: auto;/* 下の要素も上の要素もクリックできるようにする */
    transition: .3s all;
}
.Top--area__01__sp--list li a {
    background-color: #00439A;
}
.Top--area__02--list li a:hover,
.Top--area__01__sp--list li a:hover{
    opacity: .7;
}
.Top--area__02--list li p,
.Top--area__01__sp--list li p {
    margin: 0;
    /* アイコン設置用設定 */
    padding: 0 0 0 25px;
    background-image: url('../image/icon__03.svg');
    background-repeat: no-repeat;
}
/* 矢印設定　START */
.Top--area__02--list li.icon,
.Top--area__01__sp--list li.icon {
    position: relative;
}
.Top--area__02--list li.icon p::after,
.Top--area__01__sp--list li.icon p::after {
    content: '';
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    display: inline-block;
    width: 12px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
}
/* 矢印設定　END */


/* hover START */
.Top--area__01__sp--item:hover .Top--area__01__sp--item-img,
.Top--area__01__sp--item:hover .Top--area__01__sp--item-img {
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2), 0 0 50px rgba(128, 128, 128, 0.15) ;
}
/* hover END */

.Top--area__01--list {
    position: relative;
    height: 100%;
    padding: 0;
    margin: 30px 0 0 0;
}

.Top--area__01--list li {
    position: absolute;
    left: 0;
    min-width: 180px;
    width: 48%;
}
.Top--area__01--list li:nth-child(2n) {
    left: unset;
    right: 0;
}
.Top--area__01--list li:nth-child(1) {
    top: 0;
}
.Top--area__01--list li:nth-child(2) {
    top: 14%;
}
.Top--area__01--list li:nth-child(3) {
    top: 28%;
}
.Top--area__01--list li:nth-child(4) {
    top: 42%;
}
.Top--area__01--list li:nth-child(5) {
    top: 56%;
}
.Top--area__01--list li:nth-child(6) {
    top: 70%;
}

@media screen and (max-width: 1200px) {
    .Top--area__01,
    .Top--area__02 {
        min-width:auto;
        width: 320px;
    }
    .Top--area__01--item-img img {
        height: 120px;
    }
    .Top--area__01--list li:nth-child(2n) p {
        text-align: right;
    }
    .Top--area__01__sp--list li a,
    .Top--area__02--list li a {
        padding: .5em .7em;
    }
    .Top--area__01__sp--list li p,
    .Top--area__02--list li p {
        padding: 0 0 0 10px;
    }
}
@media screen and (max-width: 900px) {
    .Top--area {
        width: 90%;
    }
    .Top--area--wrap {
        position: static;
        height: auto;
        max-height: none;
    }
    .Top--area__Map svg{
        max-width: 100%;
    }
    .Top--area__01__sp--list--wrap {
        display: block;
    }
    .Top--area__01--list {
        display: none;
    }
    .Top--area__01,
    .Top--area__02 {
        position: static;
        width: 100%;
        max-width:none;
        height: auto;
        margin-top: 80px;
    }
    .Top--area__01--list li:nth-child(2n) p {
        text-align:left;
    }
}
@media screen and (max-width: 500px) {
    .Top--area__02--list,
    .Top--area__01__sp--list {
        display: block;
    }
    .Top--area__02--list li,
    .Top--area__01__sp--list li {
        width: 100%;
    }
    .Top--area__01__sp--list li p,
    .Top--area__02--list li p {
        padding: 2px 0 2px 5px;
    }
    .Top--area__02--list li.icon p::after,
    .Top--area__01__sp--list li.icon p::after {
        right: 15px;
    }
    .Top--area__02--list li a,
    .Top--area__01__sp--list li a {
        font-size: 14px;
        border-radius: 5px;
    }
}

/* トップページ　インターチェンジから探す END */


/* トップページ　エリアから探す END */


/*========= トップページ〈index.html〉 END =========*/


/*========= 屋外広告検索〈sign-list.html〉 START =========*/

/*tabの形状*/
.tab__wrap {
    width: 100vw;
    padding: 50px 0 40px;
    margin-top: 50px;
    margin-left: calc(50% - 50vw);
    background-color: #D7DDE6;
}
.tab__wrap h2 {
    text-align: center;
    font-size: 18px;
    color: #00439A;
    letter-spacing: .07em;
}
.tab{
    width: 900px;
	display: flex;
    margin: 0 auto;
	flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
}
.tab li a {
	display: block;
	background:#fff;
    color: #808080;
    border: #fff 2px solid;
	margin: .4em .2em;
	padding: .3em 1.5em;
    border-radius: 30px;
    transition: all .3s;
}
/* すべてのみカラー変更 */
.tab li a.all {
	background:#333;
    color: #fff;
    border: #333 2px solid;
}
.tab li a:hover {
	background:#fff;
    color: #00439A;
    border: #00439A 2px solid;
    font-weight: bold;
}
/* 一覧ナシの場合 */
.tab li a.none {
    pointer-events: none;
    color: #D6D6D6;
    background-color: #F1F1F0;
    border: #F1F1F0 2px solid;
}
/*liにactiveクラスがついた時の形状*/
.tab li.active a{
	background:#00439A;
    color: #fff;
    border: #00439A 2px solid;
    pointer-events: none;
}
.tab li.active a:hover{
	font-weight: normal;
}
.search__area__wrap {
    width: 1000px;
    margin: 0 auto;
}
.search__area__space {
    margin-top: 50px;
}
.search__area__txt {
    margin: 80px;
    text-align: center;
    letter-spacing: .07em;
    line-height: 1.7em;
}
.search__area__list--img {
    width: 100%;
    overflow: hidden;
    transition: all .2s ease-in-out;
}
.search__area__list--img a {
    pointer-events: auto;
}
.search__area__list--img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: .8s all;
}
.search__area__list--img img:hover {
    transform:scale(1.1,1.1);
}
.search__area__list--txt {
    margin-top: 15px;
}
.search__area__list--txt__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search__area__list .grid--col-3 {
    margin-top: 50px;
}
.search__area__list--txt .id {
    display: inline-block;
    margin: 0;
    font-size: 13px;
    color: #808080;
}
.search__area__list--txt .state {
    display: inline-block;
    padding: 1px 10px;
    margin: 0;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #00439A;
    border: #00439A 2px solid;
    border-radius: 30px;
}
.search__area__list--txt .state.done {
    color: #d1202a;
    border: #d1202a 2px solid;
    background-color: transparent;
}
.search__area__list--txt .name {
    margin: 3px 0 0 0;
    padding-bottom: 5px;
    font-size: 20px;
    letter-spacing: .05em;
    border-bottom: #ccc 1px solid;
}
.search__area__list--txt .name a {
    color: #333;
    transition: all .3s;
    pointer-events: auto;
}
.search__area__list--txt .name a:hover {
    color: #00439A;
}
.search__area__list--txt .division {
    margin: 7px 0;
    color: #00439A;
    font-size: 14px;
    letter-spacing: .05em;
}
.search__area__wrap .grid--col-3 > .grid--item.hidden {
    visibility: hidden;
}


/*エリアの表示非表示と形状*/
.area {
	display: none;/*はじめは非表示*/
	opacity: 0;/*透過0*/
	padding: 10px 40px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
    display: block;/*表示*/
    animation-name: displayAnime;/*ふわっと表示させるためのアニメーション*/
    animation-duration: 2s;
    animation-fill-mode: forwards;
    padding-top: 1000px;
    margin-top:-1000px;
    pointer-events: none;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@media screen and (max-width: 900px) {
    .tab {
        width: 90%;
        font-size: 12px;
    }
    .search__area__wrap {
        width: 100%;
    }
    .search__area__list .grid--col-3 {
        margin-top: 30px;
    }
    .search__area__wrap .grid--col-3 > .grid--item {
        margin-top: 30px;
        background-color: #fff;
        padding: 20px;
    }
    .search__area__txt {
        margin: 0;
    }
    .search__area__list--img img {
        height: 150px;
    }
    .search__area__list--txt__wrap {
        display: block;
    }
    .search__area__list--txt .id {
        display: none;
    }
}

/*========= 屋外広告検索〈sign-list.html〉 END =========*/


/*========= 屋外広告エリア詳細〈sign-detail〉 START =========*/
/*
sign-detail
*/
.sign-detail {
    width: 1000px;
    margin: 100px auto 0;
}
.sign-detail .icon-pin h2 {
    margin: 0 0 10px 0;
    font-size: 18px;
    letter-spacing: .1em;
    line-height: 1.3;
    padding: 0 0 0 23px;
    background-image: url('../image/icon.svg');
    background-repeat: no-repeat;
    color: #00439A;
}
.sign-detail .grid--col-2 > .grid--item {
    margin: 0 40px 0 0;
}
.sign-detail .grid--col-2 > .grid--item:last-child {
    margin: 0;
}
.sign-detail .grid--col-2 > .grid--item.grid--item__left {
    width: 58%;
}
.sign-detail .grid--col-2 > .grid--item.grid--item__right {
    width: 42%;
}
.sign-detail .state {
    display: inline-block;
    padding: 0 15px;
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .05em;
    color: #fff;
    background-color: #00439A;
    border: #00439A 2px solid;
    border-radius: 30px;
}
.sign-detail .state.done {
    color: #d1202a;
    border: #d1202a 2px solid;
    background-color: transparent;
}


.sign-detail .division {
    margin: 10px 0;
    color: #00439A;
    font-weight: bold;
    letter-spacing: .05em;
}
.sign-detail .name {
    margin: 0;
    font-size: 30px;
    letter-spacing: .05em;
}
.sign-detail .name .br--none {
    display: block;
}
.sign-detail__txt {
    font-size: 15px;
    line-height: 1.7em;
}
.sign-detail .table__box {
    margin: 0;
    margin-top: 30px;
}
.sign-detail .table__wrap {
    width: 100%;
    padding: 20px 25px;
    background-color: #fff;
}
.sign-detail .table--list {
    width: 100%;
    margin: 0;
}
.sign-detail tr {
    border-top: none;
    border-bottom: 1px solid #ccc;
}
.sign-detail tr:last-child {
    border-bottom: none;
}
.sign-detail tr th {
    width: 30%;
    padding: .8em;
}
.sign-detail tr td {
    width: 70%;
    padding: .8em;
}
.sign-detail .table--txt__sub {
    font-size: 14px;
}
.sign-detail .table--txt__sub a {
    color: #333;
    border-bottom: #333 1px solid;
    transition: all 0.2s;
}
.sign-detail .table--txt__sub a:hover {
    color: #00439A;
    border-bottom: #00439A 1px solid;
}
.sign-detail .button {
    text-align: center;
}
.sign-detail .button a {
    display: block;
    padding: 17px;
    margin-top: 30px;
    background-color: #00439A;
    border: 2px solid #00439A;
    border-radius: 30px;
    color: #fff;
    transition: all 0.2s;
}
@media (hover: hover) {
    .sign-detail .button a:hover {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}
@media (hover: none) {
    .sign-detail .button a:active {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}
.sign-detail .button__02 {
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.sign-detail .button__02 a {
    display: inline-block;
    width: 49%;
    margin-top: 13px;
    padding: 7px 30px;
    background-color: #333;
    border: 2px solid #333;
    color: #fff;
    transition: all 0.2s;
}
@media (hover: hover) {
    .sign-detail .button__02 a:hover {
        opacity: .6;
    }
}
@media (hover: none) {
    .sign-detail .button__02 a:active {
        opacity: .6;
    }
}
.sign-detail__map {
    margin-top: 80px;
}
.sign-detail .map--iframe {
    border: #bbbbbb 2px solid;
}
.sign-detail .map--iframe iframe {
    height: 400px;
}

/*
sign--area__detail
*/
.sign--area__detail__wrap {
    margin-bottom: 40px;
    border-bottom: 3px solid #00439A;
}
.sign--area__detail__wrap .h--large {
    margin-bottom: 10px;
    color: #00439A;
    font-size: 25px;
}
.sign--area__detail-image {
    margin-bottom: 20px;
}
.sign--area__detail-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}
.sign--area__detail-text {
    background-color: #E6E6E6;
    padding: 20px 30px;
}
.map--iframe iframe {
    width: 100%;
    height: 450px;
}
@media screen and (max-width: 900px) {
    .sign-detail {
        width: 90%;
        margin: auto;
    }
    .sign-detail .grid--col-2 > .grid--item.grid--item__left,

    .sign-detail .grid--col-2 > .grid--item.grid--item__right {
        width: 100%;
        margin-top: 30px;
    }
    .sign-detail .name .br--none {
        display: none;
    }
    .sign-detail .map--iframe iframe {
        height: 300px;
    }
}
@media screen and (max-width: 768px) {
    .profile__h--large {
        font-size: 19px;
    }
}


/*========= 屋外広告エリア詳細〈sign-detail〉 END =========*/


/*========= お問い合わせ〈form-contact.html〉 START =========*/
/* お問い合わせ START */
/*
contact
*/

.form__telbox {
    width: 95%;
    margin: 0 auto 80px;
}
.form__telbox p {
    font-size: 18px;
    letter-spacing: .05em;
    margin: 0;
}
.form__telbox p.form__tel {
    font-size: 45px;
    font-weight: bold;
    letter-spacing: .03em;
}
.form__telbox p.form__tel span {
    font-size: .7em;
}

.contact_box {
    width: 95%;
    margin: auto;
}
.contact__h--large--bgcolor {
    background-color: #00439A;
    padding: .7em;
}
.contact__h--large {
    color: #fff;
    font-size: 19px;
    letter-spacing: .2em;
    text-align: center;
    margin: 0;
}
.contact--wrap {
    width: 75%;
    margin: auto;
    padding: 30px 0;
    text-align: center;
}
.contact--img {
    width: 267.2px;
}
.contact--text {
    text-align: left;
    color: #707070;
}
.contact--wrap .text--regular {
    font-size: 16px;
    letter-spacing: .2em;
    line-height: 1.5em;
    margin-top: 50px;
}
#contact__form {
    width: 100%;
}
.contact__form--table{
    width:100%;
    margin:0 auto;
    border-collapse:collapse;
}
.contact__form--item {
    margin: 30px 0;
}
.contact__form--item-title,
.contact__form--item-text-box{
    padding:0;
}
.contact__form--item-title{
    width:25%;
    font-size: 19.2px;
    font-weight: normal;
    letter-spacing: .1em;
    vertical-align: middle;
}
.contact__form--item-title--secondary {
    vertical-align: top;
    position: relative;
    top: 30px;
}
.contact__form--item-text{
    display: block;
    width: 100%;
    height: 70px;
    margin: 20px 0;
    padding: 4px 30px;
    line-height: 1.42857143;
    color: #676565;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 18.4px;
    letter-spacing: .1em;
}
.contact__form--item-text--box--kikkake {
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 2em;
}
.contact__form--item-text--kikkake {
    margin-left: 15px;
    margin-right: 5px;
    vertical-align: middle;
}
.contact__form--item-text--kikkake__sub {
    margin: 0 10px;
    padding: 6px 10px 4px;
    line-height: 1.42857143;
    color: #676565;
    background-image: none;
    border: 1px solid #ccc;
}
.contact__form--item-text--secondary {
    height: 200px;
    padding-top: 17px;
}
.contact__form_sm{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #676565;
    border-radius: 70px;
    background-color: #fff;
}
.contact__form--item-text--list {
    position: relative;
    width: 60%;
    margin: 20px;
}
/* ドロップダウン 矢印の設定 START */
.contact__form--item-text--list::after {
    position: absolute;
    top: 45%;
    right: 50px;
    width: 23px; /* 矢印の大きさ */
    height: 15px; /* 矢印の大きさ */
    background-color: #707070;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none; /* 矢印部分もクリック可能にする */
    content: ""; 
}
.select {
    appearance: none; /* デフォルトの矢印を消す */
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background-color: #fff;
    cursor: pointer;
    font-size: 20px;
    color: #fff;
}
/* ドロップダウン 矢印の設定 END */
.hissu{
    margin: 3px 15px 7px 7px;
    color: #FF0229;
    text-align: right;
    float: right;
    font-size: 14.4px;
    font-weight: 400;
}
#contact__form .text--regular {
    font-size: 16.8px;
    letter-spacing: normal;
    color: #707070;
}

.form--btn--text {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;

    width: 350px;
    margin: 50px auto;
    padding: 10px 30px;
    background-color: #00439A;
    border: 2px solid #00439A;
    border-radius: 30px;
    color: #fff;
    font-size: 20px;
    transition: all 0.2s;
    cursor: pointer;
}

@media (hover: hover) {
    .form--btn--text:hover {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}
@media (hover: none) {
    .form--btn--text:active {
        background-color: #fff;
        color: #00439A;
        font-weight: bold;
    }
}

@media screen and (max-width: 900px) {
    .contact--wrap {
        width: 90%;
    }
    .form__telbox p.form__tel {
        font-size: 35px;
    }
    .contact__h--large {
        font-size: 16.8px;
    }
}
@media screen and (max-width: 768px) {
    .contact_box {
        width: 100%;
    }
    .contact--img {
        width: 64%;
    }
    .contact--wrap .text--regular {
        font-size: 14.4px;
        letter-spacing: 0em;
        line-height: 1.8em;
        margin-top: 30px;
    }
    .text--regular--caption {
        font-size: 9.6px;
        line-height: 1.4em;
    }
    .contact__form--item th,
    .contact__form--item td {
        width: 100%;
        display: inline-block;
    }
    .contact__form--item-text--list {
        margin: 0;
    }
    .contact__form--item-text--list::after {
        top: 33%;
        right: 30px;
        width: 18px;
        height: 11px;
    }
    .contact__form--item-text {
        height: 50px;
        padding: 0 15px;
        margin: 0 0 20px;
        font-size: 11.2px;
    }
    .contact__form--item-text--box--kikkake {
        margin-top: 10px;
        font-size: 11.2px;
        line-height: 2.5em;
    }
    .contact__form--item-text--kikkake__sub {
        padding: 3px;
    }
    .contact__form--item-title--secondary {
        position: static;
    }
    .contact__form--item-text--secondary {
        padding-top: 17px;
    }
    .hissu {
        margin: 0 15px;
        float: none;
        font-size: 9.6px;
    }
    .contact__form--item th {
        font-size: 12.8px;
    }
    #contact__form .text--regular {
        width: 72%;
        margin: auto;
        font-size: 12.8px;
        text-align: left;
    }
}
@media screen and (max-width: 450px) {
    .form--btn--text {
        width: 80%;
    }
}
/* お問い合わせ END */
/*========= お問い合わせ〈form-contact.html〉 END =========*/


/*========= 運営会社情報〈company.html〉 START =========*/
/* 運営会社 START */
/*
profile
*/
.profile {
    width: 75%;
    margin: 100px auto 0;
}
.profile__h--large--bgcolor {
    background-color: #707070;
    padding: .7em;
}
.profile__h--large {
    color: #fff;
    font-size: 19px;
    letter-spacing: .2em;
    text-align: center;
    margin: 0;
}
.profile__table--list {
    width: 100%;
    margin: 0 0 30px;
}
.profile__table--list tr:last-child {
    padding: 30px;
    border-bottom: 3px solid #EFEFEF;
}
.profile__table--list__item {
    border-top: 3px solid #EFEFEF;
}
.profile__table--list__item th {
    padding: 30px;
}
.profile__table--list__item td {
    padding: 30px 30px 30px 0;
}
.profile__table--list__item th {
    width: 25%;
}
.profile__table--list__item td {
    width: 75%;
}
@media screen and (max-width: 900px) {
    .profile__table--list {
        color: #707070;
    }
    .profile__table--list__item {
        border-top: 1px solid #EFEFEF;
    }
    .profile__table--list tr:last-child {
        border-bottom: 1px solid #EFEFEF;
    }
    .profile__table--list__item th,
    .profile__table--list__item td {
        padding: 15px 10px;
    }
}
@media screen and (max-width: 768px) {
    .profile {
        width: 90%;
    }
    .profile__h--large {
        font-size: 19px;
    }
    .profile__table--list__item th {
        line-height: 1.9em;
    }
    .profile__table--list__item td {
        line-height: 1.9em;
    }
}
/* 運営会社 END */
/*========= 運営会社情報〈company.html〉 END =========*/



/*
footer
*/
.footer {
    padding: 35px 0 0;
}
.footer--wrap {
    position: relative;
    width: 75%;
    margin: 0 auto;
}
.footer--bgcolor {
    background-color: #00439A;
}
.footer--main {
    width: 50%;
    margin: 0 auto 10px;
}
.footer__list-wrap .list {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__list-wrap li.list__item > a {
    display: block;
    padding: 10px;
    color: #fff;
    font-size: 11.2px;
    font-weight: normal;
    letter-spacing: .2em;
    text-decoration: none;
}
.footer--logo {
    position: absolute;
    top: 6px;
    left: 0;
    width: 200px;
    margin: 0 auto;
}
.footer-copy {
    display: block;
    padding: 2em 0;
    color: #fff;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-align: center;
}
@media screen and (max-width: 1250px) {
    .footer--wrap {
        width: 90%;
    }
}
@media screen and (max-width: 1050px) {
    .footer--logo {
        position: initial;
        margin: 30px auto;
    }
    .footer__list-wrap .list {
        padding: 0;
    }
    .footer--main {
        width: 70%;
    }
}
@media screen and (max-width: 640px) {
    .footer--logo {
        min-width: 120px;
        width: 40%;
    }
    .footer--main {
        width: 100%;
    }
    .footer__list-wrap {
        margin: 0 0 60px 0;
    }
    .footer__list-wrap li.list__item > a {
        padding: 5px;
    }
}







.thanks--title {
    position: relative;
    width: 72%;
    margin: 60px auto 0;
    padding: 70px 0 60px 0;
    border-radius: 29px 29px 0 0;
}
.thanks--title--deco {
    position: absolute;
    top: 60px;
    right: 170px;
    width: 115px;
}
.thanks--title-main {
    width: 590px;
    margin: 0 auto;
}
.thanks--wrap {
    padding: 30px 0;
    text-align: center;
}
.thanks__h--numbers {
    color: #00439A;
    margin: 0;
    font-size: 87.2px;
    line-height: 1em;
    letter-spacing: .02em;
}
.thanks__sp--active {
    display: none;
}
.thanks__sp--hide {
    display: block;
}
.thanks__h--medium {
    padding: 10px;
    background-color: #00439A;
    color: #fff;
    font-size: 16.8px;
    font-weight: bold;
    letter-spacing: .2em;
}
.thanks--text .text--medium {
    text-align: left;
    font-size: 14.4px;
    line-height: 2em;
}
.thanks--back {
    position: relative;
    width: 72%;
    margin: 0 auto;
    padding: 20px;
    background-color: #707070;
}
.thanks--back > a {
    display: block;
    color: #fff;
    font-size: 16.8px;
    font-weight: bold;
    letter-spacing: .2em;
}
.thanks--back--deco {
    position: absolute;
    bottom: -20px;
    left: 25px;
    width: 95px;
}
@media screen and (max-width: 900px) {
    .thanks {
        margin: 2%;
    }
    .thanks--title {
        width: 100%;
        padding: 70px 0 30px 0;
    }
    .thanks--title--deco {
        top: 60px;
        right: 50px;
    }
}
@media screen and (max-width: 580px) {
    .thanks--title-main {
        width: 72%;
        margin: 0 auto;
    }
    .thanks__h--numbers {
        padding-bottom: 7px;
        font-size: 73.6px;
        line-height: 0.8em;
    }
    .thanks__h--medium {
        font-size: 12.8px;
        letter-spacing: .05em;
    }
    .thanks--text .text--medium {
        font-weight: normal;
        font-size: 12.8px;
    }
    .thanks__sp--active {
        display: block;
    }
    .thanks__sp--hide {
        display: none;
    }
    .thanks--back {
        padding: 10px;
    }
    .thanks--back > a {
        font-size: 14.4px;
    }
    .thanks--title--deco {
        top: 180px;
        right: 20px;
        width: 67px;
    }
    .thanks--back--deco {
        width: 54px;
    }
}

