@charset "UTF-8";

/* FlexBoxクラス
------------------------------------------*/
.FlexBox {
    padding: 2%;
    box-sizing: border-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.FB-ConceptArea {
    width: 100%;
    height: 80vh;
    background: #151515;
    flex-direction: column;
    align-items: center; /*垂直方向*/
    justify-content: flex-start; /*水平方向*/
    text-align: left;
    position: relative;
}
.FB-ConceptArea.concept-1{
    background-image: url("../images/concept1.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-start;
}
.FB-ConceptArea.concept-2{
    background-image: url("../images/concept2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-end;
}
.FB-ConceptArea.concept-3{
    background-image: url("../images/concept3.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: flex-end;
}

.FB-ConceptArea:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    /*background-image: url("../images/pattern.png");*/
    background-position: center center;
    background-repeat: repeat;
    /*background-color: rgba(0, 0, 0, 0.5);*/
}
.FB-ConceptText {
    z-index: 200;
    width:100%;
    max-width: 1280px;
    color: #fff;
}

.FB-ConceptArea h1{
    font-family: Volvo Broad Small, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Noto Sans JP, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic Pro, "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
    font-size: 60px;font-size: 6.0rem;
    color: #fff;
}
.FB-ConceptArea.concept-1 h1,
.FB-ConceptArea.concept-1 p{
    text-align: left;
    color: #191919;
}
.FB-ConceptArea.concept-2 h1,
.FB-ConceptArea.concept-2 p{
    text-align: left;
}
.FB-ConceptArea.concept-3 h1,
.FB-ConceptArea.concept-3 p{
    text-align: left;
}

.FB-ConceptArea h2{
    font-size: 40px;font-size: 4.0rem;
    color: #fff;
}
.FB-ConceptArea .concept span{
    font-size: 18px;font-size: 1.8rem;
    padding: 10px 20px;
    color:#ffffff;
    border: 1px solid #fff;
}

.FB-ClmBox {
    padding: 0;
    width: 100%;
    height: auto;
    flex-direction: row;
    align-items: center; /*垂直方向*/
    justify-content: center; /*水平方向*/
}
.FB-ClmBox.FB-RowRe {
    flex-direction:row-reverse;
}
.FB-ClmBox .clm-2 {
    width: 50%;
    padding: 0 2%;
    margin-bottom: 1em;
    box-sizing: border-box;
}

.FB-ClmBox .FlexItem {
    padding: 0 2%;
    margin: 0 0 2% 0;
    box-sizing: border-box;
}
.FB-ClmBox .FlexItem.FB-clm50 {
    flex: 1 1 50%;
}
.FB-ClmBox .FlexItem.FB-alignTOP {
    align-self: flex-start;
}

.FB-Model {
    position: relative;
    width: 100%;
    height: 100%;
    margin-bottom: 50px;
}
.FB-Model::after {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    display: block;
    content: "";
    width: 58%;
    height: 85%;
    background: #e3e3e3;
    background: #fff;
}
.FB-Model .FlexItem-mdl{
    width: 80%;
    z-index: 1;
}
.FB-Model .FlexItem-mdl-txt{
    padding: 2% 4% 0 0;
    z-index: 1;
}

.FB-detail {
    width: 100%;
    padding: 0 4% 4%;
    height: auto;
    box-sizing: border-box;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
}
.FB-item-detail {
    width: 33.333333%;
    width: calc(100% / 3);
    padding: 0 10px 10px;
    border-left: 1px solid #ddd;
    box-sizing: border-box;
}
.FB-item-detail:first-child {
    border-left: none;
}
.FB-item-detail h3,
.FB-item-detail p {
    line-height: 1.8;
}
.FB-item-detail h3{
    font-size: 18px;font-size: 1.8rem;
    margin-bottom: 0;
}
.FB-item-detail p{
    font-size: 14px;font-size: 1.4rem;
} 
    
/* Gridクラス
------------------------------------------*/
.thum-gridblock {
    width: 100%;
    height: 100%;
    min-height: 250px;
    margin: 40px auto 0;
    background: #000;
    display: grid;
    grid-gap: 1px;
    grid-template-rows: 1.2fr 0.8fr;
    grid-template-columns: 0.8fr 1.2fr;
}
.thum-item {
    color: #ffffff;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    overflow-wrap: break-word;
}
.thum-item:nth-child(1) {
    grid-column: 1 / 1;
    grid-row: 1 /span 2;
}
.thum-item img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
    margin: 0 auto;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
}






/* firstview btm */
.fv-telcontent {
    line-height: 0.8;
    padding: 2% 0;
    font-size: 20px;
    font-size: 2.0rem;
}
.fv-telcontent p span {
    font-size: 90%;
}

.fv-tel-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv-tel-inner{
    max-width: 100%;
    box-sizing: border-box;
    margin-right: 5%;
}

.fv-tel-inner:last-child{
    margin-right: 0;
}

.fv-tel-h3{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
    margin: 5% 0;
    line-height: 1.25;
}
.fv-tel-h3 .summary-span{
    font-size: 14px;
    font-size: 1.4rem;
}


/* telcontent */

address{
    margin: 20px 0;
}

.telw {
    color: #fff;
    text-decoration: none;
    font-style: normal;
    font-size: 36px;
    font-size: 3.6rem;
}

.telb {
    text-decoration: none;
    font-style: normal;
    font-size: 36px;
    font-size: 3.6rem;
}


.telcontent {
    line-height: 0.8;
    padding: 2% 0;
}
.telcontent p {
    font-size: 24px;
    font-size: 2.4rem;
}

.tel-flex {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tel-inner{
    max-width: 100%;
    box-sizing: border-box;
    margin-right: 5%;
}

.tel-inner:last-child{
    margin-right: 0;
}

.tel-h3{
    margin: 5% 0;
}


/* caution */

.caution {
    font-size: 10px;
    font-size: 1.0rem;
    line-height: 1.5;
}

/* summary-dl */

.summary-h3 {
    margin: 2% 0;
}


.summary-dl {
    line-height: 2.0;
    margin: 2% 0 5% 0;
}

.summary-dt {
    max-width: 150px;
    float: left;
}

.summary-dd {
    padding-left: 150px;
    margin-bottom: 2%;
}

.desc-ul{
}
.desc-ul li {
    margin-bottom: 2%;
}



/* skygroup */

.snsbnr {
    margin: 30px 0 40px;
}

.sky-content {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    box-sizing: border-box;
    margin-bottom: 3%;
}

.sky-inner {
    margin-right: 2%;
}

.sky-inner:last-child {
    margin-right: 0;
}

.sky-img {
    max-width: 50%;
    box-sizing: border-box;
    text-align: right;
}

.sky-text {
    max-width: 50%;
    box-sizing: border-box;
    margin: 0 2%;
}

.sky-text p {
    line-height: 1.8;
}


/* 個別クラス
------------------------------------------*/
.caution{
    font-size: 11px;font-size: 1.1rem;
    line-height: 1.5;
    color: #666666;
}
.tokutenBox {
    padding: 0% 8% 4%;
    border: 18px solid #2b7bcd;
    border: 20px solid #2a2a2a;
    box-sizing: border-box;
}

.dl_summary {
    font-size: 20px;font-size: 2.0rem;
    line-height: 1.8;
}
.dl_summary dt{
    display: block;
    float: left;
    text-align: right;
    width: 40%;
    clear: both;
    font-weight: bold;
}
.dl_summary dd{
    display: block;
    padding-left: 40%;
    margin-bottom: 15px;
}

.descBox{
    margin: 2% 0 4%;
    padding: 0 4%;
    border: 1px solid #d5d5d5;
    background: #f5f5f5;
    max-height: 300px;
    overflow-y: scroll;
}
.descBox ul{
    margin: 0 1em 2em 2em;
}
.descBox ul li{
    font-size: 14px;font-size: 1.4rem;
    line-height: 1.6;
    list-style:square;
    margin-bottom: 1em;
}

.dtlTbl{width:100%;margin-bottom: 2em;}
.dtlTbl tr{
    border-bottom: 1px solid #ddd;
}
.dtlTbl tr th,
.dtlTbl tr td {
    padding: 5px;
}
.dtlTbl tr th{text-align:left;font-weight: normal;}
.dtlTbl tr td{text-align:right;}


.MapiInfoTable {
    margin: 0 0 30px;
    text-align: left;
    border-collapse: collapse;
}
.MapiInfoTable {
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    width: 100%;
}
.MapiInfoTable th {
    text-align: left;
    width: 130px;
    background: #f7f7f7 none repeat scroll 0 0;
    font-weight: normal;
}
.MapiInfoTable th, .MapiInfoTable td {
    border-bottom: 1px solid #ccc;
    border-left: 1px solid #ccc;
    padding: 9px;
}

address.telNum{
    text-align: center;
    font-size: 36px;font-size: 3.6rem;
    line-height: 0.65;
    margin-bottom: 3%;
}
address.telNum span{
    font-size: 16px;font-size: 1.6rem;
}

.w-img-display{
    width:70rem;
    margin: 20px auto;
}
.w-img-display.aboutsky{
    width:30rem;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.youtube iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    float: none;
}
.ggmap {
    position: relative;
    padding-bottom: 56.25%;
    margin: 10px 0;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
} 
.ggmap iframe,
.ggmap object,
.ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


