<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.layer_board_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    display: none;
    cursor: pointer;
    background: #000;
}

.layer_board {
    max-width: 800px;
    max-height: 800px;
    display: none;
    position: fixed;
    text-align: center;
    z-index: 2000;
}

#main_Visual {
    padding: 30px 0 40px;
    background: url(../img/bg_main_Visual.jpg) repeat-x 50% 100%;
    background-size: cover;
    position: relative;
}

#main_Visual:before {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 1%;
    background: url(../img/deer02.png) no-repeat 0 100%;
    background-size: 100% auto;
    width: 123px;
    height: 57px;
    z-index: 10;
}

#main_Visual:after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 28%;
    background: url(../img/deer.png) no-repeat 0 100%;
    background-size: 100% auto;
    width: 192px;
    height: 58px;
    z-index: 10;
}

#main_Visual .wrapper {
    border: #007aec solid 5px;
    border-radius: 10px;
    box-sizing: border-box;
    background: #fff;
    min-height: 625px;
}

.tabs {
    border-bottom: #007aec solid 5px;
    overflow: hidden;
}

.tabs li a {
    display: block;
    float: left;
    border-left: #007aec solid 5px;
    width: 25%;
    font-size: 18px;
    color: #999999;
    height: 60px;
    line-height: 60px;
    box-sizing: border-box;
    position: relative;
    padding-left: 8%;
}

.tabs li:first-child a {
    border-left: none;
    padding-left: 6%;
}

.tabs li a:before {
    content: "";
    position: absolute;
    background-position: 0 50%;
    background-repeat: no-repeat;
    background-size: 100% auto;
    height: 100%;
    left: 5%;
}

.tabs li:first-child a:before {
    background-image: url(../img/ico_train.png);
    width: 30px;
}

.tabs li:nth-child(2) a:before {
    background-image: url(../img/ico_map.png);
    width: 28px;
    left: 13%;
}

.tabs li:nth-child(3) a:before {
    background-image: url(../img/ico_location.png);
    width: 38px;
    left: 10%;
}

.tabs li:last-child a:before {
    background-image: url(../img/ico_university.png);
    width: 51px;
}

.tabs li:first-child a.is_active:before {
    background-image: url(../img/ico_train_on.png);
}

.tabs li:nth-child(2) a.is_active:before {
    background-image: url(../img/ico_map_on.png);
}

.tabs li:nth-child(3) a.is_active:before {
    background-image: url(../img/ico_location_on.png);
}

.tabs li:last-child a.is_active:before {
    background-image: url(../img/ico_university_on.png);
}

.tabs li span {
    font-size: 24px;
    color: #007aec;
}

.tab_content {
    overflow: hidden;
    display: none;
}

.tab_content.is_show {
    display: block;
}

.tabs .is_active {
    background-color: #007aec;
    color: #ccecfb;
}

.tabs .is_active span {
    color: #fff;
}

.tab_content h3 {
    color: #007aec;
    font-size: 22px;
    line-height: 1.6363;
    border-bottom: #007aec solid 2px;
    margin-bottom: 20px;
}

.tab_content .search {
    width: 280px;
    height: 50px;
    line-height: 50px;
    margin: 40px auto 20px;
    font-size: 19px;
}

.tab_content .search a {
    padding-right: 0 !important;
    padding-left: 10px;
}

.tab_content .search a::before {
    content: none !important;
}

.tab_content .search a::after {
    content: '';
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    left: 10%;
    margin-top: -14px;
    background: url(../img/ico_search.gif) no-repeat 0 0;
    background-size: 100% auto;
}

input[type=checkbox] {
    display: none;
}

.checkbox {
    box-sizing: border-box;
    -webkit-transition: background-color 0.2s linear;
    transition: background-color 0.2s linear;
    position: relative;
    display: inline-block;
    margin: 0 20px 8px 0;
    padding: 0 12px 0 42px;
    vertical-align: middle;
    cursor: pointer;
}

.checkbox:hover {
    background-color: transparent;
    text-decoration: underline;
}


/*.checkbox:hover:after {
  border-color: #f8007b;
}*/

.checkbox:after {
    -webkit-transition: border-color 0.2s linear;
    transition: border-color 0.2s linear;
    position: absolute;
    top: 50%;
    left: 15px;
    display: block;
    margin-top: -10px;
    width: 16px;
    height: 16px;
    border: 2px solid #007aec;
    /*border-radius: 6px;*/
    content: '';
}

.checkbox:before {
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    position: absolute;
    top: 50%;
    left: 21px;
    display: block;
    margin-top: -7px;
    width: 5px;
    height: 9px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    content: '';
    opacity: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

input[type=checkbox]:checked + .checkbox:before {
    opacity: 1;
}

input[type=checkbox]:checked + .checkbox:after {
    border-color: #f8007b;
    background: #f8007b;
}

#routemap {
    position: relative;
    background: url(../img/routemap/bg_map.gif) 0 0 no-repeat;
    width: 820px;
    height: 550px;
    overflow: hidden;
    border-radius: 0 0 0 10px;
    z-index: 0;
}

#routemap .filter {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

#routemap img.filter {
    max-width: 100%;
    max-height: 100% !important;
}

#routemap .lines {
    position: absolute;
    top: 1100px;
    left: 0;
    z-index: 9;
}

#routemap p {
    position: absolute;
    top: 14px;
    left: 22px;
    background: url(../img/shop.png) no-repeat 0 50%;
    background-size: 21px auto;
    padding-left: 25px;
    z-index: 10;
}

#routemap p.staff_less {
    top: 36px;
    background-image: url(../img/shop2.png);
    letter-spacing: -0.05em;
    font-size: 13px;
}

#routemap .train li {
    position: absolute;
    cursor: pointer;
}

#routemap .btn_nanbu {
    position: absolute;
    right: 20px;
    bottom: 30px;
    z-index: 100;
}

#routemap .btn_nanbu:hover {
    opacity: 0.9;
}

#Kintetsukeihanna {
    top: 9.5454545%;
    left: 18.0487805%;
    z-index: 3;
    /*width: 26.4634146%;*/
}

#Kintetsukyoto {
    top: 4.72727273%;
    left: 59.8780488%;
    z-index: 3;
    /*width: 9.87804878%*/
}

#Kintetsunara {
    top: 21.2727273%;
    left: 18.0487805%;
    z-index: 4;
    /*width: 62.6829268%;*/
}

#Kintetsuikoma {
    top: 20.9090909%;
    left: 25.9756098%;
    z-index: 5;
    /*width: 9.87804878%;*/
}

#Kintetsukashihara {
    top: 30.3636364%;
    left: 59.6341463%;
    z-index: 3;
    /*width: 9.87804878%;*/
}

#Kintetsutenri {
    top: 54.9090909%;
    left: 64.2682927%;
    z-index: 3;
    /*width: 17.5609756%;*/
}

#Kintetsutahara {
    top: 53.4545455%;
    left: 32.195122%;
    z-index: 3;
    /*width: 27.0731707%;*/
}

#Kintetsuosaka {
    top: 62.7272727%;
    left: 17.6829268%;
    z-index: 3;
    /*width: 67.3170732%;*/
}

#Kintetsuyoshino {
    top: 85.0909091%;
    left: 59.6341463%;
    z-index: 3;
    /*width: 9.75609756%;*/
}

#Kintetsuminamiosaka {
    top: 80.3636364%;
    left: 18.4146341%;
    z-index: 3;
    /*width: 47.4390244%;*/
}

#Kintetsugosho {
    top: 85.0909091%;
    left: 21.5853659%;
    z-index: 3;
    /*width: 10.7317073%;*/
}

#JRkatamachi {
    top: 12.1818182%;
    left: 46.097561%;
    z-index: 2;
    /*width: 30.9756098%;*/
}

#JRnara {
    top: 5.09090909%;
    left: 71.8073171%;
    z-index: 2;
    /*width: 9.02439024%;*/
}

#JRkansaihonsen {
    top: 13.4545455%;
    left: 18.1707317%;
    z-index: 1;
    /*width: 63.5365854%;*/
}

#JRsakurai {
    top: 38.3636364%;
    left: 36.5634146%;
    /*width: 45.4878049%;*/
}

#JRwakayama {
    top: 56.9090909%;
    left: 20.2439024%;
    /*width: 23.4146341%;*/
}

.shops {
    position: absolute;
    z-index: 100;
    cursor: pointer;
    /*width: 2.56097561%;*/
    max-width: 21px;
}

.popup {
    display: none;
    position: absolute;
    z-index: 200;
    width: 18.1707317%;
}

#ikoma {
    top: 24%;
    left: 27.5609756%;
}

.ikoma {
    top: 8.18181818%;
    left: 19.8780488%;
}

#takanohara {
    top: 19.4545455%;
    left: 66.097561%;
}

.takanohara {
    top: 3.63636364%;
    left: 58.5365854%;
}

#tomio {
    top: 33.4545455%;
    left: 43.0487805%;
}

.tomio {
    top: 17.4545455%;
    left: 35.6097561%;
}

#gakuenmae {
    top: 26.5454545%;
    left: 50.8536585%;
}

.gakuenmae {
    top: 10.7272727%;
    left: 43.1707317%;
}

#saidaiji {
    top: 26.5454545%;
    left: 61.2195122%;
}

.saidaiji {
    top: 10.7272727%;
    left: 53.5365854%;
}

#saidaijiminami {
    top: 33.0909091%;
    left: 61.2195122%;
}

.saidaijiminami {
    top: 17.2727273%;
    left: 53.5365854%;
}

#omiya {
    top: 26.5454545%;
    left: 71.097561%;
}

.omiya {
    top: 10.7272727%;
    left: 63.4146341%;
}

#nara {
    top: 26.5454545%;
    left: 78.5365854%;
}

.nara {
    top: 10.7272727%;
    left: 70.8536585%;
}

#naraekimae {
    top: 37.0909091%;
    left: 77.5609756%;
}

.naraekimae {
    top: 21.2727273%;
    left: 69.8780488%;
}

#koriyama {
    top: 38.1818182%;
    left: 65.9756098%;
}

.koriyama {
    top: 22.3636364%;
    left: 58.2926829%;
}

#eaon {
    top: 46%;
    left: 70.3658537%;
    max-width: 100%;
}

.eaon {
    top: 28%;
    left: 60.6097561%;
}

#tenri {
    top: 59.0909091%;
    left: 82.3170732%;
}

.tenri {
    top: 43.2727273%;
    left: 74.6341463%;
}

#oji {
    top: 59.8181818%;
    left: 33.5365854%;
}

.oji {
    top: 44%;
    left: 25.8536585%;
}

#kashiba {
    top: 64.5454545%;
    left: 29.0243902%;
}

.kashiba {
    top: 46.7272727%;
    left: 21.3414634%;
}

#yagi {
    top: 64.7272727%;
    left: 65.9756098%;
}

.yagi {
    top: 48.9090909%;
    left: 58.2926829%;
}

#kashihara {
    top: 71.0909091%;
    left: 65.9756098%;
}

.kashihara {
    top: 55.2727273%;
    left: 58.2926829%;
}

#tab_content01 div.right {
    background: #cee7ff;
    width: 24.7706422%;
    padding: 7.5px;
    box-sizing: border-box;
    border-radius: 0 0 5px 0;
    height: 550px;
    position: relative;
}

#tab_content01 .hide {
    display: none;
}

#tab_content01 .nonborder {
    border: none;
    outline: none;
}

.back {
    height: auto;
    margin-bottom: 8px;
}

.back a::before {
    left: 5%;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

.line {
    color: #fff;
    height: 30px;
    line-height: 30px;
    padding: 0 12px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.kintetsu .line {
    background: #f8007b;
}

.kintetsukeihanna .line {
    background: #eb6100;
}

.jr .line {
    background: #666666;
}

.direction {
    font-weight: 600;
    margin: 0 0 0 16%;
    display: inline-block;
}

.station {
    margin: 10px 0 0 23%;
    border-left: solid 11px;
    position: relative;
}

.kintetsu .station {
    border-color: #ff66ae;
}

.kintetsukeihanna .station {
    border-color: #ff8f40;
}

.jr .station {
    border-color: #acacac;
}

.station.totop {
    padding-top: 15px;
}

.totop:before {
    content: "";
    position: absolute;
    top: -5px;
    left: -11px;
    width: 11px;
    height: 11px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.kintetsu .totop:before {
    background-color: #ff66ae;
}

.kintetsukeihanna .totop:before {
    background-color: #ff8f40;
}

.jr .totop:before {
    background-color: #acacac;
}

.station.tobottom {
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.tobottom:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: -11px;
    width: 11px;
    height: 11px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.kintetsu .tobottom:after {
    background-color: #ff66ae;
}

.kintetsukeihanna .tobottom:after {
    background-color: #ff8f40;
}

.jr .tobottom:after {
    background-color: #acacac;
}

.shop:after {
    content: "";
    position: absolute;
    top: 9px;
    left: -46px;
    background: url(../img/shop.png) no-repeat 0 0;
    background-size: 100% auto;
    width: 21px;
    height: 18px;
}

.station &gt; li {
    position: relative;
}

.station &gt; li:before {
    content: "";
    position: absolute;
    top: 6px;
    left: -17px;
    margin: auto;
    background-color: #fff;
    border: solid 3px;
    width: 17px;
    height: 17px;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.4) inset, -1px -1px 2px 0px rgba(0, 0, 0, 0.4) inset;
}

.kintetsu .station &gt; li:before {
    border-color: #f8007b;
}

.kintetsukeihanna .station &gt; li:before {
    border-color: #eb6100;
}

.jr .station &gt; li:before {
    border-color: #666666;
}

.station &gt; li:hover:before {
    background-color: #007aec;
    border-color: #fff !important;
    box-shadow: none;
}

.station &gt; li {
    font-size: 16px;
    font-weight: 600;
    display: block;
    line-height: 1;
    padding: 10px 0 10px 20px;
    cursor: pointer;
}

.station &gt; li:first-of-type {
    padding-top: 0 !important;
}

.station &gt; li:first-of-type:before {
    top: -3px !important;
}

.station &gt; li:first-of-type.shop:after {
    top: 0 !important;
}

.station &gt; li:last-of-type {
    padding-bottom: 0 !important;
}

.kintetsuosaka .line {
    margin-bottom: 7px;
}

.kintetsuosaka .station {
    margin-top: 5px;
}

.kintetsuosaka .station.totop {
    padding-top: 10px;
}

.kintetsuosaka .station.tobottom {
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.kintetsukashihara .station &gt; li,
.kintetsuosaka .station &gt; li {
    padding-top: 5px;
    padding-bottom: 5px;
}

.jrwakayama .station &gt; li {
    padding-top: 6px;
    padding-bottom: 6px;
}

.jrsakurai .station &gt; li,
.kintetsuyoshino .station &gt; li,
.kintetsuikoma .station &gt; li {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

.kintetsukashihara .station &gt; li:before,
.kintetsuosaka .station &gt; li:before {
    top: 2px;
}

.kintetsukashihara .station .shop:after,
.kintetsuosaka .station .shop:after {
    top: 5px;
}

.kintetsukashihara .line {
    margin-bottom: 0;
}

.kintetsuosaka .station &gt; li:last-of-type &gt; a {
    margin-bottom: 4px;
}

.station &gt; li:hover {
    color: #007aec;
}

.station li ul {
    background: url(../img/baloon.png) no-repeat 0 0;
    background-size: 100% auto;
    position: absolute;
    top: -20px;
    left: -220px;
    width: 199px;
    height: 82px;
    display: none;
    z-index: 9999;
}

.station li:first-child ul {
    top: -28px;
}

.station li ul li {
    padding: 14px 0 0 36px;
}

.station li ul li a {
    font-weight: 600;
    color: #007aec;
    box-sizing: border-box;
    display: inline-block;
    line-height: 1;
    font-size: 14px;
}

.preload {
    display: none;
}

#tab_content01 div.first dt {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
    border-radius: 5px;
    box-sizing: border-box;
}

#tab_content01 div.first dt:first-of-type {
    background: #f8007b;
}

#tab_content01 div.first dt:last-of-type {
    background: #666;
    margin-top: 10px;
}

#tab_content01 div.first ul {
    overflow: hidden;
}

#tab_content01 div.first li {
    width: 49%;
    margin: 5px 4px 0 0;
}

#tab_content01 div.first li:nth-child(odd) {
    float: left;
}

#tab_content01 div.first li:nth-child(even) {
    float: right;
}

#tab_content01 div.first li:nth-last-child(even) {
    margin-right: 0;
}

#tab_content01 div.first li a {
    display: block;
    font-size: 15px;
    padding: 0 10px;
    width: 125px;
    height: 35px;
    line-height: 35px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    border: solid 2px #cee7ff;
    box-shadow: 0px 2px 4px 0px rgba(255, 255, 255, 0.4) inset, 0px -2px 4px 0px rgba(0, 0, 0, 0.4) inset;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#tab_content01 div.first li a.j_sakurai {
    font-size: 14px;
    letter-spacing: -1px;
}

#tab_content01 div.first li a:hover,
#tab_content01 div.first li a.hover {
    opacity: 0.8;
    border: solid 2px #2cb0eb;
    /*background: #f0f9ff;*/
    color: #0089ed;
}

#tab_content01 div.first p.btn {
    margin: 47px auto 10px;
}

#tab_content01 .left {
    width: 75.2293578%;
    box-sizing: border-box;
}

#tab_content01 .left .map {
    line-height: 0;
}

#tab_content01 .left .map img {
    border-radius: 0 0 0 5px;
}

#tab_content02 #area {
    background: url(../img/bg_area.jpg) no-repeat 50% 0;
    background-size: cover;
    position: relative;
    min-height: 550px;
    border-radius: 0 0 5px 5px;
}

#tab_content02 #area a {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #f8007b;
    padding: 5px 10px;
    line-height: 1;
    box-sizing: border-box;
    background: #fff;
    border-radius: 5px;
    box-shadow: 1px 1px 2px 0px rgba(255, 255, 255, 0.4) inset, -1px -1px 2px 0px rgba(0, 0, 0, 0.4) inset;
    -webkit-transition: all .3s;
    transition: all .3s;
}

#tab_content02 #area a:hover {
    background: #f8007b;
    color: #fff;
}

#tab_content02 #area div {
    position: absolute;
}

#tab_content02 #area .btn_nanbu {
    position: absolute;
    right: 130px;
    bottom: 100px;
    padding: 0;
    box-shadow: none;
    background: none !important;
}

#tab_content02 #area .btn_nanbu:hover {
    opacity: 0.8;
}

#area01 {
    top: 25.27%;
    left: 44.31%;
}

#area02 {
    top: 28.18%;
    left: 61.43%;
}

#area03 {
    top: 36.36%;
    left: 47.98%;
}

#area04 {
    top: 44.72%;
    left: 56.61%;
}

#area05 {
    top: 52.72%;
    left: 41.56%;
}

#area06 {
    top: 58.36%;
    left: 45.23%;
}

#area07 {
    top: 58.55%;
    left: 58.26%;
}

#area08 {
    top: 63.09%;
    left: 51.19%;
}

#area09 {
    top: 64%;
    left: 41.93%;
}

#area10 {
    top: 74%;
    left: 45.05%;
}

#area11 {
    top: 73.81%;
    left: 52.02%;
}

#area12 {
    top: 68.72%;
    left: 55.69%;
}

#area13 {
    top: 57.63%;
    left: 71.27%;
}

#area14 {
    top: 90.18%;
    left: 44.68%;
}

#area15 {
    top: 85.63%;
    left: 63.39%;
}

#area16 {
    background: #ffdeee;
    border: solid 2px #f8007b;
    border-radius: 10px;
    width: 362px;
    box-sizing: border-box;
    position: relative;
    top: 40.18%;
    left: 5.96%;
}

#area16:after {
    border-left: 50px solid #f8007b;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    content: '';
    position: absolute;
    right: -40px;
    top: 10%;
}

#area16 p {
    background: #f8007b;
    color: #fff;
    font-size: 18px;
    text-align: center;
    letter-spacing: -0.025em;
    line-height: 1.22;
    padding: 5px 0;
}

#area16 p span {
    font-size: 16px;
    display: block;
}

#area16 ul {
    overflow: hidden;
    padding: 9px 9px 4px 9px;
}

#area16 ul li {
    float: left;
    margin: 0 5px 5px 0;
}

#area16 ul li:nth-child(3n) {
    margin-right: 0;
}

#area16 a {
    color: #333 !important;
    width: 110px;
    height: 30px;
    line-height: 30px !important;
    padding: 0 0 0 8px !important;
    font-weight: normal !important;
}

#area16 a:hover {
    color: #fff !important;
}

#area17 {
    top: 29.45%;
    left: 70.18%;
}

#area18 {
    top: 58.18%;
    left: 80.55%;
}

#area19 {
    top: 18.72%;
    left: 37.34%;
}

#area20 {
    top: 29.27%;
    left: 34.58%;
}

#area21 {
    top: 3.27%;
    left: 51.56%;
}

#area22 {
    top: 10.72%;
    left: 55.68%;
}

#area23 {
    top: 15.45%;
    left: 51.1%;
}

#tab_content02 .prefecture a {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: normal !important;
    background: #63af00 !important;
    padding: 6px 10px !important;
}

#tab_content02 .prefecture a:hover {
    color: #63af00 !important;
    background: #fff !important;
}

#area .none {
    opacity: 0.45;
    transition: none;
    cursor: default;
}

#area .none:hover {
    background: #fff !important;
    color: #f8007b !important;
}

#area16 .none:hover {
    color: #333 !important;
}

#tab_content02 .prefecture a.none:hover {
    background: #63af00 !important;
    color: #fff !important;
}

#area24 {
    top: 10.3%;
    left: 26.6%;
}
#area27 {
    top: 58%;
    left: 61.1%;
}
#area28 {
    top: 57.14%;
    left: 77.7%;
}
#area29 {
    top: 63.5%;
    left: 50.8%;
}
#area30 {
    top: 68%;
    left: 58.6%;
}
#area31 {
    top: 73.5%;
    left: 53.7%;
}
#area32 {
    top: 85%;
    left: 68%;
}
#area27 a, #area28 a, #area29 a, #area30 a, #area31 a, #area32 a {
	color: #005f7c !important;
}
#area27 a:hover, #area28 a:hover, #area29 a:hover, #area30 a:hover, #area31 a:hover, #area32 a:hover {
	color: #fff !important;
	background: #005f7c !important;
}
#area .none {
    opacity: 0.45;
    transition: none;
    cursor: default;
}

#area .none:hover {
    background: #fff !important;
    color: #f8007b !important;
}
#area #area28 a.none:hover {
    background: #fff !important;
    color: #005f7c !important;
}
#area25 {
    top: 3.8%;
    left: 62.4%;
}

#area26 {
    top: 41%;
    left: 87%;
}

#tab_content03,
#tab_content04 {
    padding: 20px;
}

#tab_content03 dt {
    font-size: 18px;
    font-weight: 600;
    color: #007aec;
    background: #d9ecff;
    height: 40px;
    line-height: 40px;
    margin-bottom: 15px;
}

#tab_content03 dt span {
    font-size: 16px;
    font-weight: normal;
}

#tab_content03 ul {
    overflow: hidden;
}

#tab_content03 ul li {
    color: #007aec;
    font-size: 15px;
    line-height: 20px;
    width: 33.3333%;
    float: left;
    margin-bottom: 10px;
}

#tab_content03 .details a {
    color: #007aec;
    text-decoration: underline;
}

#tab_content04 ul {
    overflow: hidden;
}

#tab_content04 ul li {
    width: 25%;
    float: left;
    margin-bottom: 10px;
    font-size: 15px;
}

#tab_content04 ul li a {
    color: #007aec;
    text-decoration: underline;
    font-size: 16px;
}

#tab_content04 ul li img {
    max-width: 150px;
}

main {
    clear: both;
    margin-bottom: 40px;
}

.sp_banner {
    display: none;
}

#information {
    clear: both;
    line-height: 50px;
    overflow: hidden;
}

#information h1 {
    color: #007aec;
    font-size: 16px;
    font-weight: bold;
    border-bottom: solid 2px #007aec;
    box-sizing: border-box;
    text-align: center;
}

#information ul {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    overflow-y: scroll;
    padding: 0 0 0 25px;
}

#information ul li time {
    color: #007aec;
    font-weight: bold;
    font-family: Helvetica, Arial, "sans-serif";
}

#information ul li span {
    color: #fff;
    font-size: 12px;
    background: #f8007b;
    width: 65px;
    height: 18px;
    line-height: 18px;
    display: inline-block;
    text-align: center;
    border-radius: 5px;
    margin: 0 15px;
}

#information ul li p {
    display: inline-block;
}

nav#kodawari {
    width: 100%;
    margin-bottom: 40px;
}

nav#kodawari .mob {
    display: none;
}

nav#kodawari ul:nth-child(2) {
    overflow: hidden;
}

nav#kodawari ul:nth-child(2) li {
    width: 19.9428571%;
    margin-right: 0.07142857%;
    float: left;
    text-align: center;
}

nav#kodawari ul:nth-child(2) li:last-child {
    margin-right: 0;
}

nav#kodawari ul:nth-child(2) li a {
    color: #fff;
    display: block;
    line-height: 40px;
    height: 40px;
    padding-top: 44%;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
    background-color: #017aed;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
}

nav#kodawari ul:nth-child(2) li:first-child a {
    background-image: url(../img/kodawari_img01.jpg);
}

nav#kodawari ul:nth-child(2) li:nth-child(2) a {
    background-image: url(../img/kodawari_img02.jpg);
}

nav#kodawari ul:nth-child(2) li:nth-child(3) a {
    background-image: url(../img/kodawari_img03.jpg);
}

nav#kodawari ul:nth-child(2) li:nth-child(4) a {
    background-image: url(../img/kodawari_img04.jpg);
}

nav#kodawari ul:nth-child(2) li:last-child a {
    background-image: url(../img/kodawari_img05.jpg);
}

nav#kodawari ul:nth-child(2) li a:hover {
    opacity: 0.8;
}

nav#kodawari ul:nth-child(2) li a:before {
    content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 10px;
    left: 10px;
    margin-top: -10px;
}

nav#kodawari ul:nth-child(2) li a:after {
    content: '';
    width: 4px;
    height: 4px;
    border: 0px;
    border-top: solid 2px #007bff;
    border-right: solid 2px #007bff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: 17px;
    left: 16px;
    margin-top: -4px;
}

#contents #slide_banner /*, .slick-slider*/
{
    /*margin-left: 8px;
    margin-right: 7px;*/
    margin: 0 15px;
}

#contents #slide_banner &gt; ul &gt; li {
    display: none;
}

#contents #slide_banner .bx-viewport .bxslider li {
    display: block !important;
}

#contents #slide_banner .bx-wrapper {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
}

#contents #slide_banner .bx-wrapper .bx-pager {
    padding-top: 0;
    bottom: -15px;
}

#contents #slide_banner .bx-wrapper .bx-controls-direction a {
    position: absolute;
    top: 50%;
    margin-top: -20px;
    outline: 0;
    width: 40px;
    height: 40px;
    text-indent: -9999px;
    z-index: 9999;
    cursor: pointer;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #007aec;
    box-sizing: border-box;
}

#contents #slide_banner .bx-wrapper .bx-prev:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-bottom: solid 3px #fff;
    border-left: solid 3px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 50%;
    margin: -4px -6px 0 0;
}

#contents #slide_banner .bx-wrapper .bx-next:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4px 0 0 -6px;
}

#contents #slide_banner .bx-wrapper .bx-prev {
    left: -20px;
    background: none;
}

#contents #slide_banner .bx-wrapper .bx-next {
    right: -20px;
    background: none;
}

#contents #slide_banner .bx-wrapper .bx-pager.bx-default-pager a {
    background: #999;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

#contents #slide_banner .bx-wrapper .bx-pager.bx-default-pager a.active {
    background: #007aec;
}

#contents section {
    clear: both;
    border: solid 5px #d5eeff;
    border-radius: 10px;
    margin-bottom: 35px;
    padding: 35px 9px 20px 9px;
}

#contents section:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

#contents section {
    display: inline-block;
}

* html #contents section {
    height: 1%;
}

#contents section {
    display: block;
}

#new-arrive {
    background: url(../img/bg_newarrive.gif) no-repeat 88% 5%;
}

#recommend {
    background: url(../img/bg_recommended.gif) no-repeat 20% 5%;
}

#contents section h1, #shop_list h1 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
}

#contents section h1:before {
    content: url(../img/bg_h1_01.gif);
    position: relative;
    left: -15px;
    top: 8px;
}

#contents section h1 em:after {
    content: url(../img/bg_h1_02.gif);
    position: relative;
    right: -82px;
    top: 8px;
}

#contents section h1 em, #shop_list h1 em {
    color: #007aec;
    font-size: 36px;
    font-weight: bold;
    margin-right: -10px;
}

#shop_list h1 em {
    margin-right: 0 !important;
}

#contents section h1 span, #shop_list h1 span {
    display: block;
    font-size: 11px;
    font-family: Avenir, Helvetica, Arial, "sans-serif";
    letter-spacing: 0.2em;
    color: #007aec;
}

div#contents section .btn {
    clear: both;
    width: 240px;
    margin-top: 10px;
    margin-bottom: 7px;
}

#reason {
    clear: both;
    width: 98.8%;
    padding: 10px 0.6%;
    background: url(../common/img/bg_stripe02.png) repeat 0 0;
    margin-bottom: 40px;
    position: relative;
}

#reason div:after {
    content: " ";
    display: block;
    clear: both;
}

#reason h2 {
    text-align: center;
    margin-bottom: 20px;
}

#reason section {
    float: left;
    width: 17.8%;
    margin: 0 1% 0 0;
    padding: 10px 0.7%;
    background: #fff;
    min-height: 110px;
    position: relative;
}

#reason section:after {
    position: absolute;
    top: 0;
    right: 0;
    color: #efefef;
    font-size: 42px;
    font-family: Avenir, Arial, Helvetica, "sans-serif";
    font-weight: bold;
    line-height: 1;
}

#reason01:after {
    content: "01";
}

#reason02:after {
    content: "02";
}

#reason03:after {
    content: "03";
}

#reason04:after {
    content: "04";
}

#reason05:after {
    content: "05";
}

#reason05 {
    margin: 0 !important;
}

#reason05 p img {
    margin-right: 5px;
}

#reason01 h3 span {
    background: #f8007b;
    position: absolute;
    top: -45px;
    left: 0;
    border-radius: 5px;
    color: #fff;
    padding: 7px 10px;
    font-weight: normal;
    font-size: 85%;
    letter-spacing: 0;
    text-align: center;
}

#reason01 h3 span em {
    font-family: Avenir, Arial, Helvetica, "sans-serif";
    font-weight: bold;
    font-size: 110%;
}

#reason01 h3 span:after {
    position: absolute;
    content: ' ';
    width: 0;
    height: 0;
    bottom: -10px;
    right: 50%;
    left: 50%;
    border-style: solid;
    border-width: 10px 5px 0 5px;
    border-color: #f8007b transparent transparent transparent;
}

#reason section h3 {
    color: #e5006c;
    font-weight: 600;
    font-size: 114%;
    margin: 0 0 15px 70px;
    letter-spacing: -0.05em;
    line-height: 1.3;
    position: relative;
    min-height: 40px;
    z-index: 10;
}

#reason section h3:before {
    display: inline-block;
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    position: absolute;
    top: -50px;
    left: -105px;
}

#reason01 h3:before {
    content: url(../img/reazon_img01.png);
}

#reason02 h3:before {
    content: url(../img/reazon_img02.png);
}

#reason03 h3:before {
    content: url(../img/reazon_img03.png);
}

#reason04 h3:before {
    content: url(../img/reazon_img04.png);
}

#reason05 h3:before {
    content: url(../img/reazon_img05.png);
}

#reason .btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 210px;
}

#toShop {
    position: fixed;
    top: 150px;
    right: -5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 10000;
}

#toShop:hover {
    right: 0;
}

#toShop_sp {
    display: none;
}

#toIg {
    position: fixed;
    top: 360px;
    right: -5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 10000;
}

#toIg:hover {
    right: 0;
}

#toIg_sp {
    display: none;
}

#w_search_area {
    position: relative;
}

#search_area {
    max-width: 1100px;
    margin: 30px auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: solid 5px #0279ec;
    border-radius: 5px;
}

#search_area .select {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background: url(../img/arrow.png) no-repeat top 15px right 17px;
    padding: 8px 12px;
    border-left: solid 1px #949494;
    cursor: pointer;
}

#search_area .select:nth-child(1) {
    width: 200px;
    border-left: none;
}

#search_area .select:nth-child(2) {
    width: 155px;
}

#search_area .select:nth-child(3) {
    width: 170px;
}

#search_area .select:nth-child(4) {
    width: 160px;
}

#search_area .select:nth-child(5) {
    width: 200px;
    visibility: hidden;
}

#search_area .search {
    width: 215px;
    background: #0279ec;
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 60px;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
}

#search_area .search:hover {
    background: #ebf4fd;
    color: #0279ec;
}

#search_area .select .text {
    overflow: hidden;
    white-space: nowrap;
    color: #949494;
}

#search_area .select .ttl {
    color: #808080;
    font-weight: bold;
}

.search_area_detail {
    display: none;
    z-index: 10000;
    position: absolute;
    top: 100px;
    left: 50%;
    background: #fff;
    border: solid 3px #c7c7c7;
    width: 1100px;
    margin-left: -550px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
}

.search_area_detail.list {
    width: 170px;
    margin-left: -190px;
}

.search_area_detail.list.height {
    margin-left: -30px;
}

.search_area_detail:before {
    position: absolute;
    top: -22px;
    content: '';
    display: block;
    width: 30px;
    height: 22px;
    background: url(../img/arrow2.png) no-repeat;
}


.search_area_detail.area:before {
    left: 60px;
}

.search_area_detail.floor:before {
    left: 250px;
}

.search_area_detail.under:before,
.search_area_detail.height:before {
    left: 30px;
}

.search_area_detail.commit:before {
    left: 730px;
}

.search_area_detail.list ul {
    max-height: 300px;
    overflow: auto;
}

.search_area_detail.list li {
    padding: 10px;
    cursor: pointer;
}

.search_area_detail.list li:hover {
    background: #f8f8f8;
}

.search_area_detail .header {
    font-size: 16px;
    font-weight: bold;
    padding: 0 230px;
    border-bottom: solid 1px #e9e9e9;
}

.search_area_detail .header ul span {
    position: relative;
    display: inline-block;
    width: 180px;
    text-align: center;
    padding: 25px 0 22px;
    border-bottom: solid 2px #e9e9e9;
    cursor: pointer;
}

.search_area_detail .header ul span.active:after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: #0279ec;
    bottom: -6px;
}

.search_area_detail .header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.search_area_detail .w_content .content {
    display: none;
}

.search_area_detail .w_content .content:first-child {
    display: block;
}

.search_area_detail .w_content .content .inner {
    padding: 20px 40px 0;
    height: 310px;
    overflow-y: auto;
}

.search_area_detail .w_content .content .inner .ttl {
    font-size: 18px;
    font-weight: bold;
    color: #808080;
}

.search_area_detail .w_content .content .inner .parent {
    border-top: dotted 1px #c7c7c7;
    padding-top: 15px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 5px;
}

.search_area_detail .w_content .content .inner .parent .checkbox {
    text-decoration: none;
}

.search_area_detail .checkbox {
    padding-left: 26px;
    margin-right: 0;
    text-decoration: underline;
}

.search_area_detail .checkbox:after {
    border: solid 1px #c7c7c7;
    width: 14px;
    height: 14px;
    left: 0;
}

.search_area_detail .check_list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.search_area_detail .check_list li {
    margin: 0 0 10px 25px;
    width: 17%;
}

.search_area_detail .checkbox:before {
    left: 6px;
    margin-top: -7px;
    width: 3px;
    height: 7px;
    border-width: 2px;
}

.search_area_detail input[type=checkbox]:checked + .checkbox:after {
    border-color: #0279ec;
    background: #0279ec;
}

.search_area_detail .w_btn {
    border-top: solid 1px #e2e2e2;
    text-align: center;
    padding: 15px 0;
}

.search_area_detail .w_btn li {
    display: inline-block;
    margin: 0 5px;
}

.search_area_detail .w_btn a {
    display: block;
    color: #808080;
    border: solid 1px #ededec;
    width: 130px;
    text-align: center;
    height: 40px;
    line-height: 40px;
}

.search_area_detail .w_btn .decision {
    color: #0279ec;
    background: #ebf4fd;
}


#pickup {
    background: #ebf4fd;
    padding: 20px 0;
}
#pickup .flex {
	white-space: nowrap;
    overflow-x: scroll;
    display: block;
}
#pickup .flex li {
	display: inline-block;
    width: 24%;
    margin-right: 1%;
    vertical-align: top;
}
#pickup figure {
    position: relative;
}

#pickup figure img {
    width: 100%;
    height: auto;
    position: relative;
/*	max-height: 185px;*/
	overflow: hidden;
}

#pickup figure:before {
    content: '';
    display: block;
    position: absolute;
    width: 56px;
    height: 55px;
    background: url(../img/tri.png) no-repeat;
    top: 0;
    left: 0;
    z-index: 1;
}

#pickup p {
    padding: 10px 2px 20px 5px;
	white-space: normal;
}

#pickup a {
    display: block;
}

#pickup a:hover {
    background: #fff;
    color: #383838;
}


.ttl01 {
    text-align: center;
    background: url(../img/bg_ttl.png) no-repeat center top;
    padding-top: 40px;
    margin-bottom: 25px;
}

.ttl01 span {
    display: block;
}

.ttl01 .white {
    display: inline-block;
    background: #fff;
    padding: 0 50px;
}

.ttl01 .blue {
    display: inline-block;
    background: #ebf4fd;
    padding: 0 50px;
}

.ttl01 .en {
    font-family: 'Overpass', sans-serif;
    font-weight: 900;
    font-size: 30px;
    color: #323232;
}

.ttl01 .ja {
    font-weight: bold;
    font-size: 14px;
    color: #80807f;
}

.tab_area {
    display: -webkit-flex;
    display: flex;
}

.tab_area label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 33.3%;
    text-align: center;
    cursor: pointer;
    line-height: 1;
    padding: 20px 0 10px;
    border-radius: 20px 20px 0 0;
    border-top: solid 4px #fff;
    border-bottom: solid 4px #ededed;
}
.tab_area label .en {
    font-family: 'Overpass', sans-serif;
    font-weight: 900;
    font-size: 26px;
    min-width: 200px;
    padding-bottom: 3px;
    margin-bottom: 2px;
    color: #808080;
}

.tab_area label .ja {
    font-size: 12px;
    color: #808080;
    font-weight: bold;
}

.tab_area label span {
    display: inline-block;
}


.tab_wrap input[type="radio"] {
    display: none;
}

.tab_panel {
    display: none;
}


.panel_area {
    padding-top: 28px;
}

#tab1:checked ~ .tab_area .tab1_label,
#tab2:checked ~ .tab_area .tab2_label,
#tab3:checked ~ .tab_area .tab3_label {
    border: solid 4px #ededed;
    border-bottom-color: #fff;
}

#tab1:checked ~ .tab_area .tab1_label .en,
#tab2:checked ~ .tab_area .tab2_label .en,
#tab3:checked ~ .tab_area .tab3_label .en {
    background: url(../img/line.png) no-repeat center bottom;
    color: #323232;
}

#tab1:checked ~ .panel_area #panel1 {
    display: block;
}

#tab2:checked ~ .panel_area #panel2 {
    display: block;
}

#tab3:checked ~ .panel_area #panel3 {
    display: block;
}

.panel_area .sp_ttl {
    display: none;
}

.tab_panel .flex + .sp_ttl .btn01 {
    display: none;
}

.flex {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flex:before,
.flex:after {
    content: '';
    display: block;
    width: 24%;
}

.flex:before {
    order: 1;
    -webkit-order: 1;
}

.flex li {
    width: 24%;
}

.flex.list01 li,
.flex.list02 li {
    width: 32.2%;
}

.flex.list01:before,
.flex.list01:after,
.flex.list02:before,
.flex.list02:after {
    width: 32.2%;
}

.flex.list01 .img,
.flex.list02 .img {
    position: relative;
	max-height: 197px;
	overflow: hidden;
	vertical-align: middle;
}

.flex.list01 .img img {
    width: 100%;
    height: auto;
}

.flex.list01 .img .type, .flex.list01 .img .fav {
    position: absolute;
}

.flex.list02 .img .date,
.flex.list01 .img .type {
    top: 0;
    left: 0;
    color: #fff;
    background: #383838;
    font-size: 12px;
    padding: 3px 15px;
}


.flex.list01 li a:hover .img .type {
}

.flex.list02 .img .date {
    position: absolute;
    background: #f8017a;
    padding: 3px 8px;
}

.flex.list01 .img .fav {
    width: 41px;
    height: 36px;
    background: url(../img/fav.png) no-repeat left top / 100% auto;
    top: 18px;
    right: 22px;
    z-index: 10;
    cursor: pointer;
}

.flex.list01 .img .fav.on {
    background: url(../img/fav_on.png) no-repeat left top / 100% auto;
}

.flex.list01 li {
    margin-bottom: 20px;
}

.flex.list01 li a {
    display: block;
    color: #383838;
    height: 100%;
}

.flex.list01 li a:hover {
    background: #ededed;
}

.flex.list01 .detail {
    padding: 2px 10px 15px;
}

.flex.list01 .ttl {
    font-weight: bold;
    color: #f8017a;
    font-size: 16px;
}

.flex.list01 .price,
.flex.list01 .distance,
.flex.list01 .train {
    padding-left: 20px;
}

.flex.list01 .price {
    font-weight: bold;
    background: url(../img/ic01.png) no-repeat left center;
}

.flex.list01 .distance {
    background: url(../img/ic02.png) no-repeat left center;
}

.flex.list01 .train {
    background: url(../img/ic03.png) no-repeat left center;
}

.flex.list02 .ttl {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 10px;
}

.flex.list02 .detail p {
    line-height: 1.4;
}


.btn01 {
    text-align: center;
    font-size: 16px;
    margin-top: 20px;
}

.btn01 a {
    color: #323232;
    font-weight: bold;
    background: url(../img/arrow3.png) no-repeat center right;
    padding-right: 75px;
    padding-top: 6px;
}

.btn01 a:hover {
    opacity: 0.6;
}

#section01 {
    margin-bottom: 60px;
}

#section02 {
    margin-bottom: 90px;
}
/*#pickup .slick-dots {
	display: none !important;
}*/
#pickup .slider li {
	margin: 0 0.2%;
}
#shop_slider {
    max-width: 790px;
    margin: 0 auto;
    position: relative;
}
#shop_slider a {
    color: #383838;
}

#shop_slider img {
    margin-bottom: 10px;
}

#shop_slider ul {
    margin-bottom: 30px;
}

#shop_slider li {
    text-align: center;
    margin: 0 5px;
}
.slider .slick-prev,
.slider .slick-next,
#shop_slider .slick-prev,
#shop_slider .slick-next {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 25px 13px 0 0;
    border: none;
    background: none;
    cursor: pointer;
    top: 50%;
    margin-top: -22px;
}

#shop_slider .slick-slide {
    outline: none;
}
.slider .slick-prev,
#shop_slider .slick-prev {
    background: url(../img/prev.png) no-repeat left top;
    left: -40px;
}
.slider .slick-next,
#shop_slider .slick-next {
    background: url(../img/next.png) no-repeat left top;
    right: -40px;
}

#shop_slider p br {
    display: none;
}

#section03 {
    margin-bottom: 90px;
}

#section03 ul {
    max-width: 820px;
    margin: 0 auto;
}

#section03 ul li {
    border-bottom: dotted 1px #d5d5d5;
}

#section03 ul a {
    display: block;
    overflow: hidden;
    padding: 10px 0 20px;
}

#section03 ul a:hover {
    color: #0279ec;
}

#section03 .left {
    width: 23%;
}

#section03 .right {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 77%;
    background: url(../img/arrow4.png) no-repeat right 10px center;
    padding-right: 50px;
}


#section03 ul .left p {
    display: inline-block;
    font-size: 12px;
}

#section03 ul .left .date {
    font-weight: bold;
    color: #383838;
    margin-right: 5px;
}

#section03 ul .left .cat {
    color: #fff;
    background: #f8017a;
    border-radius: 5px;
    padding: 1px 6px;
}

#section04 {
    margin-bottom: 80px;
}

#section04 ul {
    margin-bottom: 40px;
}

#section04 ul a:hover {
    color: #0279ec;
}

#section05 {
    padding-bottom: 80px;
}

#section05 ul {
    text-align: center;
    margin-top: 40px;
}

#section05 ul li {
    display: inline-block;
    margin: 0 10px;
}

#section05 a:hover {
    opacity: 0.6;
}

#section05,
#sp_banner01,
#sp_category,
#sp_search,
#sp_mv {
    display: none;
}

a .img .type {
}

.flex.list01 li a .img .type {
}

#search form {
    display: inherit;
}

#search form #search_txt {
    margin-right: 10px;
}

@media (max-width: 899px) {
    #shop_slider,
    .flex {
        white-space: nowrap;
        overflow-x: scroll;
        display: block;
    }

    #shop_slider::-webkit-scrollbar,
    .flex::-webkit-scrollbar {
        display: none;
    }

    #shop_slider li,
    .flex li {
        display: inline-block;
        width: 220px;
        margin-right: 10px;
			vertical-align: top;
    }

    .flex.list02 li,
    .flex.list01 li {
        width: 220px;
    }
	.flex p {
		white-space: normal;
	}
    .flex.list01 .img .fav {
        width: 24px;
        height: 23px;
        top: 10px;
        right: 8px;
    }

    .w1200 main #contents {
        margin-left: 0;
        padding-left: 0;
    }

    .tab_area {
        display: none;
    }

    .tab_panel {
        display: block;
    }

    #panel3 {
        display: none;
    }

    #pickup {
        margin-bottom: 25px;
    }

    #sp_category {
        display: block;
    }

    #sp_category ul {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #sp_category li {
        width: 32%;
        border-radius: 5px;
        border: solid 1px #b0b0b0;
        margin-bottom: 5px;
    }

    #sp_category a {
        display: block;
        text-align: center;
        padding: 10px 5px;
        font-size: 13px;
    }

    #sp_category .single {
        padding-top: 22px;
    }

    #shop_slider p br {
        display: block;
    }

    #section02 {
        margin-bottom: 20px;
    }

    #section02 .btn01 {
        display: none;
    }

    #section03 {
        margin-bottom: 45px;
    }

    #section03 .left,
    #section03 .right {
        width: 100%;
        float: none;
    }

    #section03 .left {
        margin-bottom: 5px;
    }

    #section03 .btn01 {
        display: none;
    }

    #section04 {
        position: relative;
        margin-bottom: 45px;
    }

    #section04 .btn01 {
        position: absolute;
        top: 0;
        right: 10px;
        margin-top: 3px;
    }

    #section04 .btn01 a {
        background-size: 30px auto;
        padding-right: 40px;
    }

    #sp_service {
        display: block;
        margin-bottom: 40px;
    }

    #sp_company {
        display: block;
        text-align: center;
    }
}


@media screen and (max-width: 1200px) {
    #search_area {
        width: 96%;
    }

    .search_area_detail {
        margin-left: 0;
        width: 90%;
        left: 5%;
    }

    .search_area_detail.floor:before {
        left: 18%;
    }

    .search_area_detail.commit:before {
        left: 70%;
    }

    .search_area_detail.list.under,
    .search_area_detail.list.height {
        left: 50%;
    }

    #shop_slider .slick-prev,
    #shop_slider .slick-next {
        z-index: 10;
    }

    #shop_slider .slick-prev {
        left: 0;
    }

    #shop_slider .slick-next {
        right: 0;
    }

    .tab_area label .en {
        min-width: 0;
        font-size: 16px;
    }
}

@media screen and (max-width: 1150px) {
    #tab_content01 div.first li a {
        width: 100%;
    }

    #tab_content01 div.first p.btn {
        margin: 20px auto 10px;
    }

    #slide_banner .slick-prev {
        left: 5px;
    }

    #slide_banner .slick-next {
        right: 5px;
    }

    .property_list .property_type {
        right: 5px;
    }

    #reason01 h3 span {
        top: -60px;
    }

    #reason .btn {
        clear: both;
        position: static;
        margin: 10px auto;
        width: 240px;
    }

    #slide_banner .slick-prev {
        left: 5px;
    }

    #slide_banner .slick-next {
        right: 5px;
    }

    .property_list .property_type {
        right: 5px;
    }

    #reason01 h3 span {
        top: -60px;
    }

    #reason .btn {
        clear: both;
        position: static;
        margin: 10px auto;
        width: 240px;
    }
}

@media screen and (max-width: 1000px) {
    nav#kodawari ul {
        clear: both;
    }

    nav#kodawari ul:nth-child(2) li {
        width: 33.2666667%;
        margin: 0 0.1% 0.1% 0;
    }

    nav#kodawari ul:nth-child(2) li:nth-child(3n) {
        margin-right: 0;
    }

    #new-arrive {
        background-size: 85% auto;
        background-position: 95% 2%;
    }

    #recommend {
        background-size: 99% auto;
        background-position: 50% 2%;
    }

    #reason h2 {
        margin-bottom: 30px;
    }

    #reason section {
        width: 31.2%;
        margin-bottom: 1%;
    }

    #reason section:nth-of-type(3n) {
        margin-right: 0;
    }

    #reason01 h3 span {
        top: -45px;
    }

    #reason .btn {
        margin-top: 0;
    }

    #area16 {
        width: 247px;
        left: 14.96%;
    }

    #area16 ul li {
        margin-right: 5px !important;
    }

    #area16 ul li:nth-child(even) {
        margin-right: 0 !important;
    }

    #area26 {
        left: 81.6%;
    }
}

@media screen and (max-width: 899px) {
    nav#kodawari {
        padding: 20px 2% !important;
        margin-bottom: 0;
        width: 96% !important;
    }

    nav#kodawari ul {
        overflow: hidden;
    }

    nav#kodawari ul li {
        text-align: center;
    }

    nav#kodawari .mob {
        display: inherit;
    }

    nav#kodawari .mob li a {
        float: left;
        margin: 0 0.65% 20px;
        background: #fff;
        border: solid 4px #007aec;
        border-radius: 10px;
        box-sizing: border-box;
        color: #999999 !important;
        display: block;
        font-size: 14px;
        line-height: 1.3;
        padding: 35px 0 10px 0;
        width: 32%;
    }

    nav#kodawari .mob li a span {
        display: block;
        font-size: 18px;
        color: #999999;
        white-space: nowrap;
        font-weight: bold;
    }

    nav#kodawari .mob li a {
        content: "";
        background-repeat: no-repeat;
    }

    nav#kodawari .mob li:nth-child(1) a {
        background-image: url(../img/ico_train.png);
        background-size: 20px;
        background-position: 50% 10%;
    }

    nav#kodawari .mob li:nth-child(2) a {
        background-image: url(../img/ico_location.png);
        background-size: 22px;
        background-position: 50% 10%;
    }

    nav#kodawari .mob li:nth-child(3) a {
        background-image: url(../img/ico_university.png);
        background-size: 32px;
        background-position: 50% 12%;
    }

    nav#kodawari ul:nth-child(2) li {
        width: 100%;
        margin: 0 0 1px 0 !important;
        float: none;
    }

    nav#kodawari ul:nth-child(2) li a {
        padding: 0;
        height: 50px;
        line-height: 50px;
        background: #007aec !important;
    }

    nav#kodawari ul:nth-child(2) li a:before {
        bottom: 15px;
        left: inherit;
        right: 15px;
    }

    nav#kodawari ul:nth-child(2) li a:after {
        bottom: 22px;
        left: inherit;
        right: 23px;
    }

    .sp_banner {
        display: block;
    }

    .sp_banner img {
        width: 100%;
    }

    #information {
        height: auto;
        line-height: 2;
        margin: 10px 0;
    }

    #information h1 {
        float: none;
        padding: 0;
        text-align: center;
        border-bottom: solid 2px #007aec;
        margin: 0;
    }

    #information ul {
        margin: 5px 15px;
    }

    #main_Visual {
        display: none;
    }

    #slide_banner .slick-prev {
        left: -2%;
    }

    #slide_banner .slick-next {
        right: -2%;
    }

    #reason section {
        width: 48%;
        margin: 0 1% 1% 0 !important;
    }

    #reason section:nth-of-type(even) {
        margin-right: 0 !important;
    }

    #toShop {
        display: none;
    }

    #toShop_sp {
        display: block;
        text-align: center;
        color: #fff;
        background: #03c300;
        font-size: 20px;
        height: 40px;
        line-height: 40px;
        margin: 2px 0;
    }

    #toShop_sp span {
        background: url(../img/ico_line.gif) no-repeat 0 50%;
        background-size: 34px auto;
        display: inline-block;
        padding-left: 43px;
    }

    #toIg {
        display: none;
    }

    #toIg_sp {
        display: block;
        text-align: center;
        color: #fff;
        background: #005481;
        font-size: 20px;
        height: 40px;
        line-height: 40px;
        margin: 2px 0;
    }

    #toIg_sp span {
        background: url(../img/ico_ig.png) no-repeat 0 50%;
        background-size: 34px auto;
        display: inline-block;
        padding-left: 43px;
    }

    #search_area {
        display: none;
    }

    #sp_mv {
        padding-top: 9%;
        display: block;
        background: url(../img/mv_sp.jpg) no-repeat center / cover;
        text-align: center;
    }

    #sp_search {
        display: flex;
        justify-content: space-between;
    }

    #sp_search .search_txt {
        position: relative;
        width: calc(100% - 50px);
        height: 42px;
        padding: 5px 10px;
        box-sizing: border-box;
        border: solid 1px #d1d1d1;
        border-radius: 5px;
    }

    #sp_search .search_btn {
        width: 43px;
        height: 42px;
        border: none;
        background: url(../common/img/search.png) no-repeat;
    }

    #main_txt {
        text-align: center;
        height: 100%;
    }

    #main_txt img {
        width: 90%;
    }
	.btn01 {
		display: none;
	}

    .ttl01 {
        position: relative;
        margin: 0 -2% 15px;
        text-align: left;
        background: url(../img/line.jpg) repeat-x left bottom / auto 6px;
        padding: 0 2% 8px;
    }

    .ttl01 .blue,
    .ttl01 .white {
        background: none;
        padding: 0;
    }

    .ttl01 .en {
        font-size: 20px;
    }

    .ttl01 .ja {
        display: none;
        font-size: 20px;
        color: #323232;
    }

    .ttl01.sp_ja .en {
        display: none;
    }

    .ttl01.sp_ja .ja {
        display: block;
    }

    .tab_panel .sp_ttl {
        position: relative;
        display: block;
    }
    .tab_panel .sp_ttl .btn01 {
        position: absolute;
        right: 10px;
        top: 0;
        margin-top: 3px;
			display: block !important;
    }

    .tab_panel .sp_ttl .btn01 a {
        background-size: 30px auto;
        padding-right: 40px;
    }

    #section01 {
        margin-bottom: 10px;
    }

    #sp_banner01 {
        margin-bottom: 50px;
        display: block;
    }

    #sp_banner01 ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
    }

    #sp_banner01 li {
        width: 49%;
        margin-bottom: 5px;
    }

    #sp_search form {
        display: inherit;
        width: 100%;
    }

    #sp_search form .search_txt {
        margin-right: 10px;
    }
}

@media screen and (max-width: 640px) {
    #contents section {
        padding-top: 20px;
        background: none !important;
    }

    #reason {
        margin-bottom: 20px;
    }

    #reason h2 {
        margin: 10px 0 45px;
    }

    #reason section:nth-of-type(even) {
        margin: 0 auto 3% auto !important;
    }

    #reason section {
        width: 96%;
        margin: 0 auto 3% auto !important;
        float: none;
        min-height: 0;
    }

    #contents #slide_banner {
        margin: 0;
    }
	#pickup figure img {
		/*max-height: 146px;*/
	}.slider .slick-prev,
	
	#shop_slider .slick-prev {
    background: url(../img/prev.png) no-repeat left top;
    left: -5px;
		z-index: 100000;
}
.slider .slick-next,
#shop_slider .slick-next {
    background: url(../img/next.png) no-repeat left top;
    right: -5px;
	z-index: 100000;
}
}

@media screen and (max-width: 400px) {
    /*nav#kodawari .mob li a span {
        font-size: 24px;
    }*/
    nav#kodawari .mob li a {
        font-size: 16px;
        padding: 45px 0 3px 0;
    }

    nav#kodawari .mob li:nth-child(1) a {
        background-size: 30px auto;
        background-position: 50% 8%;
    }

    nav#kodawari .mob li:nth-child(2) a {
        background-size: 38px auto;
    }

    nav#kodawari .mob li:nth-child(3) a {
        background-size: 51px auto;
        background-position: 50% 14%;
    }
}
</pre></body></html>