@charset "utf-8";
/* manual
========================================== */
.pcOnly {
    display: block;
}
.spOnly {
    display: none !important;
}
.tabOnly {
    display: block;
}
.pctabOnly {
    display: block;
}
.tabspOnly {
    display: block;
}
body {
}
.conw {
    min-width: 100%;
}
img {
    /* width: 100%; */
}
/* header
========================================== */
header {
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    /* height: 155px; */
}
header h1 {
    margin-bottom: 5px;
    padding-top: 5px;
}
.hd {
    max-width: 1100px;
    width: 96%;
    margin: 0 auto;
    padding: 20px 2%;
}
header .logo {
    text-align: left;
    padding: 0px 0;
    float: left;
    width: 100px;
    margin-top: 10px;
}
header .logo p {
    margin-bottom: 5px;
    font-size: 12px;
}
header .logo img {
    width: 100%;
}
header .title {
    text-align: center;
    padding: 0px 0;
    width: 50%;
    left: 25%;
    margin: 0 auto;
    position: absolute;
}
header .title a {
    font-size: 29px;
}
header .req {
    float: right;
    width: 160px;
}
header .req a {
    padding: 10px 0 5px;
}
header .req a:hover {
    /* color: #fbedce; */
    opacity: 1;
    /* border: solid 1px #000000; */
}
header .req a::after {
    position: absolute;
    display: block;
    content: "";
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: all .3s;
    z-index: -1;
    border-radius: 3px;
}
header .req a:hover::after {
    top: 0;
    left: 0;
    background-color: #000000;
    color: #ffffff;
}
.is-animation.req {
    position: fixed;
    z-index: 200;
    top: 0;
    right: 0%;
}
.is-animation.req a {
    text-decoration: none;
    /* border: solid 1px #d4b97c; */
    /* background-color: #aa925a; */
    display: block;
    text-align: center;
    padding: 17px 0 13px;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.hdw_sp {
    display: none;
}
/* gmenu
========================================== */

.gnav {
    width: 100%;
    position: relative;
    z-index: 150;
    background-color: #f5f5f5;
    border-top: solid 1px #233e8b;
}
.gnav ul {
    text-align: center;
    font-size: 0px;
}
.gnav ul li {
    /* float:left; */
    text-align: center;
    display: block;
    width: 11%;
    float: left;
}
.gnav ul li.no {
    opacity: 0.2;
}
.gnav ul li a {
    padding: 13px 0;
}
.gnav ul li a:hover {
    opacity: 1;
}
.gnav ul li a.current {
    /* background-color: #000000; */
    color: #ffffff;
}
.gnav ul li a.current p {
    color: #ffffff;
}
.gnav ul li p {
    font-size: 12px;
    font-weight: normal;
}
.gnav ul li p.en {
    padding-bottom: 3px;
    margin-bottom: 0px;
    font-size: 10px;
}
.gnav ul li.no p.en:befire, .gnav ul li.no p.en:after {
    content:none;
}
.gnav ul li p.en:before,  .gnav ul li p.en:after {
    content: "";
    width: 0%;
    height: 1px;
    position: absolute;
    top: 16px;
    transition: all .2s;
    background-color: white;
    display: inline-block;
}
.gnav ul li p.en:before {
    left: 50%;
}
.gnav ul li p.en:after {
    right: 50%;
}
.gnav ul li p.en:hover:before, .gnav ul li p.en:hover:after {
    background: #FFF;
    width: 50%;
}
.gnav ul li.no p.en:hover:before, .gnav ul li.no p.en:hover:after {
    content: none;
}
.gnav ul li:last-child {
    margin-right: 0;
}
.is-animation.gnav ul li p.en:hover:before, .is-animation.gnav ul li p.en:hover:after {
    /* background: #333; */
}
.is-animation.gnav {
    /* background: rgba(255, 255, 255, 0.9); */
    position: fixed;
    /* z-index:100; */
    top: 0;
    /* border-bottom: solid 1px #cccccc; */
}
.is-animation {
    color: #000;
}
.is-animation.gnav ul li a {
    text-decoration: none;
}
.gn {
    width: 100%;
    margin: 0 auto;
    max-width: 1300px;
}
.gn ul {/* border-left: solid 1px #7f7f7f; */
}
.gn li {
    width: 11.1%;
    float: left;
    height: auto;
    position: relative;
    text-align: center;
    padding-bottom: 1px;
}
/* gmenu  on
========================================== */
.gn li.on {
    background-color: #202020;
}
.gn li:hover {
}
.gn li a {
    display: block;
    padding: 10px 0 9px;
}
.gn li p {
    border-bottom: solid 1px transparent;
}
.gn li.on p {
    border-bottom: solid 1px #98803a;
    transition: all 0.5s linear;
}
.gn li:hover p {
    border-bottom: solid 1px #ffffff;
    transition: all 0.5s linear;
}
/* gmenu  no
========================================== */
.gn li.no, .gn li.no:hover {
    opacity: 0.6;
}
.gn li.no p, .gn li.no:hover p {
    border-bottom: solid 4px transparent;
}
.gn li.no a {
    cursor: default;
}
/*コンテンツフェードアニメーション*/
/* 画面外にいる状態 */

.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 2000ms;
    animation-timing-function: ease-in-out;
}
/* 画面内に入った状態 */
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    animation-timing-function: ease-in-out;
}
/* top
========================================== */
.mainw {
    position: relative;
}
.main {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
}
.main img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.main .mainTxt {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 7px 10px 7px 0px;
    font-size: 20px;
    text-indent: 28px;
    line-height: 1.2;
}
.main .mainTxt small{
        text-indent: 28px;
        display:  block;
        font-size: 20px;
}
.main .mainTxt span {
    font-size: 40px;
    color: #fff0a6;
}
span.cap {
    position: absolute;
    bottom: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    padding: 1px 5px;
    font-size: 11px;
}
.actionw {
}
.actionw .action {
}
.actionw .action a {
    padding: 15px 0;
    font-size: 33px;
}
.infow {
    padding-bottom: 70px;
}
.infow .info {
    margin-bottom: 30px;
}
.infow .info dl {
    margin-bottom: 10px;
    padding: 10px 4%;
}
.infow .info dl dt, .infow .info dl dd {
    display: inline-block;
    text-align: left;
}
.infow .info dl dt {
    width: 15%;
    margin-right: 2%;
}
.infow .info dl dd {
    width: 80%;
}
.infow .info dl dd a {
}

.point ul{
}
.point ul li{
    width: 48%;
    margin: 0 0% 10px;
}

.point ul li{
	padding: 15px 0;
}





/* フッター
========================================== */

.fnavw {
}
footer {
    width: 100%;
    padding: 30px 0 10px;
    border-top: solid 1px #cccccc;
}
footer .telw {
}
footer .telw .contact {
    text-align: center;
    margin-bottom: 30px;
}
footer .telw .contact p {
    font-size: 20px;
}
footer .telw .tel {
    width: 96%;
    margin: 0 auto 10px;
}
footer .telw .tel .telnum {
    float: left;
    font-size: 50px;
    color: #000000;
    line-height: 1;
}
footer .telw .tel .telnum a {
    color: #000000;
    text-decoration: none;
}
footer .telw .tel .telnum i {
    font-size: 37px;
    line-height: 33px;
    vertical-align: middle;
    padding-bottom: 0px;
    margin-right: 5px;
    /* color: #3f5f63; */
}
footer .telw .tel .eigyo {
    float: left;
    font-size: 12px;
}
footer .telw .tel .priLogo {
    /* display:none; */
}


footer .privacy {
    text-align: center;
    margin-bottom: 30px;
}
footer .privacy a {
    color: #000000
}
footer .flogow {
    margin-bottom: 30px;
}
footer .flogow .flogo {
    text-align: center;
}
footer .flogow .flogo p {
    margin-bottom: 10px;
}
.copy {
    text-align: center;
    font-size: 11px;
}
.page_top {
}
.page_top .material-icons {
    font-size: 30px;
}
/****
下層ページ共通のテンプレート
*******************************************/
.con {
    /* margin-bottom:80px; */
}
.block {
    max-width: 1000px;
    margin: 0 auto;
    width: 96%;
}
h2 {
    text-align: center;
    padding: 100px 0 20px;
    font-weight: normal;
    letter-spacing: 3px;
    z-index: 49;
    margin-bottom: 40px;
    position: relative;
    min-width: 100%;
    line-height: 1.4;
    font-size: 36px;
    position: relative;
    font-family: 'Cinzel', serif;
}
h2 span {
    font-size: 20px;
    letter-spacing: 3px;
}
h2::after {
    content: "";
    display: block;
    position: absolute;
    width: 6%;
    left: 47%;
    top: 153px;
}
.pan {
    text-align: left;
    font-size: 11px;
    color: #333333;
    padding: 5px 0;
    width: 96%;
    margin: 0 auto;
}
.pan a {
    color: #333333;
}
.tit {
    width: 96%;
    height: auto;
    margin: 0 auto;
    padding: 55px 0;
    text-align: center;
}
.tit p {
    text-align: center;
    display: inline-flex;
    width: auto;
    margin: 0 auto;
    padding: 5px 10px 2px;
    color: #ffffff;
    font-size: 47px;
    letter-spacing: 5px;
    font-weight: normal;
    text-shadow: -2px -2px 1px rgb(0, 0, 0);
}
.tit h2 {
    color: #ffffff;
    font-size: 20px;
}
.titw {
    margin-bottom: 30px;
}
.titw .obi {
    height: 300px;
    background-size: cover;
}
.titw .obi h2 {
    padding-top: 180px;
}
.chuw {
    margin: 20px auto;
}
.chu {
    font-size: 11px;
    /* color: #333333; */
    font-family: "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
    text-align: left;
}
/* コンセプト
========================================== */
@media screen and (max-width: 980px) {
.concept {background-image: url('../images/concept/bg_concept.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;fixed;
}
}

.concept .cap {
    top: 5px;
    right: 10px;
}

.concept .block {
    z-index: 60;
    padding: 20px;
    width: 96%;
}
.concept .block .inner {
    padding: 70px 0 0;
}
.concept h2 {
    color: #ffffff;
}
.concept h2 span {
    color: #ffffff;
}
.concept h2::after {
    border-bottom: solid 1px #142f4a;
}
.concept h3 {
    margin-bottom: 30px;
    font-size: 30px;
}
.concept h3 span {
    display: block;
    font-size: 14px;
}
.concept .txt {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 2px;
    c #ffffff;
    margin-bottom: 30px;
}
.concept .sec01 {
    margin-bottom: 50px;
}
.concept .sec01 h3 {
    font-size: 43px;
    letter-spacing: 10px;
}
.concept .sec01 .cat {
    font-size: 22px;
    letter-spacing: 0px;
}
.concept .sec01 .cat span {
    /* font-size: 40px; */
}
.concept .sec02 {
}

.equBox{
    width: 96%;
    margin:  0 auto;
}
.equBox ul li{
font-size:14px;
}
.concept .sec02 h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: normal;
    letter-spacing: 2px;
}
.concept .sec02 h3 span {
    display: block;
    font-size: 12px;
}
.concept .sec02 .txt {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 2px;
    color: #ffffff;
}


.concept .sec03 table{
}

.concept .sec03 table tr{}
.concept .sec03 table tr th,
.concept .sec03 table tr td{
    padding:5px 10px;
}
.concept .sec03 table tr th{}
.concept .sec03 table tr th .cate{
}
.concept .sec03 table tr td{}
.concept .sec03 table tr td:nth-child(3){
    text-align:right;
}



/* プラン
========================================== */
.plan {
}
.plan .block {
    min-height: 500px;
    /* background-color:#cccccc; */
    margin-bottom: 100px;
}
.plan .tab {
    margin-bottom: 30px;
}
.plan .tab li {
    width: 33%;
    font-size: 14px;
    padding: 14px 0 13px;
    line-height: 24px;
}
.plan .tab li span{
    font-size: 16px;
    /* margin-right:2px; */
}
.plan .tab li::before {
   
}



.plan #unitF02, .plan #unitF03, .plan #unitF04,
.plan #unitF05, .plan #unitF06, .plan #unitF07,
.plan #unitF08 {
    display: none;
}
.plan .planBox {margin-bottom: 40px;}
.plan .planBox .left {
    min-height: auto;
    width: 100%;
}
.plan .planBox .left table.planInfo {
    width: 100%;
}
.plan .planBox .left table.planInfo tr {
}
.plan .planBox .left table.planInfo tr th, .plan .planBox .left table.planInfo tr td {
    margin-bottom: 10px;
    padding: 10px 4%;
}
.plan .planBox .left table.planInfo tr th {
    text-align: center;
    line-height: 1;
    font-size: 18px;
    padding: 10px 2%;
}
.plan .planBox .left table.planInfo tr th span{
    font-size:36px;
    margin-right:3px;
}
.plan .planBox .left table.planInfo tr td {
}
.plan .planBox .left .img {
}
.plan .planBox .left .img img{
    width:100%;
}
.plan .planBox .left .img::before {
}
.plan #unitF01.planBox .left .img::before {
    content: "間取図";
}

/***********階層**********/
.plan .planBox .right {overflow-x: scroll;width: 100%;}
.plan .planBox .right table {
    /* border-spacing: 0px 5px; */
    border-collapse: separate;
    margin-top: 0px;
    width: 100%;
}
.plan .planBox .right table tr {
}
.plan .planBox .right table tr th, .plan .planBox .right table tr td {
    /* padding: 5px 10px; */
    vertical-align: middle;
}
.plan .planBox .right table tr th {
    text-align: center;
    line-height: 1;
}
/***********10F～6F**********/
.plan .planBox .right table.base tr td {
    font-size: 14px;
}
.plan .planBox .right table.base tr td:nth-child(2) {
    /* text-align: center; */
    /* background-color: #cdd3e2; */
    /* border-left: solid 4px #ffffff; */
    /* width: 110px; */
}

.plan .planBox .right table.base tr:nth-child(1) td:nth-child(2) {
padding:5px 10px;
}



.plan .planBox .right table.base tr {
    /* opacity: 0.3; */
    box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.60);
    transition: all 0.3s linear;
}


.plan .planBox .right table.base tr td:nth-child(3) strong {
    /* font-size: 16px; */
    /* font-weight: bold; */
    /* margin-left: 10px; */
    /* margin-right: 3px; */
}
.plan .planBox .right table.base tr td:nth-child(3),
 .plan .planBox .right table.base tr td:nth-child(4) {
    /* font-size: 14px; */
}


/***********1Fオプション用**********/
.plan .planBox .right table.option {
    border-spacing: 0px 0px;
    border-collapse: separate;
    margin-top: 0px;
    width: 100%;
    position: relative;
}
.plan .planBox .right table.option:after {
    content: "";
    position: absolute;
    top: -34px;
    left: 42px;
    margin-left: 0px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 10px 6px 28px 6px;
    border-color: transparent transparent #ad5341 transparent;
    z-index: 0;
    display: block;
}
.plan .planBox .right table.option:before {
    content: "";
    position: absolute;
    background: url(../images/plan/step.png) no-repeat;
    background-size: contain;
    top: -81px;
    left: 38px;
    margin-left: 0px;
    width: 70px;
    height: 70px;
    z-index: 0;
    display: block;
}
.plan .planBox .right table.option tr {
    /* opacity:1; */
}
.plan #unitF01.planBox .right table.option tr {
    opacity: 1;
}
.plan .planBox .right table.option tr th, .plan .planBox .right table.option tr td {
    padding: 10px 0px;
    vertical-align: middle;
}
.plan .planBox .right table.option tr th {
    background-color: #ad5341;
    color: #ffffff;
    text-align: center;
    line-height: 1;
    /* border: solid 1px #b5b5b5; */
    font-size: 14px;
    width: 290px;
}
.plan .planBox .right table.option tr td {
    background-color: #ffffff;
    color: #b91f00;
    text-align: center;
    line-height: 1;
    /* border: solid 1px #b5b5b5; */
    font-size: 15px;
    font-weight: bold;
}



span.flick {
    display: none;
    font-size: 12px;
    text-align: center;
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    /* display: block !important; */
    color: #142f4a;
}
span.flick i {
    display: block;
    margin-bottom: 5px;
    color: #142f4a;
    position: absolute;
    left: 50%;
    margin-left: -6px;
    font-size: 36px !important;
    top: -38px;
}
span.flick i {
    animation: flickIco 2s infinite alternate linear;
    -ms-animation: flickIco 2s infinite alternate linear;
    -webkit-animation: flickIco 2s infinite alternate linear;
    -moz-animation: flickIco 2s infinite alternate linear;
}
@keyframes flickIco {
    0% {
        left:60%;
    }
    100% {
        left:40%;
    }
}


/* スペック
========================================== */
.spec {
}
.spec .block {
    min-height: 780px;
    /* margin-bottom:100px; */
}
.specBox li {
    float: left;
    position: relative;
    width: 32%;
    height: 140px;
    overflow: hidden;
    margin-right: 2%;
    margin-bottom: 20px;
}
.specBox li:nth-child(3n) {
    margin-right: 0;
}
.spec .photo-list01 li {
}
.spec .photo-list01 li a {
}
.spec .photo-list01 li a::before {
    content: "＋";
    display: block;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.59);
    bottom: 0px;
    right: 0px;
    z-index: 5;
    font-size: 16px;
    color: #ffffff;
    padding: 0px 5px;
    font-weight: bold;
}
.photo-list01 li a {
    display: block;
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
}
.photo-list01 li a .hover_box_bg {
    background: rgba(40,22,4,0.7);
    height: 100%;
    opacity: 0;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
    -webkit-transition: opacity .8s ease-in-out;
    -moz-transition: opacity .8s ease-in-out;
    transition: opacity .8s ease-in-out;
}
.photo-list01 li a .hover_box {
    box-sizing: border-box;
    color: #fff;
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    font-weight: normal;
    line-height: 1.4;
    opacity: 0;
    padding: 20px;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    height: 100%;
    width: 100%;
    vertical-align: middle;
    z-index: 10;
    -webkit-transition: opacity .8s ease-in-out;
    -moz-transition: opacity .8s ease-in-out;
    transition: opacity .8s ease-in-out;
}
.photo-list01 li a .hover_box .text01 {
    font-size: 24px;
    margin: 0 0 10px;
}
.photo-list01 li a .hover_box .text02 {
    font-size: 16px;
    margin: 0;
    line-height: 1.8;
}
.photo-list01 li img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* hover-animation */
@media screen and (min-width: 641px) {
    .photo-list01 li a:hover {
        opacity: 1;
    }
    .photo-list01 li a:hover .hover_box_bg,  .photo-list01 li a:hover .hover_box {
        opacity: 1;
        -webkit-transition: opacity .8s ease-in-out;
        -moz-transition: opacity .8s ease-in-out;
        transition: opacity .8s ease-in-out;
    }
}
.photo-list01 + .anchor-list01 {
    margin-top: 80px;
}
.spec .tab {
    margin-bottom: 20px;
}
.spec .tab li {
    font-size: 14px;
    text-align: center;
    padding: 14px 0 10px;
    height: auto;
}
.spec .tab li::before {
    left: 20px;
}


.spec .tab li:nth-child(4)  a{
    padding: 14px 0 10px;
    height: auto;
}
.spec .tab li:nth-child(3) a{
    display:block;
    color: #ffffff;
    text-decoration:none;
    padding: 14px 0 10px;
    /* height: 24px; */
}



.spec .specBox {
    margin-bottom: 40px;
}
.specBox .secBox li {
    float: left;
    position: relative;
    width: 32%;
    height: auto;
    overflow: initial;
    margin-right: 2%;
    margin-bottom: 20px;
}
.specBox .secBox li:nth-child(3n) {
    margin-right: 0;
}
.secBox li h4 {
    margin-bottom: 5px;
    border-left: solid 3px #000000;
    text-indent: 7px;
}
.secBox li .img {
    background-color: #cccccc;
    height: auto;
    text-align: center;
    padding: 100px 0;
    margin-bottom: 10px;
}
.secBox li .img img {
    width: 100%;
}
.spec #unitG02, .spec #unitG03, .spec #unitG04 {
    display: none;
}

.spec #unitG04 .panoBox{
    width:100%;
    /* height: 300px; */
    }



/* アクセス
========================================== */

.access {
}
.access .block {
    /* min-height:500px; */
    /* background-color:#cccccc; */
    margin-bottom: 100px;
}
.access .accessInfo {
}
.access .accessInfo li {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 30px;
    position: relative;
}
.access .accessInfo li:nth-child(even) {
    margin-right: 0;
}
.access .accessInfo li::after {
    top: 25px;
}
.access .accessInfo li .name {
    font-size: 16px;
    float: left;
    padding-right: 20px;
}
.access .accessInfo li .name span {
    font-size: 30px;
}
.access .accessInfo li .dist {
    font-size: 16px;
    padding-left: 20px;
}
.access .accessInfo li .dist span {
    font-size: 32px;
    margin-left: 5px;
}
.access .accessInfo li .txt {
    margin-left: 17px;
}


.access .accessInfo.bus li{
    font-size: 14px;
}

/* 地図
========================================== */

.map {
}
.map .block {
    min-height: 500px;
    /* background-color:#cccccc; */
    margin-bottom: 50px;
}
.map .img iframe{
    width:100%;
}
.map img {
    width:100%;
}

.map .mapTxt {
    font-size: 20px;
    letter-spacing: 0px;
    padding: 10px 0 15px;
}
.map .mapTxt span {
    font-size: 30px;
}
.pribtnw {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.pribtnw p {
    float: none;
    width: 32%;
    margin: 30px auto;
}
.pribtnw .pri {
}
.pribtnw .clo {
    margin-right: 0px;
}
.pribtnw .pri a {
    padding: 10px 0;
    font-size: 16px;
}
.pribtnw .clo a {
    display: block;
    text-decoration: none;
    text-align: center;
    background-color: #f5f5f5;
    color: #132a88;
    padding: 10px 0;
    border: solid 1px #132a88;
    border-radius: 50px;
    font-size: 16px;
}
.pribtnw .pri a:hover, .pribtnw .clo a:hover {
    opacity: 0.6;
}
.pribtnw .pri a i, .pribtnw .clo a i {
    display: block;
}
/****
物件概要
*******************************************/
.outline {
}
.outline .block {
    min-height: 500px;
    /* background-color:#cccccc; */
    margin-bottom: 100px;
}
.outline .ttl_out {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333333;
}
.outline table {
    border: solid 1px #ffffff;
    margin-bottom: 10px;
    width: 100%;
}
.outline table th, .outline table td {
    vertical-align: middle;
    padding: 3px 0 3px 20px;
    font-size: 13px;
}
.outline table th {
    width: 20%;
    height: 36px;
}
.outline table td {
    width: 70%;
    height: 36px;
}
.contactBtn {
    background: url(../images/common/bg_contactBtn.jpg) bottom center no-repeat;
    background-size: cover;
    padding: 140px 0;
    position: relative;
}
.contactBtn a {
    width: 480px;
    margin: 0 auto;
    display: block;
    text-align: center;
    padding: 30px 0 40px;
    color: #ffffff;
    font-size: 30px;
    text-decoration: none;
    line-height: 1;
    font-family: 'Cinzel', serif;
}
.contactBtn a:hover {
    background-color: rgba(0, 0, 0, 0.6);
    border: solid 1px #000000;
    color: #ffffff;
    opacity: 1;
}
.contactBtn a i {
    margin-bottom: 15px;
}
.contactBtn a span {
    font-size: 20px;
    /* color: #232323; */
    letter-spacing: 3px;
}

/*============================
_print
============================*/
@media print {
    .detail .hdw_sp, .detail .hdw, .detail .titimg, .detail .fbtn, .detail .pribtnw, .detail .fnavw, .detail .ftw {
        display: none !important;
    }
    .map .con {
        padding: 0;
    }
    .map .carnavi {
        margin: 0;
    }
    .map .hdw_sp, .map .hdw, .map .titw, .map .panw, .map .fbtn, .map .pribtnw, .map .fnavw, .map .ftw, .map .copy, .map .page_top {
        display: none !important;
    }
}

@media screen and (max-width: 765px) {
    .pcOnly {
        display: none !important;
    }
    .spOnly {
        display: block !important;
    }
}
