@charset "utf-8";
/* CSS Document */

/*=================================================================================*/
/*アニメーション系モジュール*/
/*=================================================================================*/
.scl.scl-slideup {
    opacity: 0;
}
.scl.scl-slideup.show {
    opacity: 1;
    animation: view-slideup 2s cubic-bezier(0.08, 1, 0.08, 1);
}
@keyframes view-slideup {
    0% {
        opacity: 0;
        transform: translate(0,50px);
    }
    100% {
        opacity: 1;
        transform: translate(0,0);
    }
}

.scl.scl-zoomin {
    opacity: 0;
}
.scl.scl-zoomin.show {
    opacity: 1;
    animation: view-zoomin 2s cubic-bezier(0.08, 1, 0.08, 1);
}
@keyframes view-zoomin {
    0% {
        opacity: 0;
        transform: scale(.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}


/*=================================================================================*/
/* 共通
/*=================================================================================*/
#areaTemp {
    counter-reset: number 0;
}

#areaTemp .pc { display: block; }
#areaTemp .sp { display: none; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaTemp .pc { display: none; }
    #areaTemp .sp { display: block; }
}
#areaPage .pc { display: block; }
#areaPage .sp { display: none; }
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaPage .pc { display: none; }
    #areaPage .sp { display: block; }
}

/*=================================================================================*/
/* ヘッダー・ビジュアル
/*=================================================================================*/
#areaHeader {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: #f8f6f3;
    position: relative;
    z-index: 0;
}
#areaHeader::before {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
	background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #03142f 50%) no-repeat top left/100% 100%;
}
#areaHeader > span {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 130px;
    line-height: 1;
    font-style: italic;
    color: rgba(255,255,255,0.3);
    transform: translate(0,0) rotate(-90deg);
    -webkit-transform: translate(0,0) rotate(-90deg);
    transform-origin: left center;
    position: absolute;
    bottom: 0;
    left: 7%;
    z-index: -1;
}
#areaHeader > span::first-letter {
    font-size: 180px;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaHeader {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        background: #f8f6f3;
        position: relative;
        z-index: 0;
    }
    #areaHeader::before {
        content: '';
        display: block;
        width: 50%;
        height: 100%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
		background: linear-gradient(to top left, rgba(255,255,255,0) 50%, #03142f 50%) no-repeat top left/100% 100%;
    }
    #areaHeader > span {
        display: inline-block;
        font-family: 'Cinzel', serif;
        font-size: 30px;
        line-height: 1;
        font-style: italic;
        color: rgba(255,255,255,0.3);
        transform: translate(0,0) rotate(-90deg);
        -webkit-transform: translate(0,0) rotate(-90deg);
        transform-origin: left center;
        position: absolute;
        top: 10px;
        left: 7%;
        z-index: -1;
    }
    #areaHeader > span::first-letter {
        font-size: 50px;
    }
}

/*見出し*/
#areaHeader > h2 {
    width: 100%;
    max-width: 1100px;
    padding: 20px 0;
    margin: 0 auto;
    text-align: right;
    font-size: 15px;
    line-height: 1;
    font-weight: bold;
    color: #000;
    border: none;
    background: none;
}
/*ビジュアル*/
#areaHeader > .areaVisual {
    width: 90%;
    padding: 0;
    margin: 0 0 0 auto;
    position: relative;
}
/*ロゴ*/
#areaHeader > .areaVisual .areaLogo {
    width: 40%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 2;
}
#areaHeader > .areaVisual .areaLogo img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
#areaHeader > .areaVisual .areaLogo em {
	display: block;
	font-family: 'Roboto Slab', serif;
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
	font-style: normal;
	text-align: center;
	white-space: nowrap;
}
#areaHeader > .areaVisual .areaLogo h2 {
	text-align: center;
	font-size: 20px;
	line-height: 1;
	font-weight: bold;
	color: #fff;
	white-space: nowrap;
}
/*キャッチコピー*/
#areaHeader > .areaVisual h3 {
    width: 100%;
    padding: 0;
    margin: 0;
    font-size: 50px;
    line-height: 1em;
	color: #03142f;
    font-weight: bold;
    font-style: italic;
    position: absolute;
    bottom: 20%;
    left: -50px;
    z-index: 2;
}
#areaHeader > .areaVisual h3 span {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 0 20px;
    background: #fff;
}
/*写真*/
#areaHeader > .areaVisual figure {
    width: 100%;
    max-height: 700px;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
#areaHeader > .areaVisual figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*マーク*/
#areaHeader > .areaVisual > span {
    width: 150px;
    padding: 0;
    margin: 0;
    position: absolute;
    bottom: -75px;
    right: 50px;
}
#areaHeader > .areaVisual > span img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
/*概要*/
#areaHeader > p {
    width: 90%;
    padding: 20px 0;
    margin: 0 0 0 auto;
    font-weight: bold;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*見出し*/
    #areaHeader > h2 {
        width: 100%;
        max-width: 100%;
        padding: 10px 10px;
        margin: 0 auto;
        text-align: right;
        font-size: 10px;
        line-height: 1;
        font-weight: lighter;
        color: #000;
        border: none;
        background: none;
    }
    /*ビジュアル*/
    #areaHeader > .areaVisual {
        width: 90%;
        padding: 0;
        margin: 0 0 0 auto;
        position: relative;
    }
    /*ロゴ*/
    #areaHeader > .areaVisual .areaLogo {
        width: 30%;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 10px;
        right: 10px;
        z-index: 2;
    }
    #areaHeader > .areaVisual .areaLogo img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
	#areaHeader > .areaVisual .areaLogo em {
		font-size: 10px;
	}
	#areaHeader > .areaVisual .areaLogo h2 {
		font-size: 10px;
	}
    /*キャッチコピー*/
    #areaHeader > .areaVisual h3 {
        width: 100%;
        padding: 0;
        margin: 0;
        font-size: 20px;
        line-height: 1em;
        font-weight: bold;
        font-style: italic;
        position: absolute;
        bottom: 20%;
        left: -20px;
        z-index: 2;
    }
    #areaHeader > .areaVisual h3 span {
        display: inline-block;
        padding: 5px 10px;
        margin: 0 0 10px;
        background: #fff;
    }
    /*写真*/
    #areaHeader > .areaVisual figure {
        width: 100%;
        max-height: 400px;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }
    #areaHeader > .areaVisual figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    /*マーク*/
    #areaHeader > .areaVisual > span {
        width: 50px;
        padding: 0;
        margin: 0;
        position: absolute;
        bottom: -10px;
        right: 10px;
    }
    #areaHeader > .areaVisual > span img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    /*概要*/
    #areaHeader > p {
        width: 90%;
        padding: 10px 0;
        margin: 0 0 0 auto;
        font-weight: lighter;
        font-size: 10px;
    }
}

/*=================================================================================*/
/* 目次
/*=================================================================================*/
#areaTOC {
    width: 100%;
    padding: 0;
    margin: 0 auto 100px;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    background: #fff;
}
#areaTOC > figure {
    width: 55%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
#areaTOC > figure:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
#areaTOC > figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: 0.5s;
}
#areaTOC > .areaTOCList {
    width: 35%;
    padding: 50px 50px 50px 0;
    margin: 0;
}
#areaTOC > .areaTOCList > h2 {
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    padding: 0;
    margin: 0 auto 20px;
}
#areaTOC > .areaTOCList ol {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
#areaTOC > .areaTOCList ol > li {
    font-size: 15px;
    line-height: 1.4em;
    padding: 0;
    margin: 0 0 15px;
}
#areaTOC > .areaTOCList ol > li::before {
    counter-increment: number 1;
    content: counter(number) " ";
    display: inline-block;
    padding: 3px 5px;
    margin: 0 10px 0 0;
    background: #f2f2f2;
    font-size: 15px;
    line-height: 1;
    color: #555;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaTOC {
        width: 100%;
        padding: 0;
        margin: 0 auto 30px;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        background: #fff;
    }
    #areaTOC > figure {
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    #areaTOC > figure:before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    #areaTOC > figure img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: 0.5s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        transition: 0.5s;
    }
    #areaTOC > .areaTOCList {
        width: 100%;
        padding: 20px;
        margin: 0;
    }
    #areaTOC > .areaTOCList > h2 {
        font-size: 20px;
        line-height: 1;
        font-weight: bold;
        padding: 0;
        margin: 0 auto 10px;
    }
    #areaTOC > .areaTOCList ol {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #areaTOC > .areaTOCList ol > li {
        font-size: 14px;
        line-height: 1.4em;
        padding: 0;
        margin: 0 0 10px;
    }
    #areaTOC > .areaTOCList ol > li::before {
        counter-increment: number 1;
        content: counter(number) " ";
        display: inline-block;
        padding: 3px 5px;
        margin: 0 10px 0 0;
        background: #f2f2f2;
        font-size: 14px;
        line-height: 1;
        color: #555;
    }
}

/*=================================================================================*/
/* ガレージで暮らしを楽しむ
/*=================================================================================*/
#areaJoy {
    width: 100%;
    padding: 80px 0;
    margin: 0 auto;
    background: #fff;
}
#areaJoy > h2 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
    font-size: 35px;
    line-height: 1;
    font-weight: bold;
    color: #03142f;
    text-align: center;
    position: relative;
}
#areaJoy > h2 > span {
    display: block;
    font-size: 0.5em;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
}
#areaJoy > h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    padding: 0;
    margin: 0;
    background: #aaa;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translate(-50%,0) rotate(10deg);
    -webkit-transform: translate(-50%,0) rotate(10deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaJoy {
        width: 100%;
        padding: 40px 0 0;
        margin: 0 auto;
        background: #fff;
    }
    #areaJoy > h2 {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 50px;
        font-size: 20px;
        line-height: 1;
        font-weight: bold;
        color: #03142f;
        text-align: center;
        position: relative;
    }
    #areaJoy > h2 > span {
        display: block;
        font-size: 0.5em;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
    #areaJoy > h2::after {
        content: '';
        display: block;
        width: 1px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: #aaa;
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translate(-50%,0) rotate(10deg);
        -webkit-transform: translate(-50%,0) rotate(10deg);
    }
}

/*リスト*/
#areaJoy > .areajoyList {
    width: 85%;
    padding: 0;
    margin: 0 auto;
    list-style: none;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#areaJoy > .areajoyList > li {
    width: 45%;
    padding: 0;
    margin: 0 0 50px;
}
#areaJoy > .areajoyList > li figure {
    width: 100%;
    padding: 0;
    margin: 0 0 30px;
    position: relative;
    z-index: 0;
}
#areaJoy > .areajoyList > li figure::after {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    padding: 0;
    margin: 0;
    background: #03142f;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
    position: absolute;
    bottom: -10px;
    right: -10px;
    z-index: -1;
}
#areaJoy > .areajoyList > li figure > span {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: #fff;
    transform: skewX(-10deg);
    -webkit-transform: skewX(-10deg);
}
#areaJoy > .areajoyList > li figure > span:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
#areaJoy > .areajoyList > li figure > span img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
    -webkit-transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
    -ms-transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
    padding: 0;
    margin: 0;
    transition: 0.5s;
    object-fit: cover;
}
#areaJoy > .areajoyList > li .areajoyInfo {
    padding: 0;
    margin: 0;
}
#areaJoy > .areajoyList > li h3 {
    font-size: 30px;
    line-height: 1.2em;
    font-weight: bold;
    font-style: italic;
    color: #03142f;
    padding: 0 0 15px;
    margin: 0 auto 20px;
    position: relative;
}
#areaJoy > .areajoyList > li h3::after {
    content: '';
    display: block;
    width: 105%;
    height: 2px;
    padding: 0;
    margin: 0;
    background: #03142f;
    position: absolute;
    bottom: 0;
    left: -5%;
}
#areaJoy > .areajoyList > li .areajoyInfo p {
    padding: 0;
    margin: 0;
    line-height: 2;
    font-style: italic;
    color: #232323;
    text-align: justify;
    text-justify: inter-ideograph;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*リスト*/
    #areaJoy > .areajoyList {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        list-style: none;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        overflow: hidden;
    }
    #areaJoy > .areajoyList > li {
        width: 100%;
        padding: 0;
        margin: 0 0 40px;
    }
    #areaJoy > .areajoyList > li:last-child {
        margin-bottom: 0;
    }
    #areaJoy > .areajoyList > li figure {
        width: 100%;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
        z-index: 0;
        transform: translateX(40px);
    }
    #areaJoy > .areajoyList > li:nth-child(even) figure {
        width: 100%;
        padding: 0;
        margin: 0 0 25px;
        position: relative;
        z-index: 0;
        transform: translateX(-40px);
    }
    #areaJoy > .areajoyList > li figure::after {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        padding: 0;
        margin: 0;
        background: #03142f;
        transform: skewX(-10deg);
        -webkit-transform: skewX(-10deg);
        position: absolute;
        bottom: -10px;
        right: -10px;
        z-index: -1;
    }
    #areaJoy > .areajoyList > li:nth-child(even) figure::after {
        content: '';
        width: 100%;
        height: 100%;
        display: block;
        padding: 0;
        margin: 0;
        background: #03142f;
        transform: skewX(10deg);
        -webkit-transform: skewX(10deg);
        position: absolute;
        bottom: -10px;
        right: unset;
        left: -10px;
        z-index: -1;
    }
    #areaJoy > .areajoyList > li figure > span {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: #fff;
        transform: skewX(-10deg);
        -webkit-transform: skewX(-10deg);
    }
    #areaJoy > .areajoyList > li:nth-child(even) figure > span {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: #fff;
        transform: skewX(10deg);
        -webkit-transform: skewX(10deg);
    }
    #areaJoy > .areajoyList > li figure > span:before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    #areaJoy > .areajoyList > li figure > span img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: 0.5s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
        -webkit-transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
        -ms-transform: translate(-50%, -50%) skewX(10deg) scale(1.1);
        padding: 0;
        margin: 0;
        transition: 0.5s;
        object-fit: cover;
    }
    #areaJoy > .areajoyList > li:nth-child(even) figure > span img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: 0.5s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) skewX(-10deg) scale(1.1);
        -webkit-transform: translate(-50%, -50%) skewX(-10deg) scale(1.1);
        -ms-transform: translate(-50%, -50%) skewX(-10deg) scale(1.1);
        padding: 0;
        margin: 0;
        transition: 0.5s;
        object-fit: cover;
    }
    #areaJoy > .areajoyList > li .areajoyInfo {
        padding: 0;
        margin: 0;
    }
    #areaJoy > .areajoyList > li h3 {
        font-size: 20px;
        line-height: 1.2em;
        font-weight: bold;
        font-style: italic;
        color: #03142f;
        padding: 0 20px 15px;
        margin: 0 0 15px auto;
        position: relative;
        text-align: left;
        width: 95%;
    }
    #areaJoy > .areajoyList > li:nth-child(even) h3 {
        font-size: 20px;
        line-height: 1.2em;
        font-weight: bold;
        font-style: italic;
        color: #03142f;
        padding: 0 20px 15px;
        margin: 0 auto 15px 0;
        position: relative;
        text-align: right;
        width: 95%;
    }
    #areaJoy > .areajoyList > li h3::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        padding: 0;
        margin: 0;
        background: #03142f;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    #areaJoy > .areajoyList > li .areajoyInfo p {
        width: 80%;
        padding: 0;
        margin: 0 auto;
        line-height: 2;
        font-style: italic;
        color: #232323;
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

/*=================================================================================*/
/* ガレージ・倉庫の特徴
/*=================================================================================*/
#areaFeature {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: #fff;
}
#areaFeature > h2 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
    font-size: 35px;
    line-height: 1;
    font-weight: bold;
    color: #03142f;
    text-align: center;
    position: relative;
}
#areaFeature > h2 > span {
    display: block;
    font-size: 0.5em;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
}
#areaFeature > h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    padding: 0;
    margin: 0;
    background: #aaa;
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translate(-50%,0) rotate(10deg);
    -webkit-transform: translate(-50%,0) rotate(10deg);
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaFeature {
        width: 100%;
        padding: 40px 0 0;
        margin: 0 auto;
        background: #fff;
    }
    #areaFeature > h2 {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        font-size: 25px;
        line-height: 1;
        font-weight: bold;
        color: #03142f;
        text-align: center;
        position: relative;
    }
    #areaFeature > h2 > span {
        display: block;
        font-size: 0.5em;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
    #areaFeature > h2::after {
        content: '';
        display: block;
        width: 1px;
        height: 20px;
        padding: 0;
        margin: 0;
        background: #aaa;
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translate(-50%,0) rotate(10deg);
        -webkit-transform: translate(-50%,0) rotate(10deg);
    }
}

.areaFeatureWrap {
    width: 100%;
    padding: 0 0 50px;
    margin: 0 auto;
    background: #eeeeee;
    position: relative;
    z-index: 0;
}
.areaFeatureWrap::before {
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    padding: 0;
    margin: 0;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.areaFeatureWrap > h3 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 10px;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #232323;
    position: relative;
}
.areaFeatureWrap > p > strong {
    display: block;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 30px;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #232323;
    position: relative;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .areaFeatureWrap {
        width: 100%;
        padding: 0;
        margin: 0;
        background: #eeeeee;
        position: relative;
        z-index: 0;
    }
    .areaFeatureWrap::before {
        content: '';
        display: block;
        width: 100%;
        height: 10px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .areaFeatureWrap > h3 {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1;
        font-weight: bold;
        font-style: italic;
        color: #232323;
        position: relative;
        text-align: center;
    }
    .areaFeatureWrap > p > strong {
        display: block;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 30px;
        font-size: 15px;
        line-height: 1.4em;
        font-weight: bold;
        font-style: italic;
        color: #232323;
        position: relative;
    }
}

.areaFeatureTop {
    width: 100%;
    padding: 0;
    margin: 0 auto 50px;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
.areaFeatureTop > h4 {
    width: 60%;
    text-align: left;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 15%;
    right: 0;
    z-index: 2;
}
.areaFeatureTop > h4 > span {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 0 10px;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    background: #03142f;
}
.areaFeatureTop > figure {
    width: 50%;
    padding: 0;
    margin: 0;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    position: relative;
	overflow: hidden;
}
.areaFeatureTop > figure > span {
    display: block;
    width: 45%;
    padding: 0;
    margin: 0 0 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.areaFeatureTop > figure > span:before {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.areaFeatureTop > figure > span:first-of-type {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: none;
}
.areaFeatureTop > figure > span:first-of-type:before {
    content: "";
    display: block;
    padding-top: 75%;
}
.areaFeatureTop > figure > span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    transition: 0.5s;
}
.areaFeatureTop > .areaFeatureTop_info {
    width: 50%;
    padding: 350px 0 0;
    margin: 0;
}
.areaFeatureTop > .areaFeatureTop_info > p {
    width: 80%;
    padding: 0;
    margin: 0 auto 15px;
	font-size: 16px;
    font-weight: bold;
    line-height: 2;
}
.areaFeatureTop > .areaFeatureTop_info > p:last-of-type {
    margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .areaFeatureTop {
        width: 100%;
        padding: 0;
        margin: 0 auto 50px;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
    }
    .areaFeatureTop > h4 {
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
        position: static;
        top: unset;
        right: unset;
        z-index: 2;
        order: 0;
    }
    .areaFeatureTop > h4 > span {
        display: inline-block;
        padding: 5px 10px;
        margin: 0 0 5px;
        font-size: 18px;
        line-height: 1;
        font-weight: bold;
        font-style: italic;
        color: #fff;
        background: #03142f;
    }
    .areaFeatureTop > figure {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        position: relative;
        order: 2;
    }
    .areaFeatureTop > figure > span {
        display: block;
        width: 48%;
        padding: 0;
        margin: 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .areaFeatureTop > figure > span:before {
        content: "";
        display: block;
        padding-top: 56.25%;
    }
    .areaFeatureTop > figure > span:first-of-type {
        display: block;
        width: 100%;
        padding: 0;
        margin: 0 0 10px;
        text-align: center;
        position: relative;
        overflow: hidden;
        background: #fff;
    }
    .areaFeatureTop > figure > span:first-of-type:before {
        content: "";
        display: block;
        padding-top: 75%;
    }
    .areaFeatureTop > figure > span img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: 0.5s;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        transition: 0.5s;
    }
    .areaFeatureTop > .areaFeatureTop_info {
        width: 90%;
        padding: 0;
        margin: 0 auto;
        order: 1;
    }
    .areaFeatureTop > .areaFeatureTop_info > p {
        width: 90%;
        padding: 0;
        margin: 0 auto 10px;
        font-weight: bold;
        line-height: 2;
    }
    .areaFeatureTop > .areaFeatureTop_info > p:last-of-type {
        margin-bottom: 20px;
    }
}

.areaFeatureMid {
    width: 85%;
    padding: 0;
    margin: 0 auto;
    position: relative;
	z-index: 0;
}
.areaFeatureMid > h4 {
    width: 100%;
    text-align: left;
    padding: 0;
    margin: 0 auto 30px;
}
.areaFeatureMid > h4 > span {
    display: inline-block;
    padding: 10px 20px;
    margin: 0;
    font-size: 35px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    background: #03142f;
}
.areaFeatureMid > p {
    width: 100%;
    padding: 0;
    margin: 0 auto 20px;
    font-weight: bold;
    line-height: 2;
}
.areaFeatureMid > p:last-of-type {
    margin-bottom: 0;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    .areaFeatureMid {
        width: 100%;
        padding: 0 0 30px;
        margin: 0 auto;
        position: relative;
    }
    .areaFeatureMid > h4 {
        width: 90%;
        text-align: left;
        padding: 0;
        margin: 0 auto 20px;
    }
    .areaFeatureMid > h4 > span {
        display: inline-block;
        padding: 5px 10px;
        margin: 0;
        font-size: 18px;
        line-height: 1.4em;
        font-weight: bold;
        font-style: italic;
        color: #fff;
        background: #03142f;
    }
    .areaFeatureMid > p {
        width: 80%;
        padding: 0;
        margin: 0 auto 10px;
        font-weight: bold;
        line-height: 2;
    }
    .areaFeatureMid > p:last-of-type {
        margin-bottom: 0;
    }
}

/*　よくある質問 */
.areaFeatureBtm {
	margin-bottom: 100px;
}
.areaFeatureBtm h4 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #03142f;
    text-align: center;
}
.areaFeatureBtm .faqList {
    width: 100%;
    max-width: 1000px;
    padding: 0;
    margin: 0 auto;
}
.areaFeatureBtm .faqList dl {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 0 rgba(255,255,255,1);
}
.areaFeatureBtm .faqList dt {
    padding: 20px 60px 20px 20px;
    background: none;
    position: relative;
    font-weight: bold;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 15px;
    cursor: pointer;
    display: -webkit-flex;
    display: flex;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    background: #fff;
}
.areaFeatureBtm .faqList dt::before {
    content: 'Q.';
    display: block;
    padding: 0;
    margin: 0;
    margin-right: 20px;
    font-size: 20px;
    color: #03142f;
    font-weight: 500;
    font-style: normal;
    font-feature-settings: "palt";
}
.areaFeatureBtm .faqList dt::after {
    content: '';
    display: block;
    padding: 0;
    margin: 0;
    width: 18px;
    height: 18px;
    background: #000;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translate(0,-50%);
    -webkit-transform: translate(0,-50%);
    z-index: 0;
}
.areaFeatureBtm .faqList dd {
    padding: 40px;
    margin-top: 1px;
    background: #fafafa;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
}
.areaFeatureBtm .faqList dd p {
    font-size: 15px;
    padding: 0;
    margin: 0 auto 20px;
}
.areaFeatureBtm .faqList dt span::before,
.areaFeatureBtm .faqList dt span::after {
    content: '';
    display: block;
    width: 12px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    right: 23px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.areaFeatureBtm .faqList dt span::after {
    background: #fff;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
}
.areaFeatureBtm .faqList dt .active::after {
    transform: rotate(0);
    transition: 0.5s;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*　よくある質問 */
	#areaTemp .areaFeatureBtm {
		padding: 40px 0;
		margin-bottom: 0;
	}
    .areaFeatureBtm h4 {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.2em;
        font-weight: bold;
        font-style: italic;
        color: #03142f;
        text-align: center;
    }
    .areaFeatureBtm .faqList {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    .areaFeatureBtm .faqList dl {
        width: 100%;
        padding: 0;
        margin: 0 auto;
        background: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 1px 0 rgba(255,255,255,1);
    }
    .areaFeatureBtm .faqList dt {
        padding: 20px 60px 20px 20px;
        background: none;
        position: relative;
        font-weight: bold;
        font-style: normal;
        font-feature-settings: "palt";
        font-size: 15px;
        cursor: pointer;
        display: -webkit-flex;
        display: flex;
        justify-content: flex-start;
        align-content: center;
        align-items: center;
        flex-wrap: nowrap;
        background: #fff;
    }
    .areaFeatureBtm .faqList dt::before {
        content: 'Q.';
        display: block;
        padding: 0;
        margin: 0;
        margin-right: 20px;
        font-size: 20px;
        color: #03142f;
        font-weight: 500;
        font-style: normal;
        font-feature-settings: "palt";
    }
    .areaFeatureBtm .faqList dt::after {
        content: '';
        display: block;
        padding: 0;
        margin: 0;
        width: 18px;
        height: 18px;
        background: #000;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translate(0,-50%);
        -webkit-transform: translate(0,-50%);
        z-index: 0;
    }
    .areaFeatureBtm .faqList dd {
        padding: 40px;
        margin-top: 1px;
        background: #fafafa;
        font-size: 15px;
        line-height: 2;
        font-weight: 400;
        font-style: normal;
        font-feature-settings: "palt";
    }
    .areaFeatureBtm .faqList dd p {
        font-size: 15px;
        padding: 0;
        margin: 0 auto 20px;
    }
    .areaFeatureBtm .faqList dt span::before,
    .areaFeatureBtm .faqList dt span::after {
        content: '';
        display: block;
        width: 12px;
        height: 2px;
        border-radius: 5px;
        background: #fff;
        position: absolute;
        right: 23px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
    }
    .areaFeatureBtm .faqList dt span::after {
        background: #fff;
        transform: translateY(-50%) rotate(90deg);
        transition: 0.5s;
    }
    .areaFeatureBtm .faqList dt .active::after {
        transform: rotate(0);
        transition: 0.5s;
    }
}


/*=================================================================================*/
/* アピール
/*=================================================================================*/
#areaAppeal {
    width: 100%;
    padding: 100px 0;
    margin: 0;
    position: relative;
    background: url('https://kishin-fukuoka.co.jp/wp-content/uploads/2021/08/areaMainVisual.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
}
#areaAppeal > h2 {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 30px;
}
#areaAppeal > h2 > span {
    display: inline-block;
    padding: 0;
    margin: 0 0 30px;
    font-size: 40px;
    line-height: 1;
    font-weight: bold;
    font-style: italic;
    color: #fff;
    position: relative;
    z-index: 0;
}
#areaAppeal > h2 > span::before {
    content: '';
    display: block;
    width: calc(100% + 60px);
    height: calc(100% + 20px);
    padding: 0;
    margin: 0;
    background: #03142f;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    z-index: -1;
}
#areaAppeal > p {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    font-style: italic;
    line-height: 1.4em;
}
#areaAppeal > p:last-of-type {
    margin-bottom: 0;
}
#areaAppeal > p > strong {
    font-size: 1.4em;
    line-height: 1.4em;
    font-weight: bold;
    font-style: italic;
    color: #fff;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaAppeal {
        width: 100%;
        padding: 50px 0;
        margin: 0;
        position: relative;
        background: url('https://kishin-fukuoka.co.jp/wp-content/uploads/2021/08/areaMainVisual.jpg') no-repeat;
        background-size: cover;
        background-position: center center;
    }
    #areaAppeal > h2 {
        width: 83%;
        max-width: 83%;
        padding: 0;
        margin: 0 auto;
        line-height: 1.2em;
    }
    #areaAppeal > h2 > span {
        display: inline-block;
        padding: 0;
        margin: 0 0 20px;
        font-size: 20px;
        line-height: 1.2em;
        font-weight: bold;
        font-style: italic;
        color: #fff;
        position: relative;
        z-index: 0;
    }
    #areaAppeal > h2 > span::before {
        content: '';
        display: block;
        width: calc(100% + 20px);
        height: calc(100% + 10px);
        padding: 0;
        margin: 0;
        background: #03142f;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        -webkit-transform: translate(-50%,-50%);
        z-index: -1;
    }
    #areaAppeal > p {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 15px;
        color: #fff;
        font-weight: bold;
        font-style: italic;
        line-height: 1.4em;
    }
    #areaAppeal > p:last-of-type {
        margin-bottom: 0;
    }
    #areaAppeal > p > strong {
        font-size: 1.2em;
        line-height: 1.2em;
        font-weight: bold;
        font-style: italic;
        color: #fff;
    }
}

/*=================================================================================*/
/* マップ
/*=================================================================================*/
#areaMap {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
#areaMap::before {
    content: '';
    display: block;
    padding-top: 40%;
}
#areaMap iframe {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
}
.areaMapInfo {
    width: 300px;
    padding: 20px;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.areaMapInfo > h2 {
    width: 60%;
    padding: 0;
    margin: 0 auto 15px;
    text-align: center;
}
.areaMapInfo > h2 img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}
.areaMapInfo > p {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}
.areaMapInfo > p:first-of-type {
    width: 100%;
    padding: 0;
    margin: 0 auto 10px;
    text-align: center;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaMap {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
    }
    #areaMap::before {
        display: none;
    }
    #areaMap > .areaMapFrame {
        width: 100%;
        padding: 0;
        margin: 0;
        position: relative;
        background: #000;
    }
    #areaMap > .areaMapFrame::before {
        content: '';
        display: block;
        padding-top: 250px;
    }
    #areaMap iframe {
        width: 100%;
        height: 100%;
        transition: 0.5s;
        position: absolute;
        top: 0;
        left: 0;
        transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        padding: 0;
        margin: 0;
    }
    .areaMapInfo {
        width: 100%;
        padding: 40px 20px;
        margin: 0 auto;
        position: static;
        top: unset;
        right: unset;
        z-index: 5;
        background: rgba(255,255,255,0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }
    .areaMapInfo > h2 {
        width: 60%;
        padding: 0;
        margin: 0 auto 15px;
        text-align: center;
    }
    .areaMapInfo > h2 img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }
    .areaMapInfo > p {
        width: 100%;
        padding: 0;
        margin: 0 auto;
    }
    .areaMapInfo > p:first-of-type {
        width: 100%;
        padding: 0;
        margin: 0 auto 10px;
        text-align: center;
    }
}



/*=================================================================================*/
/* エリアページ
/*=================================================================================*/
#areaPage {
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
    background: linear-gradient( -45deg,#fff 0%,#f8f6f3 50%,transparent 50%,transparent 100%) fixed #fff!important;
}
#areaPage > .areaPageInfo {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
}
#areaPage > .areaPageInfo > h2 {
    width: 100%;
    padding: 0;
    margin: 0 auto 40px;
    font-size: 35px;
    line-height: 1.4em;
    font-weight: bold;
    font-style: italic;
    font-feature-settings: "palt" 1;
    color: #03142f;
    text-align: center;
}
#areaPage > .areaPageInfo > p {
    padding: 0;
    margin: 0 auto 50px;
    text-align: center;
}

#areaPage > .areaPageMap {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto;
    position: relative;
}
#areaPage > .areaPageMap figure {
    width: 50%;
    padding: 0;
    margin: 0 auto;
}
#areaPage > .areaPageMap figure img {
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
}

#areaPage > .areaPageMap > ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}
#areaPage > .areaPageMap > ul > li {
    display: inline-block;
    padding: 0;
    margin: 0;
}
#areaPage > .areaPageMap > ul > li a {
    display: block;
    padding: 10px 20px;
    margin: 0;
    border: 1px solid #000;
    background: #fff;
    color: #03142f;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-decoration: none;
    transition: 0.5s;
    -webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
    -moz-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
    -ms-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
    filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
}
#areaPage > .areaPageMap > ul > li a:hover {
    display: block;
    padding: 10px 20px;
    margin: 0;
    border: 1px solid #fff;
    background: #eed262;
    color: #03142f;
    text-align: center;
    font-size: 20px;
    line-height: 1;
    font-weight: bold;
    text-decoration: none;
    transition: 0.5s;
}

/*熊本県*/
#areaPage > .areaPageMap > ul > li.area01 {
    position: absolute;
    top: 40%;
    left: 45%;
    z-index: 2;
}
/*福岡県*/
#areaPage > .areaPageMap > ul > li.area02 {
    position: absolute;
    top: 9%;
    left: 45%;
    z-index: 2;
}
/*長崎県*/
#areaPage > .areaPageMap > ul > li.area03 {
    position: absolute;
    top: 30%;
    left: 25%;
    z-index: 2;
}
/*佐賀県*/
#areaPage > .areaPageMap > ul > li.area04 {
    position: absolute;
    top: 18%;
    left: 33%;
    z-index: 2;
}
/*大分県*/
#areaPage > .areaPageMap > ul > li.area05 {
    position: absolute;
    top: 22%;
    right: 30%;
    z-index: 2;
}
/*宮崎県*/
#areaPage > .areaPageMap > ul > li.area06 {
    position: absolute;
    top: 55%;
    right: 32%;
    z-index: 2;
}
/*鹿児島県*/
#areaPage > .areaPageMap > ul > li.area07 {
    position: absolute;
    top: 75%;
    left: 40%;
    z-index: 2;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    #areaPage {
        width: 100%;
        padding: 50px 0;
        margin: 0 auto;
        background: linear-gradient( -75deg,#f8f6f3 0%,#f8f6f3 50%,transparent 50%,transparent 100%) fixed #f8f6f3!important;
    }
    #areaPage > .areaPageInfo {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    #areaPage > .areaPageInfo > h2 {
        width: 100%;
        padding: 0;
        margin: 0 auto 20px;
        font-size: 18px;
        line-height: 1.4em;
        font-weight: bold;
        font-style: italic;
        font-feature-settings: "palt" 1;
        color: #03142f;
        text-align: center;
    }
    #areaPage > .areaPageInfo > p {
        width: 90%;
        padding: 0;
        margin: 0 auto 20px;
        text-align: left;
    }

    #areaPage > .areaPageMap {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
        position: relative;
    }
    #areaPage > .areaPageMap figure {
        width: 90%;
        padding: 0;
        margin: 0 auto;
    }
    #areaPage > .areaPageMap figure img {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
    }

    #areaPage > .areaPageMap > ul {
        width: 100%;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    #areaPage > .areaPageMap > ul > li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }
    #areaPage > .areaPageMap > ul > li a {
        display: block;
        padding: 5px 10px;
        margin: 0;
        border: 1px solid #000;
        background: #fff;
        color: #03142f;
        text-align: center;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        text-decoration: none;
        transition: 0.5s;
        -webkit-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
        -moz-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
        -ms-filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
        filter:drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.2));
    }
    #areaPage > .areaPageMap > ul > li a:hover {
        display: block;
        padding: 5px 10px;
        margin: 0;
        border: 1px solid #fff;
        background: #eed262;
        color: #03142f;
        text-align: center;
        font-size: 14px;
        line-height: 1;
        font-weight: bold;
        text-decoration: none;
        transition: 0.5s;
    }

    /*熊本県*/
    #areaPage > .areaPageMap > ul > li.area01 {
        position: absolute;
        top: 40%;
        left: 40%;
        z-index: 2;
    }
    /*福岡県*/
    #areaPage > .areaPageMap > ul > li.area02 {
        position: absolute;
        top: 9%;
        left: 40%;
        z-index: 2;
    }
    /*長崎県*/
    #areaPage > .areaPageMap > ul > li.area03 {
        position: absolute;
        top: 35%;
        left: 5%;
        z-index: 2;
    }
    /*佐賀県*/
    #areaPage > .areaPageMap > ul > li.area04 {
        position: absolute;
        top: 18%;
        left: 20%;
        z-index: 2;
    }
    /*大分県*/
    #areaPage > .areaPageMap > ul > li.area05 {
        position: absolute;
        top: 22%;
        right: 15%;
        z-index: 2;
    }
    /*宮崎県*/
    #areaPage > .areaPageMap > ul > li.area06 {
        position: absolute;
        top: 55%;
        right: 18%;
        z-index: 2;
    }
    /*鹿児島県*/
    #areaPage > .areaPageMap > ul > li.area07 {
        position: absolute;
        top: 75%;
        left: 30%;
        z-index: 2;
    }
}


/*エリア別ページナビ*/
#areaPageNav {
    width: 100%;
    max-width: 1100px;
    padding: 0;
    margin: 0 auto 100px;
}
#areaPageNav > h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", YuGothic, Arial, "メイリオ", Meiryo, sans-serif;
    color: #313131;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    line-height: 1;
    padding: 15px 0 15px;
    margin: 0 auto 20px;
    border-bottom: 2px solid #03142f;
}
#areaPageNav > ul {
    list-style: none;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#areaPageNav > ul > li {
    display: inline-block;
    padding: 0 0 0 15px;
    margin: 0 20px;
    position: relative;
}
#areaPageNav > ul > li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    padding: 0;margin: 0;
    background: #03142f;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%) rotate(45deg);
    -webkit-transform: translate(0,-50%) rotate(45deg);
}
#areaPageNav > ul > li a {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", YuGothic, Arial, "メイリオ", Meiryo, sans-serif;
    color: #313131;
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
    transition: 0.5s;
}
#areaPageNav > ul > li a:hover {
    color: #03142f;
    transition: 0.5s;
    text-decoration: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
    /*エリア別ページナビ*/
    #areaPageNav {
        width: 90%;
        max-width: 90%;
        padding: 0;
        margin: 0 auto 50px;
    }
    #areaPageNav > h2 {
        font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", YuGothic, Arial, "メイリオ", Meiryo, sans-serif;
        color: #313131;
        text-align: center;
        font-size: 18px;
        font-weight: bold;
        line-height: 1;
        padding: 10px 0 10px;
        margin: 0 auto 20px;
        border-bottom: 2px solid #03142f;
        position: relative;
    }
    #areaPageNav > h2::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        padding: 0;
        margin: 0;
        background: #fff;
        position: absolute;
        bottom: -3px;
        left: 0;
    }
    #areaPageNav > ul {
        list-style: none;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        display: -webkit-flex;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #areaPageNav > ul > li {
        display: inline-block;
        padding: 0 0 0 10px;
        margin: 0 10px 15px;
        position: relative;
    }
    #areaPageNav > ul > li::before {
        content: '';
        display: block;
        width: 5px;
        height: 5px;
        padding: 0;margin: 0;
        background: #03142f;
        position: absolute;
        top: 50%;
        left: 0;
        transform: translate(0,-50%) rotate(45deg);
        -webkit-transform: translate(0,-50%) rotate(45deg);
    }
    #areaPageNav > ul > li a {
        font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", YuGothic, Arial, "メイリオ", Meiryo, sans-serif;
        color: #313131;
        font-size: 15px;
        font-weight: bold;
        line-height: 1;
        transition: 0.5s;
    }
    #areaPageNav > ul > li a:hover {
        color: #03142f;
        transition: 0.5s;
        text-decoration: none;
    }
}

#garage .iHeader {
	margin-bottom: 50px;
}
#areaTemp #garage #work-posts {
	margin-bottom: 0;
}
#areaTemp #garage #work-posts::after {
	display: none;
}
/*== スマホ・タブレット対応 ==*/
@media only screen and (max-width: 768px){
	#areaTemp #garage_feature > .iHeader {
		margin-bottom: 20px;
		transform: unset;
	}
	#areaTemp #garage .iHeader {
		margin-bottom: 20px;
	}
	#areaTemp #garage_feature {
		margin-bottom: 0;
	}
}