@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
     min-width: 0;
    min-height: 0;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align: baseline;
    background:transparent;
    text-decoration: none;
    cursor: pointer;
}
body{
    font-size: 1.6rem;
    line-height: 2;
    color: #040000;
    font-family: "Noto Serif JP", "Noto Sans", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
    word-break: break-word;
    font-weight: 400;
}
.HiraKakuProN3 {
    font-family: "Hira Kaku ProN3", "Noto Sans", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
.HiraKakuProN6 {
    font-family: "Hira Kaku ProN6", "Noto Sans", "Yu Gothic", "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
}
.Damion {
    font-family: "Damion", cursive;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button {
    outline: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus {
    outline: none !important;
    box-shadow: none;
}
ol, ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li{
    list-style: none;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
button {
    font-family: inherit;
    cursor: pointer;
}
img {
    width /***/: auto;
    height: auto;
    border: none;
    vertical-align: bottom;
    max-width: 100%;
    image-rendering: -webkit-optimize-contrast;
}
a {text-decoration: none;
    cursor: pointer;
}
.hover:hover{
    transition: all .3s;
    opacity: 0.7;
    filter:alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
}
.container {
    margin: 0 auto;
    max-width: 1150px;
    position: relative;
    z-index: 10;
    padding-left: 30px;
    padding-right: 30px;
}
.anchor-link{
    position: relative;
    display: block;
    line-height: 0;
}
.wrapper{
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.text-left{
    text-align: left;
}
.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
.d-block{
    display: block;
}
.hdn{
    display: none !important;
}
.no-cursor{
    cursor: auto !important;
}
.hdn-scroll{
    overflow: hidden;
}
b, strong{
    font-weight: 700;
}
@media(max-width: 750px){
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}
/*
==============================================================
=========================== pagetop ==========================
==============================================================
*/
#pagetop {
    background: #9E857B;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border: 1px solid transparent;
    position: fixed;
    right: 20px;
    bottom: 20px;
    -webkit-transition-duration: .25s;
    transition-duration: .25s;
    z-index: 99;
    display: none;
    border-radius: 50%;
    border: 1px solid #ffff;
}
#pagetop::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    content: '';
    width: 14px;
    height: 14px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 5px;
    margin: auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: .2s;
}
#pagetop:hover::after {
    top: -5px;
}
@media(max-width: 750px){

}
/*
==============================================================
========================= End pagetop ========================
==============================================================
*/
/*
==============================================================
========================== Animation =========================
==============================================================
*/
/* -------------------------------- 
fuwafuwa
-------------------------------- */
.fuwafuwa {
    -webkit-animation: buruburu 3.0s ease-in-out alternate;
    animation: buruburu 3.0s infinite ease-in-out alternate;
}
.delay05 { animation-delay: 0.5s;}
.delay1 { animation-delay: 1s;}
.delay15 { animation-delay: 1.5s;}
@keyframes buruburu {
    0% {-webkit-transform: translate(0, 0);}
    4% {-webkit-transform: translate(0, 0);}
    50% {-webkit-transform: translate(0, -15px);}
    54% {-webkit-transform: translate(0, -15px);}
    100% {-webkit-transform: translate(0, 0);}
}
/*
==============================================================
========================= End Animation ======================
==============================================================
*/
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    z-index: 1100;
    width: 100px;
    height: 90px;
    position: fixed;
    top: 0;
    right: 0;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 30px;
    height: 2px;
    transition: 0.2s;
    background: #2B3155;
}
.hamburger-menu .bar{
    position: relative;
    width: 30px;
    line-height: 1;
    transition: all 0ms 300ms;
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu.active .bar{
    background: none !important;
}
.hamburger-menu.active .bar:before {
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    top: 0;
}
.hamburger-menu.active .bar:after {
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    top: 0;
}
@media(max-width:860px){
    .hamburger-menu.bottom{
        display: none;
    }
    header.open-menu .hamburger-menu.bottom {
        display: flex;
        bottom: 0;
        right: 0;
        top: unset;
    }
}
/*
==============================================================
====================== End hamburger menu ====================
==============================================================
*/
/*
==============================================================
============================ Common ==========================
==============================================================
*/
.lb-sp{
    display: none;
}
.lb-pc{
    display: block;
}
.lb-sm{
    display: none !important;
}
.slick-track{
    height: 100%;
}
.btn-box {
    text-align: center;
}
.show_pc {
    display: block;
}
.show_sp {
    display: none;
}
.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    padding: 33px;
    line-height: 1;
    width: 100%;
    max-width: 650px;
    transition: .3s ease;
    -webkit-transition: 0.3s ease;
    background: #13AE67;
    color: #fff;
    border-radius: 50vh;
    font-size: 2.4rem;
    font-weight: 600;
}
.btn:hover {
    background: #2F659F
}
.btn span {
    position: relative;
    padding-right: 30px;
}
@media(max-width:750px){
    .lb-sp{
        display: block;
    }
    .lb-pc{
        display: none;
    }
    .show_pc {
        display: none;
    }
    .show_sp {
        display: block;
    }
}
/*
==============================================================
========================== End common ========================
==============================================================
*/
/*
==============================================================
============================= slick  =========================
==============================================================
*/
.slick-track{
    height: 100%;
}
.slick-prev,
.slick-next {
    top: 50%;
    z-index: 100;
    position: absolute;
    margin-top: -18px;
    background: none;
    border: none;
    text-indent: -999999px;
    width: 36px;
    height: 36px;
    background: #999999;
    border-radius: 50%;
}
.slick-prev {
    left: 5px;
}
.slick-next {
    right: 5px;
}
.slick-next:before,
.slick-prev:before{
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    border: solid #fff;
    border-width: 0 2px 2px 0px;
    display: inline-block;
    width: 10px;
    height: 10px;
}
.slick-next:before {
    left: 11px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.slick-prev:before {
    left: 15px;
    top: 50%;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}
@media(max-width: 576px){
    .slick-prev {
        left: 0px;
    }
    .slick-next {
        right: 0px;
}
}
/*
==============================================================
=========================== End slick  =======================
==============================================================
*/
/*
==============================================================
===========================  header ==========================
==============================================================
*/
header{
    margin: 0;
    padding: 0;
    position: relative;
}

.headerbox{
    margin: 0;
    padding: 0;
}
.headerbox_in{
    /* max-width: 1400px; */
    width: 100%;
    margin: 0 auto;
    padding:  20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.headerbox_in .logobox {
    width: 150px;
}
.headerbox_in .linkbox {
    background: #9E857B;
}
.headerbox_in .linkbox a {
    display: block;
    padding: 12px 23px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    text-align: center;
    font-family: "Noto Serif JP", serif;
}
.headerbox_in .linkbox a .ic {
    width: 18px;
    height: 18px;
    background: url(/img_new/minoh-area/ic-linkbox.png) no-repeat;
    background-size: 100% !important;
    display: inline-block;
    position: relative;
    top: 3px;
}
.headerbox_in .linkbox a .sm {
    font-size: 10px;
   
}
.headerbox_in .linkbox a:hover {
    transition: all .3s;
    opacity: .7;
}
@media(max-width: 750px){
    .headerbox_in .linkbox  {
        display: none;
    }
    .headerbox_in {
        justify-content: center;
        padding: 10px 15px;
    }
    .headerbox_in .logobox {
        width: 120px;
    }
}
.sidebar {
    position: fixed;
    top: 100px;
    right: 0;
    z-index: 100;
    padding: 20px;
    padding: 30px 15px 30px 25px;
    display: none;
}
.sidebar li {
    padding: 10px 0;
    position: relative;
}
.sidebar li a {
    display: block;
    padding: 0 0 0 30px;
    font-size: 1.4rem;
    color: #000;
    transition: .3s;
    position: relative;
    line-height: 1.05;
}
.sidebar li span {
    display: inline-block;
    vertical-align: middle;
}
.sidebar li .circle {
    width: 19px;
    height: 19px;
    margin-right: 18px;
    border-radius: 50%;
    background: #000000;
    transition: .3s;
    position: absolute;
    left: 0px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.sidebar li::after {
    content: "";
    display: block;
    width: 2px;
    height: 95%;
    background: #808080;
    position: absolute;
    top: 30px;
    left: 9px;
    z-index: -1;
}
.sidebar li:last-of-type:after {
    content: none;
}
.sidebar li a:hover {
    color: #660000;
}
.sidebar li:hover .circle {
    transform: scale(1.5);
    background: #660000 !important;
}
.sidebar a.is-active {
    color: #9E857B;
}
.sidebar a.is-active .circle {
    transform: scale(1.5);
    background: #9E857B;
    top: 2px;
}
@media(max-width: 768px){
    header {
        padding: 8px;
        justify-content: center;
    }
    header .logo{
        position: relative;
        top: 4px;
        padding-left: 0px;
    }
    header .right{
        display: none;
    }
    .sidebar{
        display: none !important;
    }
}
/*
==============================================================
========================== End header ========================
==============================================================
*/

/*
==============================================================
============================ footer ==========================
==============================================================
*/
footer {
    border-top: 2px solid #000;
}
footer .contact {
    padding-top: 65px;
}
footer .contact .txt-box {
    text-align: center;
}
footer .contact .txt-box .top {
    /* font-size: 3.6rem; */
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
}
footer .contact .txt-box .top span {
    display: inline-block;
    position: relative;
    padding: 0 120px;
}
footer .contact .txt-box .top span::before,
footer .contact .txt-box .top span::after {
    content: "";
    position: absolute;
    width: 85px;
    height: 2px;
    background: #000;
    top: 50%;
    margin-top: -1px;
}
footer .contact .txt-box .top span::before {
    left: 0;
}
footer .contact .txt-box .top span::after {
    right: 0;
}
footer .contact .txt-box .en {
    /* font-size: 2.4rem; */
    font-size: 2rem;
    font-weight: 600;
    padding: 10px 0 20px;
}
footer .contact .txt-box a {
    color: #000;
    /* font-size: 7.2rem; */
    font-size: 3.6rem;
    line-height: 1;  
    font-weight: 600; 
}
footer .contact .txt-box a .ic {
    width: 60px;
    height: 53px;
    background: url(/img_new/minoh-area/ic-contact.png);
    background-size: 100% !important;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 20px;
    position: relative;
    top: 5px;
}
footer .container {
    /* max-width: 1200px; */
    max-width: 1000px;
}
footer .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 70px;
}
footer .items .item {
    width: 50%;
    /* font-size: 2.2rem; */
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    width: calc(50% - 65px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
footer .items .item .tel {
    /* font-size: 7rem; */
    font-size: 4rem;
    font-weight: 600;
    color: #000;
    line-height: 1;
    padding-left: 50px;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    transition: .3s;
}
footer .items .item .tel:hover {
    opacity: .7;
}
footer .items .item .tel::before {
    content: "";
    position: absolute;
    width: 34px;
    height: 46px;
    background: url(/img_new/minoh-area/ic-call.png) no-repeat;
    background-size: 100% !important;
    left: 0;
    top: 50%;
    margin-top: -24px;
}
footer .items .item .desc {
    padding-bottom: 40px;
}
footer .items .item .btn {
    border-radius: 0;
    /* font-size: 3.6rem; */
    font-size: 2rem;
    padding: 28px 15px;
    background: #E6ACAF;
    max-width: 450px;
}
footer .items .item .btn.bg1 {
    background: #A0C6D7;
}
footer .items .item .btn:hover {
    background: #660000 !important;
}
footer .btn-bottom {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 600;
    padding-top: 50px;
    line-height: 1.5;
    padding-bottom: 35px;
}
footer .copy-right {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
    color: #fff;
    background: #9E857B;
    padding: 28px 15px 40px;
}
@media(max-width:1200px){
    footer .items .item .tel {
        font-size: 5vw;
    }
    footer .contact .txt-box a {
        font-size: 5.5vw;
    }
    footer .items .item {
        width: 47.5%;
        font-size: 1.8vw;
    }
    footer .items .item .btn {
        font-size: 2.8vw;
        padding: 3vw 1vw;
    }
    footer .items .item .desc {
        padding-bottom: 3vw;
    }
    footer .btn-bottom {
        font-size: 1.8vw;
    }
    footer .copy-right {
        font-size: 1.8vw;
    }
    footer .contact .txt-box .top {
        font-size: 3vw;
        padding: 10px;
    }
    footer .contact .txt-box .en {
        font-size: 2vw;
    }
    footer .contact .txt-box .top span {
        padding: 0 10vw;
    }
    footer .contact .txt-box .top span::before, 
    footer .contact .txt-box .top span::after {
        width: 7vw;
    }
}
@media(max-width:750px){
    footer .items .item {
        width: 100%;
    }
    footer .contact {
        padding-top: 35px;
    } 
    footer .contact .txt-box .top {
        font-size: 5vw;
        padding: 10px;
    }
    footer .contact .txt-box .en {
        font-size: 4vw;
        padding: 0;
    }
    footer .contact .txt-box a {
        font-size: 7.5vw;
        margin-top: 2vw;
        display: inline-block;
    }
    footer .contact .txt-box a .ic {
        width: 10vw;
        height: 9vw;
        margin-right: 2.8vw;
        top: 1.2vw;
    }
    footer .items {
        padding-top: 5vw;
    }
    footer .items .item .tel {
        font-size: 7vw;
    }
    footer .items .item .tel::before {
        width: 5.5vw;
        height: 7.2vw;
        margin-top: -3.2vw;
    }
    footer .items .item {
        font-size: 3vw;
        margin-bottom: 4vw;
    }
    footer .items .item .btn {
        max-width: 100%;
    }
    footer .items .item .btn {
        font-size: 5vw;
        padding: 4vw 4vw;
    }
    footer .items .item .desc {
        text-align: center;
        padding-bottom: 4vw;
    }
    footer .btn-bottom {
        font-size: 3vw;
        padding-top: 0vw;
        padding-bottom: 5vw;
    }
    footer .copy-right {
        font-size: 3vw;
        padding: 3vw 3vw 4vw;
    }
    footer .container {
        padding: 0 30px;
    }
}
.footer_nav{
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    display: none;
}
.footer_nav a{
    width: 50%;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    color: #FFF;
    font-size: 3vw;
    padding: 2.5vw 0;
    line-height: 1.2;
    font-family: 'Kiwi Maru', serif;
}
.footer_nav a.is-active{
    background-color: #660000;
}
.footer_nav a{
    background-color: #9E857B;
    border-top: 1px solid #ffff;
}
.footer_nav a:nth-child(odd) {
    border-right: 1px solid #fff;
}
@media(max-width: 768px){
    .footer_nav{
        display: flex;
    }
}
/*
==============================================================
========================== End footer ========================
==============================================================
*/
/*
==============================================================
============================= home ===========================
==============================================================
*/
.home .mainvisual img{
    width: 100%;
}
.home .intro {
    padding-top: 80px;
    position: relative;
}
.home .intro::before{
    content: "";
    position: absolute;
    width: 326px;
    height: 244px;
    background: url(/img_new/minoh-area/intro-bg.png) no-repeat;
    background-size: 100% !important;
    left: 0;
    top: -30px;
}
.home .intro .lead {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.33;
    color: #660000;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    padding-bottom: 80px;
    position: relative;
}
.home .intro .lead::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 145px;
    background: url(/img_new/minoh-area/intro-tl-bg.png) no-repeat;
    background-size: 100% !important;
    top: -50px;
    right: 40px;
}
.home .intro_in {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
}
.home .intro_in a {
    font-size: 2.8rem;
    color: #9E857B;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    width: 230px;
    height: 230px;
    background: url(/img_new/minoh-area/intro_in-bg.png) no-repeat;
    background-size: 100% !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media(max-width:1024px){
    .home .intro .lead {
        font-size: 3rem;
        padding-bottom: 50px;
    }
    .home .intro::before {
        width: 250px;
        height: 186px;
        top: -8px;
    }
    .home .intro {
        padding-top: 55px;
    }
    .home .intro .lead::after {
        width: 80px;
        height: 96px;
        top: -20px;
    }
    .home .intro_in a {
        font-size: 2.4vw;
        width: 22vw;
        height: 22vw;
    }
}
@media(max-width: 750px){
    .home .intro::before {
        width: 20vw;
        height: 135px;
        top: -15%;
    }
    .home .intro::before {
        width: 30vw;
        height: 22.5vw;
        top: -6.5%;
    }
    .home .intro .lead::after {
        width: 13vw;
        height: 16vw;
        top: 0;
        right: 0;
    }
    .home .intro_in {
        flex-wrap: wrap;
        justify-content: center;
    }
    .home .intro_in a {
        font-size: 4.2vw;
        width: 42vw;
        height: 42vw;
        margin: 1.5vw;
    }
    .home .intro .lead {
        font-size: 5vw;
        padding-bottom: 6vw;
    }
}
/* /.intro =================================================== */
.section_title {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
@media(max-width:860px) {
    .section_title {
        max-width: 500px;
    }
}
.areaguide {
    position: relative;
    padding: 45px 0;
    z-index: 10;
}
.areaguide .container {
    max-width: 1050px;
    z-index: 0;
}
.areaguide .inner02 {
    background: url(/img_new/minoh-area/-areaguide-bg.png) no-repeat;
    background-size: cover !important;
    padding-top: 100px;
    position: relative;
}
.areaguide .inner02::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 180px;
    background: url(/img_new/minoh-area/areaguide-bg1.png);
    background-size: 100% !important;
    background-repeat: no-repeat;
    top: -30px;
    right: 0;
}
.areaguide .inner01 {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    display: flex;
    align-items: flex-end;
    margin-top: -58px;
}
.areaguide .inner01 .img {
    width: 53%;
}
.areaguide .inner01 .text {
    /* width: 43%; */
    padding: 0 0 50px 4%;
    line-height: 2;
    font-weight: 300;
    position: relative;
    flex: 1;
}
.areaguide .inner01 .text::before {
    content: "";
    position: absolute;
    width: 104px;
    height: 97px;
    background: url(/img_new/minoh-area/ic-area-guide.png) no-repeat;
    background-size: 100% !important;
    top: -120px;
    right: 14%;
}
.areaguide .inner02 .box:last-of-type {
    margin-bottom: 50px;
}
.areaguide .inner02 .box_in {
    display: flex;
    position: relative;
}
.areaguide .inner02 .box_in .img {
    width: 50%;
}
.areaguide .inner02 .box_in .content {
    flex: 1;
    padding-right: 5%;
    /* padding-right: 7%; */
    /* padding-top: 60px; */
}
.areaguide .inner02 .box_in .heading {
    font-size: 3.6rem;
    font-weight: 600;
    text-align: left;
    color: #13AE67;
    position: relative;
    line-height: 1.33;
    padding-top: 95px;
}
.areaguide .inner02 .box_in .heading.lg {
    font-size: 8.4rem;
    font-weight: 400;
    color: #BBE8D3;
    line-height: 1;
    /* padding-top: 60px; */
    padding-top: 0;
}
.areaguide .inner02 .box_in .number {
    font-size: 10rem;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1.5;
    color: #B6E6D0;
    z-index: -1;
}
.areaguide .inner02 .box_in .text {
    padding: 30px 0;
    line-height: 2;
    font-weight: 400;
    line-height: 2.5;
    /* letter-spacing: 0.075em; */
    letter-spacing: 0.042em;
}
.areaguide .inner02 .box_in .text.lg {
    font-size: 3.6rem;
    line-height: 1.33;
    padding-top: 20px;
}
.areaguide .inner02 .box_in .text.lg p {
    padding-bottom: 20px;
}
.areaguide .inner02 .box_in .text.lg .cl1 {
    color: #13AE67;
}
.areaguide .inner02 .box_in.box1 .content{
    position: relative;
}
.areaguide .inner02 .box_in.box1 .content::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 87px;
    background: url(/img_new/minoh-area/intro-tl-bg.png) no-repeat;
    background-size: 100% !important;
    top: 40px;
    right: 50px;
}
.areaguide .inner02 .box_in.box2 .content {
    /* padding-right: 0; */
    padding-top: 00px;
}
.areaguide .inner02 .box_in.box2 .img {
    padding-right: 7%;
    padding-top: 0;
    margin-top: -15px;
    width: 47%;
}
.home .areaguide .box_content2 {
    position: relative;
}
.home .areaguide .box_content2::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 188px;
    background: url(/img_new/minoh-area/intro-bg.png) no-repeat;
    background-size: 100% !important;
    left: 0;
    top: -60px;
    z-index: -1;
}

.areaguide .inner02 .box_in.box3 .content {
    padding-right: 0;
    position: relative;
    padding-top: 0;
}
.areaguide .inner02 .box_in.box3 .content::after {
    content: "";
    position: absolute;
    width: 142px;
    height: 102px;
    background: url(/img_new/minoh-area/ic-shopping.png) no-repeat;
    background-size: 100%;
    top: 0;
    right: -30px;
    z-index: -1;
}
.areaguide .inner02 .box_in.box3 .img {
    width: 54%;
    padding-top: 80px;
}
.areaguide .inner02 .box_in.box4 .img {
    /* padding: 20px 15px 0; */
    padding: 40px 15px 0;
}
.areaguide .inner02 .box_in.box4 .content {
    padding: 0 15px 0;
}
.areaguide .inner02 .box_in.box4 {
    margin: 0 -15px;
}
.areaguide .inner02 .box_in.box4 .content {
    position: relative;
}
.areaguide .inner02 .box_in.box4 .content::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 87px;
    background: url(/img_new/minoh-area/ic-box4-bg.png) no-repeat;
    background-size: 100% !important;
    top: 0px;
    right: 100px;
}
.areaguide .inner02 .box_in.box7 {
    position: relative;
}
.areaguide .inner02 .box_in.box7::before {
    content: "";
    position: absolute;
    width: 151px;
    height: 109px;
    background: url(/img_new/minoh-area/ic-box7-bg.png) no-repeat;
    background-size: 100% !important;
    top: 25%;
    left: 15%;
}
.areaguide .inner02 .box_in.box4.box5 .content::after,
.areaguide .inner02 .box_in.box4.box6 .content::after {
    display: none;
}
.areaguide .inner02 .box_in .content h4 {
    font-size: 2.4rem;
}
.areaguide .inner02 .box_in.box5 .content {
    margin-top: -60px
}
.areaguide .inner02 .box_in.box5 .text {
    padding-top: 10px;
}
.areaguide .inner02 .box_in.box6 .img {
    margin-top: -25px;
}
.areaguide .inner02 .box_in.box6 .content {
    padding-top:25px;
}
.areaguide .inner02 .box_in.box7 .content {
    width: 50%;
    padding: 25px 0 0 15px;
    flex: unset;
    margin-left: auto;
}
@media(max-width: 1024px){
    .areaguide .inner01 .text::before {
        right: 0;
    }
    .areaguide .inner01 .text {
        padding-bottom: 0;
    }
    .areaguide .inner02 .box_in .content {
        padding-right: 20px;
        font-size: 1.4rem;
    }
    .areaguide .inner02 .box_in .heading {
        font-size: 3rem;
    }
    .areaguide .inner02 .box_in .number {
        font-size: 8rem;
    }
    .areaguide .inner02 .box_in .heading {
        padding-top: 75px;
    }
    .areaguide .inner02 .box_in.box2 .img {
        padding-right: 20px;
    }
    .areaguide .inner02 .box_in .text.lg {
        font-size: 2.5rem;
    }
}
@media(max-width: 860px){
      .areaguide .inner01 {
        align-items: unset;
        margin-top: 0;
    }
    .areaguide .inner01 .text {
        font-size: 1.4rem;
    }
    .areaguide .inner01 .text::before {
        width: 70px;
        height: 66px;
        top: -70px;
    }
}
@media(max-width:750px){
    .areaguide .inner01 {
        flex-wrap: wrap;
    }
    .areaguide .inner01 .img,
    .areaguide .inner01 .text{
        width: 100%;
    }
    .areaguide .inner01 .text {
        padding-left: 0;
        padding-top: 30px;
    }
    .areaguide .inner01 .text::before {
        top: -18px;
    }
    .areaguide .inner02 .box_in {
        flex-wrap: wrap;
    }
    .areaguide .inner02 .box_in .content {
        flex: auto;
    }
    .areaguide .inner02 .box_in .img {
        width: 100%;
    }
    .areaguide .inner02 .box_in.box2 .img {
        width: 100%;
        padding: 0;
        text-align: center;
        margin-top: 0
    }
    .areaguide .inner02 .box_in.box2 img {
        width: 75%;
    }
    .areaguide .inner02 .box_in.box2 {
        flex-direction: column-reverse;
    }
    .home .areaguide .box_content2::before {
        width: 20vw;
        height: 15vw;
        top: 30%;
    }
    .areaguide .inner02 .box_in.box3 .content::after {
        width: 100px;
        height: 72px;
        right: 0;
    }
    .areaguide .inner02 .box_in.box3 .content {
        width: 100%;
        text-align: center
    }
    .areaguide .inner02 .box_in .heading.lg {
        font-size: 6rem;
        text-align: center;
        padding-top: 30px;
    }
    .areaguide .inner02 .box_in.box3 .img {
        width: 100%;
        padding-top: 0;
        padding-right: 2vw;
    }
    .areaguide .inner02 .box_in.box4 {
        padding-top: 30px;
        margin: 0;
    }
    .areaguide .inner02 .box_in.box4 .content {
        padding: 0;
    }
    .areaguide .inner02 .box_in.box4 .img {
        padding: 0;
    }
    .areaguide .inner02 .box_in.box5 {
        flex-direction: column-reverse;
    }
    .areaguide .inner02 .box_in.box5 .content {
        margin-top: 0;
    }
    .areaguide .inner02 .box_in.box7 .content {
        width: 100%;
        padding: 20px 0;
    }
    .areaguide .inner02 .box_in .content h4 {
        font-size: 1.8rem;
    }
    .areaguide .inner02 .box_in.box6 .img {
        margin-top: 0;
    }
    .areaguide .inner02 .box_in.box7::before {
        width: 100px;
        height: 75px;
        top: 14%;
        left: unset;
        right: 10%;
        z-index: -1;
    }
}
/* support =================================================== */
.support {
    padding-bottom: 60px;
    position: relative;
}
.support .container::before,
.support .container::after {
    content: "";
    position: absolute;
    background-size: 100% !important
}
.support .container::before {
    width: 122px;
    height: 115px;
    background: url(/img_new/minoh-area/support-tl-left.png) no-repeat;
    background-size: 100%;
    z-index: -1;
    left: 10%;
    top: 35px;
}
.support .container::after {
    width: 171px;
    height: 124px;
    background: url(/img_new/minoh-area/support-tl-right.png) no-repeat;
    background-size: 100%;
    z-index: -1;
    right: 6%;
    top: 35px;
}
.home .support .container {
    max-width: 1200px;
}
.home .support ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 10px;
}
.home .support ul li {
    width: 250px;
    height: 250px;
    text-align: center;
    margin-bottom: 4%;
}
.home .support ul li .inner {
    font-size: 2rem;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    line-height: 1.65;
    text-align: center;
    width: 100%;
    height: 100%;
    background: url(/img_new/minoh-area/support-dark-bg.png) no-repeat;
    background-size: 100% !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home .support ul li .inner.bg-light{
    background: url(/img_new/minoh-area/support-light-bg.png) no-repeat;
}
.home .support ul li .inner h3 {
    padding-bottom: 12px;
    position: relative;
}
.home .support ul li .inner h3::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 1px;
    background: #fff;
    left: 50%;
    margin-left: -80px;
    bottom: 0;
}
.home .support ul li .inner .txt {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.7;
    padding-top: 12px;
}
@media (max-width:1100px){
    .home .support ul {
        justify-content: center;
    }
    .home .support ul li {
        margin: 1%;
    }
}
/* recommendation ============================================ */
.home .recommendation {
    background: url(/img_new/minoh-area/recommendation-bg.png);
    background-size: 100% 100% !important;
    padding-top: 45px;
    position: relative;
}
.home .recommendation .container::before, 
.home .recommendation .container::after {
    content: "";
    position: absolute;
    background-size: 100% !important;
}
.home .recommendation .container::before {
    width: 145px;
    height: 65px;
    background: url(/img_new/minoh-area/ic-car.png) no-repeat;
    z-index: -1;
    left: 4%;
    top: 80px;
}
.home .recommendation .container::after {
    width: 238px;
    height: 117px;
    background: url(/img_new/minoh-area/ic-building.png) no-repeat;
    z-index: -1;
    right: -20px;
    top: 45px;
}

.home .recommendation .container {
    max-width: 1050px;
}
.home .recommendation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 28px;
}
.home .recommendation ul li {
    width: calc(50% - 30px);
    padding-bottom: 50px;
}
.home .recommendation ul li .inner {
    font-size: 1.6rem;
    line-height: 1.6;
}
.home .recommendation ul li .inner h3 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.5;
    padding-top: 12px;
    padding-bottom: 10px;
}
.home .recommendation ul li .txt {
    padding: 0 ;
    letter-spacing: 0.1em;
    font-weight: 300;
}
.home .recommendation .festivals {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 60px;
}
.home .recommendation .festivals .txt-box {
    width: 47.5%;
    letter-spacing: 0.1em;
    line-height: 1.5;
    padding-right: 35px;
}
.home .recommendation .festivals .img-box {
    flex: 1;
    margin-right: -3%;
    padding-left: 35px;
}
.home .recommendation .festivals .tl-box {
    text-align: center;
    letter-spacing: 0;
}
.home .recommendation .festivals .tl-box span {
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0 20px;
    position: relative;
    font-weight: 600;
}
.home .recommendation .festivals .tl-box span::before,
.home .recommendation .festivals .tl-box span::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 30px;
    background: #000;
    top: 50%;
    margin-top: -15px;
}
.home .recommendation .festivals .tl-box span::before {
    transform: rotate(-25deg);
    left: 0;
}
.home .recommendation .festivals .tl-box span::after {
    transform: rotate(25deg);
    right: 0;
}
.home .recommendation .festivals .tl-box h3 {
    font-size: 3.6rem;
    font-weight: 600;
    color: #13AE67;
    padding-bottom: 5px;
}
.home img {
    width: 100%;
}
.home .recommendation .festivals .txt-box .img {
    padding-top: 30px;
}
.home .recommendation .btn-box {
    padding-top: 135px;
    padding-bottom: 90px;
}
@media(max-width:1150px) {
    .home .recommendation .container::after {
        width: 182px;
        height: 90px;
        right: 0;
        top: 55px;
    }
    .home .recommendation .container::before {
        width: 100px;
        height: 47px;
        left: 6%;
        top: 80px;
    }
}
@media(max-width:960px) {
    .section_title {
        max-width: 450px;
    }
    .home .recommendation ul li {
        width: calc(50% - 15px);
        padding-bottom: 30px;
    }
}
@media(max-width:750px) {
    .home .recommendation .container::before, 
    .home .recommendation .container::after {
        display: none;
    }
    .home .recommendation ul li {
        width: 100%;
    }
    .home .recommendation .festivals .img-box {
        flex: auto;
        padding: 0;
        margin: 0;
    }
    .home .recommendation .festivals .txt-box {
        width: 100%;
        padding: 0;
    }
    .home .recommendation .btn {
        font-size: 1.6rem;
        padding: 20px 10px;
    }
    .home .recommendation .btn-box {
        padding-top: 50px;
        padding-bottom: 40px;
    }
    .home .recommendation .festivals {
        padding-top: 40px;
    }
}
/* house-building ============================================ */
.home .house-building {
    padding-top: 105px;
    padding-bottom: 160px;
    position: relative;
}
.home .house-building .container::before,
.home .house-building .container::after {
    content: "";
    position: absolute;
    background-size: 100% !important;
}
.home .house-building .container::after {
    width: 185px;
    height: 100px;
    background: url(/img_new/minoh-area/ic-building-right.png) no-repeat;
    z-index: -1;
    right: 6%;
    top: 25px;
}
.home .house-building .container::before {
    width: 180px;
    height: 105px;
    background: url(/img_new/minoh-area/ic-building-left.png) no-repeat;
    z-index: -1;
    left: 6%;
    top: 25px;
}
.home .house-building .txt-box h3 {
    font-size: 3.6rem;
    font-weight: 600;
    text-align: center;
    color: #660000;
    line-height: 1.2;
    padding-top: 5px;
    padding-bottom: 150px;
}
.home .house-building .txt-box h3 .sm {
    font-size: 2.4rem;
}
.home .house-building .inner_box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0 3%;
}
.home .house-building .inner_box .txt {
    width: 47%;
    text-align: center;
}
.home .house-building .inner_box .txt h3 {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 1.5;
}
.home .house-building .inner_box .img {
    flex: 1;    
}
.home .house-building .inner_box.box1 .img {
    padding-left: 80px;
}
.home .house-building .inner_box.box1 {
    padding-top: 85px;
}
.home .house-building .inner_box.box1 .txt {
    width: 47%;
    padding-right: 0;
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.home .house-building .inner_box.box1 .txt h3 {
    padding-bottom: 30px;
}
.home .house-building .inner_box.box2 {
    padding-top: 100px;
}
.home .house-building .inner_box.box2 .txt {
    text-align: left;
    font-size: 1.6rem;
    padding-left: 0;
    width: 50%;
}
.home .house-building .inner_box.box2 .img {
    padding-right: 80px;
}
@media(max-width: 960px){
    .home .house-building .container::before {
        width: 120px;
        height: 71px;
        top: 45px;
    }
    .home .house-building .container::after {
        width: 122px;
        height: 66px;
        right: 6%;
        top: 45px;
    }
    .home .house-building .inner_box.box1 .img {
        padding-left: 30px;
    }
    .home .house-building .inner_box.box2 .img {
        padding-right: 30px;
    }
}
@media(max-width:750px){
    .home .house-building {
        padding-top: 50px;
    }
    .home .house-building .container::before,
    .home .house-building .container::after {
        display: none;
    }
    .home .house-building .txt-box h3 {
        font-size: 2.5rem;
        padding-top: 20px;
        padding-bottom: 50px;
    }
    .home .house-building .inner_box .img {
        flex: auto;
    }
    .home .house-building .inner_box .txt {
        width: 100%;
        padding-top: 50px;
    }
    .home .house-building .inner_box.box1 {
        padding-top: 3px;
    }
    .home .house-building .inner_box.box1 .txt {
        width: 100%;
    }
    .home .house-building .inner_box.box1 .img {
        padding-left: 0;
        padding-top: 20px;
    }
    .home .house-building .inner_box.box2 {
        padding-top: 50px;
        flex-direction: column-reverse;
    }
    .home .house-building .inner_box.box2 .txt {
        width: 100%;
        padding-top: 0;
        padding-bottom: 15px;
    }
    .home .house-building .inner_box.box2 .img {
        padding-right: 0;
    }
    .home .house-building {
        padding-bottom: 80px;
    }
    .home .house-building .inner_box.box2 .txt {
        font-size: 1.4rem;
    }
    .home .house-building .inner_box .txt h3 {
        font-size: 1.8rem;
        padding-bottom: 20px;
    }
}
/* special-column ============================================ */
.home .special-column {
    background: url(/img_new/minoh-area/spacial-bg.png) no-repeat;
    background-size: 100% 100% !important;
    padding-top: 70px;
}
.special-column .container {
    max-width: 1040px;
}
.special-column .inner-box {
    background: url(/img_new/minoh-area/special-column-inner-bg.png) no-repeat;
    padding: 50px 65px 20px;
    background-size: 100% 100% !important;
}
.special-column .inner-box .box {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-top: 35px;
    padding-bottom: 90px;
}
.special-column .inner-box .box .txt {
    width: 50%;
    padding: 0 15px;
    color: #660000;
    font-weight: 300;
    letter-spacing: 0.07em;
    line-height: 1.5;
}
.special-column .inner-box .box .img {
    flex: 1;
    padding: 0 15px;
}
.special-column .inner-box .box h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    color: #DB0000;
    padding-bottom: 25px;
}
.special-column .slider-box {
    padding-top: 100px;
    max-width: 780px;
    margin: 0 auto;
    padding-bottom: 60px;
}
.special-column .slider-box h3 {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: 45px;
    font-weight: 600;
}
.special-column .slider-box ul {
    display: flex;
    flex-wrap: wrap;
}
.special-column .slider-box ul li {
    padding: 0 20px;
}
.special-column .slider-box ul li a {
    display: block;
    padding-top: 72%;
    position: relative;
}
.special-column .slider-box ul li a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/* model ============================================== */
.model .container {
    max-width: 1040px;
}
.model .txt-box {
    display: flex;
    align-items: flex-end;
    padding-top: 50px;
}
.model .txt-box .lg{
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
}
.model .txt-box .sm {
    width: 45%;
}
.model .txt-box .lg {
    font-size: 2.4rem;
    font-weight: 600;
}
.model .txt-box .lg h2 {
    font-size: 8.4rem;
    color: #E3DCD9;
    font-weight: 400;
    line-height: 1;
}
.model .txt-box .lg h3 {
    font-size: 3.6rem;
    line-height: 1;
    font-weight: 600;
    color: #9E857B;
    padding-bottom: 25px;
}
.model .txt-box .sm {
    letter-spacing: 0.1em;
    line-height: 1.625;
    font-weight: 300;
}
.model .txt-box .sm .lg {
    font-size: 1.8rem;
    line-height: 1.44;
}
.model .img-box {
    padding-top: 70px;
}
.model .items {
    padding-top: 180px;
}
.model .item {
    display: flex;
    padding-bottom: 35px;
}
.model .item .txt {
    flex: 1;
    padding-right: 10%;
    line-height: 1.5;
    letter-spacing: 0.08em;
    font-weight: 300;
}
.model .item .txt h3 {
    font-size: 2.4rem;
    padding-bottom: 40px;
    line-height: 1.5
}
.model .item .img {
    width: 33.33%;
}
.model .inner-box.box2 .txt-box .lg {
    width: 100%;
}
.model .slider-box ul {
    margin: 40px -20px 0;
}
.model .slider-box ul li {
    padding: 0 20px;
}
.model .slider-box ul li a {
    display: block;
    padding-top: 72%;
    position: relative;
}
.model .slider-box ul li a img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.special-column .container{
    position: relative;
}
.special-column .container::before,
.special-column .inner-box::after {
    content: "";
    position: absolute;
    background-size: 100% !important;
    z-index: 1;
}
.special-column .container::before {
    width: 357px;
    height: 306px;
    background: url(/img_new/minoh-area/special-bg-top.png) no-repeat;
    top: -40px;
    right: 15px;
}
.special-column .inner-box {
    position: relative;
}
.special-column .inner-box::after {
    width: 302px;
    height: 211px;
    background: url(/img_new/minoh-area/special-bg-bottom.png) no-repeat;
    bottom: -50px;
    left: -55px;
}
@media(max-width:1100px){
    .special-column .inner-box::after {
        left: -25px;
        bottom: -30px;
        width: 200px;
        height: 140px;
    }
}
@media(max-width:960px) {
    .model .txt-box .lg {
        flex: auto;
        padding-right: 0;
    }
    .model .txt-box {
        align-items: unset;
        flex-wrap: wrap;
    }
    .model .txt-box .sm {
        width: 100%;
        padding-top: 15px;
    }
    .model .slider-box ul li {
        padding: 0 10px
    }
}
@media(max-width:860px){
    .special-column .inner-box {
        padding: 50px 35px 0px;
    }
    .special-column .inner-box .box h3 {
        font-size: 2rem;
    }
    .model .item .txt {
        padding-right: 5%;
    }
}
@media(max-width:750px) {
    .special-column .inner-box .box .txt {
        width: 100%;
    }
    .special-column .inner-box .box {
        padding-bottom:20px;
        padding-top: 0;
    }
    .special-column .inner-box .box .txt {
        padding-top: 30px;
        padding-bottom: 20px;
    }
    .special-column .inner-box {
        background: url(/img_new/minoh-area/special-column-inner-bg.png) no-repeat;
        padding: 50px 20px 80px;
        background-size: cover !important;
        background-position: center;
    }
    .special-column .inner-box .box h3 {
        font-size: 1.8rem;
    }
    .special-column .slider-box {
        padding-top: 50px;
    }
    .special-column .slider-box h3 {
        font-size: 2rem;
        padding-bottom: 30px;
    }
    .model .txt-box .lg {
        font-size: 2rem;
    }
    .model .txt-box .lg h3 {
        font-size: 2.5rem;
    }
    .model .img-box {
        padding-top: 30px;
    }
    .model .item .txt {
        padding-right: 0;
        flex: auto;
    }
    .model .item .img {
        width: 100%;
    }
    .model .item {
        flex-wrap: wrap;
    }
    .model .items {
        padding-top: 60px;
    }
    .model .item .txt h3 {
        padding-bottom: 20px;
    }
    .model .item .txt {
        padding-bottom: 20px;
    }
    .model .item .txt {
        font-size: 1.4rem;
    }
    .model .item .txt h3 {
        font-size: 2rem;
    }
    .model .slider-box ul li {
        padding: 0 8px;
    }
    .model .slider-box ul {
        margin: 25px -8px 0;
    }
    .slick-prev, .slick-next {
        margin-top: -12px;
        width: 24px;
        height: 24px;
    }
    .slick-prev:before {
        left: 9px;
    }
    .slick-next:before, .slick-prev:before {
        border-width: 0 2px 2px 0px;
        width: 8px;
        height: 8px;
    }
    .slick-next:before {
        left: 8px;
    }
    .model .item:last-child {
        padding-bottom: 0;
    }
    .home .special-column {
        background-size: cover !important;
    }
    .special-column .inner-box {
        background: url(/img_new/minoh-area/special-bg.png) no-repeat;
        background-size: cover !important;
        position: relative;
        padding: 50px 35px 80px;
    }
    .special-column .inner-box::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        background: #fff;
        opacity: 0.5;
    }
    .special-column .container::before {
        width: 200px;
        height: 172px;
        top: -30px;
        right: 6px;
    }
    .special-column .inner-box::after {
        left: -15px;
        bottom: -20px;
        width: 180px;
        height: 124px;
    }
}
/* information ================================================= */
.home .information {
    padding-top: 85px;
    padding-bottom: 55px;
}
.home .information .item {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 65px;
    padding-top: 15px;
}
.home .information .item .img {
    width: 50%;
    padding-right: 50px;
}
.home .information .item .txt {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    line-height: 1.75;
    font-weight: 600;
}
.home .information .item .txt h3 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.1;
    padding-bottom: 20px;
}
.home .information .item .txt h3 .lg {
    font-size: 3.6rem;
}
.home .information .item .txt .btn-box {
    text-align: left;
    line-height: 1;
}
.home .information .item .txt .btn {
    font-size: 1.6rem;
    background: #9E857B;
    border-radius: 0;
    padding: 20px;
    max-width: 320px;
    margin-left: 0;
}
.home .information .item .txt .btn:hover {
    background: #660000;
}
.home .information .txt-bottom {
    text-align: center;
    font-size: 3.6rem;
    line-height: 1.6;
    font-weight: 600;
}
@media(max-width:960px){
    .home .information .item .img {
        padding-right: 15px;
    }
    .home .information .item .txt{
        padding-left: 15px;
    }
}
@media(max-width:750px) {
    .home .information .item .img {
        padding-right: 0;
        width: 100%;
    }
    .home .information .item .txt{
        padding-left: 0;
        flex: auto;
        padding-top: 20px;
        display: block;
        text-align: center;
    }
    .home .information .item .txt .btn-box {
        padding-top: 20px;
        text-align: center;
    }
    .home .information .txt-bottom {
        font-size: 5vw;
    }
    .home .information .item {
        padding-bottom: 35px;
    }
    .home .information {
        padding-top: 50px;
    }
    .home .information {
        border-width: 1px;
    }
}
/*
==============================================================
=========================== End home =========================
==============================================================
*/

.areaguide .inner02 {
    background: url(/img_new/minoh-area/-areaguide-bg.png) no-repeat;
    background-size: 100% 100% !important;
    padding-bottom: 30px;
}
.home .areaguide .box_content3 {
    position: relative;
}
.home .areaguide .box_content3::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 180px;
    background: url(/img_new/minoh-area/intro-bg2.png) no-repeat;
    background-size: 100% !important;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.home .house-building .txt-box h3 {
    padding: 70px 0 80px;
}

.information .container {
    max-width: 1040px;
}

.special-column .container::after {
    content: "";
    position: absolute;
    background-size: 100% !important;
    z-index: 1;
    max-width: 120px;
    width: 13%;
    height: 180px;
    background: url(/img_new/minoh-area/special-img.png) no-repeat;
    top: 3.7%;
    left: 10vw;
}

.model .item .txt h3 {
    font-size:min(2.2vw,24px);
}

.home .information .item .txt h3 {
    position: relative;
}
.home .information .item .txt h3 .bg-txt {
    position: absolute;
    top: 0;
    left: 56%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    font-weight: 400;
    font-size: min(7vw,84px);
    color: #E3DCD9;
    line-height: 1;
}
.home .information .txt-bottom {
    padding-top: 75px;
}

@media(max-width:750px) {
    .areaguide .inner02::after {
        width: 130px;
        height: 115px;
        top: -20px;
    }
    .areaguide .inner02 .box_in.box1 .content::after {
        width: 49px;
        height: 65px;
        top: 70px;
        right: 20px;
    }
    .areaguide .inner02 .box_in .content {
        padding-right: 0;
        font-size: 1.4rem;
    }
    .home .areaguide .box_content2::before {
        width: 35vw;
        height: 25vw;
        top: 55%;
    }
    .areaguide .inner02 .box_in.box4 .content::after {
        width: 49px;
        height: 65px;
        top: 0px;
        right: 20px;
    }
    .home .areaguide .box_content3::after {
        width: 35vw;
        height: 26vw;
        bottom: -15%;
        z-index: -1;
    }
    .areaguide .inner02 .box_in.box7::before {
        top: 8%;
        right: -12%;
    }
    .support .section_title {
        padding-top: 40px;
    }
    .support .container::before {
        width: 18vw;
        height: 18vw;
        left: 2%;
        top: -.5%;
    }
    .support .container::after {
        width: 28vw;
        height: 23vw;
        background: url(/img_new/minoh-area/support-tl-right.png) no-repeat;
        background-size: 100%;
        z-index: -1;
        right: 6%;
        top: -1%;
    }
    .home .house-building .txt-box h3 {
        padding: 20px 0 40px;
    }

    .areaguide .inner01 .text {
        flex: unset;
    }

    .special-column .container::after {
        max-width: 120px;
        width: 13%;
        height: 180px;
        top: 2%;
        left: 10vw;
    }
    .model .item .txt h3 {
        font-size:2rem;
    }
    .home .information .item2 .txt h3 {
        padding-top: 55px;
    }
    .home .information .item .txt h3 .bg-txt {
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        font-size: 5.3rem;
    }
    .home .information .txt-bottom {
        padding-top: 45px;
    }
    #pagetop {
        bottom: 75px;
    }
}