/*/////////////////////cmn/////////////////////*/
#contents {
/*    background: #000;*/
    margin-bottom: 60px;
    width: 100%;
    overflow: hidden;
    line-height: 1.5;
}
#contents ol, #contents ul {
    list-style: none;
}

#contents section {
    background: transparent;
    padding: 0;
    position: relative;
}
#contents a{
    text-decoration: none;
    border-bottom: dotted 1px;
    padding-left: .2em;
}

.innerBox{
    width: 94%;
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 1;
}
.inb {
    display: inline-block;
}
.relative {
    position: relative;
}

figure {
    position: relative;
}
figure:after {
    position: absolute;
    display: block;
    content:'';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
figure.roundPhoto img {
    border-radius: 10px;
    overflow: hidden;
}


.flexBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}
.flexBox.flexWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flexBox.flexCenter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gridBox {
    display: grid;
}

.decoBox {
    position: absolute;
}


body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

section {position: relative;}
a {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    color: inherit;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline:none;
}
img {
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
    vertical-align: top
}
p {
    font-size: 1.2rem;
    margin: 0 0 .8em;
}
p:last-child,
p:last-of-type {
    margin-bottom: 0;
}


/* ////////// mobile ////////// */
@media screen and (max-width: 749px) {
    .innerBox {
        padding: 30px 0;
        width: 92%;
    }
}

/* ////////// PC ////////// */
@media print,
    screen and (min-width: 750px) {
        #contents {
            min-height: 100vh;
        }
        .innerBox {
            padding: 30px 0;
        }
}

/* ////////// tablet ////////// */
@media screen and (min-width:750px) and (max-width:959px) {
    .innerBox {
        padding: 80px 0;
    }
}

@media screen and (min-width:1200px) {
    #contents {
        min-height: calc(100vh - 495px);
    }
}

/*====================================================
//NOTE メインパーツ
====================================================*/
#contents .linkBtn {
    color: #fff;
    background: #b1963d;
    background: linear-gradient( -20deg, #b1963d 35%, #231f15 50%, #b1963d 65%);
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.4rem;
    display: block;
    width: 100%;
    max-width: 300px;
    line-height: 1.4;
    padding: 2px;
    margin: 1em auto;
    -webkit-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    position: relative;
    z-index: 1;
}
.linkBtn:before ,
.linkBtn:after {
    position: absolute;
    content: '';
    width: 30px;
    height: calc(100% - 20px);
    background: url(../img/common/btn-deco.png) no-repeat center/contain;
    top: 0;
    bottom: 0;
    margin: auto;
}
.linkBtn:before  {
    left: 5px;
}
.linkBtn:after  {
    right: 5px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.btn-inner  {
    background: #000;
    background: -webkit-gradient(linear, left top, right bottom, from(#2e2e2e), to(#000));
    background: linear-gradient(to bottom right, #2e2e2e, #000);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 70px;
    -webkit-transition: .2s all;
    transition: .2s all;
}
.linkBtn:hover {
    color: #fff;
}
.linkBtn:hover .btn-inner {
    color: #fff;
    background: -webkit-gradient(linear, left top, right bottom, from(#505050), to(#000));
    background: linear-gradient(to bottom right, #505050, #000);
}

.colorBtn {
    background: #fe9900;
    color: #fff;
    border-color: #fe9900;
}
.linkIcon {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    display: block;
    border: solid;
    border-color: #888;
    border-width: 0 1px 1px 0 ;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: center;
    transform-origin: right;
    top: 0;
    bottom: 0;
    right: 12%;
    margin: auto;
}
.linkBtn .linkIcon {
    -webkit-transition: none;
    transition: none;
}
a.uLine {
    border-bottom: dotted 1px;
    border-color: #888;
    line-height: 1.2;
}
.mw700 {
    max-width: 700px;
    margin: auto;
}
.mw960 {
    max-width: 960px;
    margin: auto;
}
.w100 {
    width: 100%;
}
label {
    cursor: pointer;
}

/* ////////// mobile ////////// */
@media screen and (max-width: 749px) {
    .btn-inner {
        padding-right: 20px;
    }
}

@media screen and (max-width: 480px) {
    .linkBtn {
        font-size: 5.5vw;
        letter-spacing: .15em;
    }
    .linkIcon {
        width: 12px;
        height: 12px;
    }
}


/* ////////// PC ////////// */
@media print,
    screen and (min-width: 750px) {
        a:hover {
            color: #fe9900;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }
        a:hover .linkIcon:before, .linkBtn:hover .linkIcon:before {
        }
        .linkBtn:hover .linkIcon {
        }
        a.uLine:hover {
            border-color: #fe9900;
        }
}

/* ////////// tablet ////////// */
@media screen and (min-width:750px) and (max-width:959px) {
}


/*====================================================
////note テキスト
====================================================*/

h3 {
    margin-bottom: .8em;
}
h4 {
    font-size: 2.6rem;
    margin-bottom: .8em;
}
.small {
    font-size: .8em;
}
.big {
    font-size: 1.3em;
}
strong {
    font-weight: bold;
}
sup {
    font-size: .5em;
    vertical-align: .5em;
}
.fuchi3 {
    text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff, 0 0 3px #fff;
}
.fuchi5 {
    text-shadow: 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff, 0 0 5px #fff;
}

.fw-bold {
    font-weight: bold;
}
.fw-normal {
    font-weight: normal;
}
.yellow {
    color: #e1be4b;
}
.txt-left {
    text-align: left;
}
.txt-right {
    text-align: right;
}
.txt-center {
    text-align: center;
}
.copy, .closeCopy {
    font-size: 1.6rem;
}


/*====================================================
////id header
====================================================*/

/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    header .head {
        width: 100%;
        max-width: 1200px;
    }
    header .head-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    header ul.hlink {
        margin: 0 0 0 auto;
    }
    header .logo_r {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        width: auto;
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id #title
====================================================*/
#contents #title {
    background: url(../img/title-bg.jpg) no-repeat center / cover;
    margin-bottom: 40px;
}
#title:before {
    background: rgba(0, 0, 0, .6);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
#title .innerBox {
    max-width: 1280px;
    padding: 80px 0;
}
.square {
    background: #e1be4b;
    color: #000;
    font-weight: bold;
    line-height: 1.3;
    padding: .2em .6em;
}
#title .square {
    font-size: 1.5rem;
    margin-bottom: .5em;
}
#title p {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}
#title h1 {
    font-size: 3rem;
    line-height: 1.4;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #title .square {
        font-size: 1.3rem;
        margin-bottom: 1em;
    }
    #title p {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    #title h1 {
        font-size: 2.4rem;
    }
}

@media screen and (max-width:480px) {
    #title h1 {
        font-size: 7.5vw;
    }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id #about
====================================================*/
#about .itemBox {
    grid-gap: 30px;
    margin: 40px 0;
}
#about .item {
    background: rgba(255,255,255,.2);
    border: solid 2px;
    border-color: #b1963d;
/*    color: #000;*/
    font-weight: bold;
    padding: 2em 1em .5em;
    position: relative;
}
#about .noBox {
    position: absolute;
    width: 3em;
    height: 3em;
    border-radius: 100%;
    background: #b1963d;
    left: 0;
    right: 0;
    top: -1.5em;
    margin: auto;
}
#about .noBox .no {
    font-size: 2em
}
#about .item-detail {
    grid-template-columns: 1fr 7em;
}
#about .item dt {
    border-bottom: dotted 1px #b1963d;
    font-size: 1.2rem;
    line-height: 1.3;
    padding-bottom: .5em;
    margin-bottom: .5em;
}
#about .item-detail .lot {
    text-align: right;
}
#about .item .squareMark {
    background: #b1963d;
    margin-right: 1em;
    padding: .2em .5em;
}
#about .subBox {
    background: rgba(255,255,255,.2);
    border: solid 2px #fff;
    text-align: center;
    padding: 1.5em 1em;
    margin: 40px 0;
}
#about .subBox h3 {
    color: #e1be4b;
    font-size: 1.5rem;
/*    margin-bottom: 0;*/
}
#about .subBox dl {
    border-top: dotted 1px #888;
    margin-top: 1em;
    padding-top: 1em;
}
#about .subBox dt {
    color: #e1be4b;
    font-size: 1.3rem;
    font-weight: bold;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #about .subBox .txtBox p.small {
        display: inline-block;
        text-align: left;
    }
    #about .subBox .txtBox p.small br {
        display: none;
    }
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    #about .itemBox {
        grid-template-columns: 1fr 1fr;
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id #detail
====================================================*/
.balloon {
    border-bottom: solid 2px #b1963d;
    display: inline-block;
    line-height: 1.3;
    margin-bottom: 1em;
    padding: .5em 1em;
    position: relative;
}
.balloon:before {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: solid transparent;
    border-width: 1em .5em 0;
    border-top-color: #b1963d;
    bottom: -1em;
    left: 10%;
}
#detail .balloon {
    font-size: 1.5rem; 
}
#detail h2 {
    margin: .5em auto 1em;
    text-align: center;
    font-size: 1.7rem;
    line-height: 1.4;
}
#detail .itemBox dl {
    line-height: 1.5;
    font-size: 1.2rem;
}
#detail .itemBox dt .square {
/*    background: #b1963d;*/
    display: block;
    font-weight: bold;
    text-align: center;
}
#detail .txtBox {
    border: solid #888;
    border-width: 1px 0;
    margin-top: 30px;
    padding: 30px 0;
    text-align: center;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
    #detail .balloon {
        font-size: 1.3rem;
    }
    #detail .itemBox dl {
        grid-gap: 10px;
    }
    #detail .itemBox dt {
        width: 9em;
        margin-top: 1em;
    }
    #detail .itemBox dd {
        margin-left: 1em;
    }
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
    #detail .itemBox dl {
        grid-template-columns: 9em 1fr;
        grid-gap: 15px 20px;
        font-size: 1.2rem;
    }
    #detail .itemBox .linkBtn {
        margin-left: 0;
    }
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}

/*====================================================
////id #inquiry
====================================================*/
#inquiry dl {
    margin-top: 30px;
}
#inquiry dt {
    font-size: 1.5rem;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 768px) {
}

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

/* ////////// PC ////////// */
@media print, screen and (min-width: 769px) {
}

/* ////////// tablet ////////// */
@media screen and (min-width:769px) and (max-width:959px) {
}

@media screen and (min-width:1200px) {
}
