/*---------- 全体共通 ----------*/
html {
    scroll-behavior: smooth;
}

body {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
    color: #454545;
    line-height: 1.8;
    margin-top: 65px;
}

.h2_title{
    width: 90%;
    margin: 30px auto;
    background: #a0dbf2;
    color: #ffffff;
    font-size: 200%;
    text-align: center;
    padding-top: 3px;
}


/*---------- header ----------*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 100;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, .1);
}

.header_width {
    max-width: 1200px;
    margin: 0px auto;
}

.header_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.logo{
    padding-left: 15px;
}

.nav .nav_list{
    display: flex;
}

.nav .nav_list li a,
.hb .hb_list li a {
    text-decoration: none;
    padding: 17px 15px;
    color: #454545;
}

.nav .nav_list li a:hover {
    color: #a0a0a0;
}

.hb{
    display: none;
}

/* 中デバイス（タブレット, 934px 未満）*/
@media (max-width: 934px) {
    .header_wrap {
        display: block;
    }

    .logo{
        width: 210px;
    }

    .nav{
        display: none;
    }

    .hb{
        display: block;
    }

    .hb .hb_btn{
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        width: 70px;
        height: 70px;
        cursor: pointer;
        text-align: center;
        background: #000000;
    }

    .hb .hb_btn .bar{
        display: block;
        position: absolute;
        width: 40px;
        height: 2px;
        left: 0;
        right: 0;
        margin: auto;
        background: #ffffff;
        -webkit-transition: .3s ease-in-out;
        -moz-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }

    .hb .hb_btn .bar:nth-child(1){
        top: 20px;
    }

    .hb .hb_btn .bar:nth-child(2){
        top: 50%;
    }

    .hb .hb_btn .bar:nth-child(3){
        bottom: 20px;
    }


    /*ハンバーガーメニューを開いたときの装飾*/
    .hb .hb_btn.active .bar{
        background: #ffffff;
    }

    .hb .hb_btn.active .bar:nth-child(1){
        top: 34px;
        transform: rotate(45deg);
        transition: .3s;
    }

    .hb .hb_btn.active .bar:nth-child(2){
        opacity: 0;
        transition: .3s;
    }

    .hb .hb_btn.active .bar:nth-child(3){
        bottom: 34px;
        transform: rotate(-45deg);
        transition: .3s;
    }

    .hb .hb_list{
        display: none;
    }

    .hb .hb_list.active{
        display: block;
        position: fixed;
        top  : 0;
        right : 0;
        width: 100vw;
        height: 100vh;
        background: #efefef;
        z-index: 99;
        box-shadow: 0 0 5px 0.5px rgba(0, 0, 0, 0.08);
        overflow-y: scroll;
        text-align: center;
        padding: 50px 0;
    }

    .hb .hb_list.active li{
        padding-right: 0;
    }

    .hb .hb_list.active li a{
        padding: 0;
        display: inline-block;
        margin: 15px 0;
        text-decoration: none;
        position: relative;
        z-index: 0;
    }

    body.scroll_stop{
        overflow: hidden;
    }
}


/*---------- kv ----------*/
.kv{
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-container{
    position: relative;
}

.swiper-container .swiper-wrapper .swiper-slide img{
    width: 100%;
}

.swiper-container .swiper-button-prev,
.swiper-container .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    opacity: 0.7;
    border-radius: 100%;
}

.swiper-button-prev::after,
.swiper-button-next::after{
    font-size: 25px;
}

.swiper-pagination-fraction, .swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal{
    position: absolute;
    bottom: 0;
}

/* 極小デバイス（縦向きモバイル, 576px 未満）*/
@media (max-width: 575px) {
    .swiper-container .swiper-button-prev,
    .swiper-container .swiper-button-next {
        width: 30px;
        height: 30px;
        background: #ffffff;
        opacity: 0.7;
        border-radius: 100%;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after{
        font-size: 15px;
    }
}



/*---------- intro ----------*/
.intro {
    background: #efefef;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.text{
    width: 80%;
    margin: 0 auto 40px auto;
    text-align: center;
}

.catch{
    color: #1d2088;
    font-size: 300%;
    padding: 15px 0;
}

.word{
    text-align: justify;
}

.intro_container{
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.intro_box {
    width: 32%;
    padding-bottom: 40px;
}

.intro_box h3 img {
    width: 100%;
    padding: 4px;
    border: 1px solid #3f3b3a;
    margin-bottom: 7px;
}

.intro_box p {
    text-decoration: underline;
    text-align: justify;
}

/* 中デバイス（タブレット, 934px 未満）*/
@media (max-width: 934px) {
    .text{
        width: 90%;
    }
    .catch{
        font-size: 200%;
    }

    .word{
        text-align: left;
    }

    .intro_box {
        width: 48%;
        padding-bottom: 40px;
    }
}

/* 小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767px) {
    .intro_container{
        display: block;
    }

    .intro_box {
        width: 100%;
        padding-bottom: 40px;
    }
}


/*---------- saleing ----------*/
.saleing{
    background: #ffffff;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.saleing_container{
    width: 90%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px 10px;
}

.saleing_box {
    background: #ffffff;
    border: 1px solid #cccccc;
    text-align: center;
}

.saleing_box img {
    max-width: 100%;
}

.saleing_box h3{
    font-size: 150%;
    padding: 10px 0;
}

.saleing_box .location {
    font-size: 87.5%;
}

.saleing_box .date {
    font-size: 75%;
    padding: 5px 0 10px 0;
}

.list{
    display: block;
    width: 90%;
    margin: 25px auto 30px auto;
}

.list a {
    background: #eb6100;
    color: #ffffff;
    padding: 3px 10px;
}

.list a:hover{
    background: #ff8c00;
    transition: .3s;
}

/* 中デバイス（タブレット, 934px 未満）*/
@media (max-width: 934px) {
    .saleing_container{
        grid-template-columns: 1fr 1fr;
        gap: 25px 10px;
    }
}

/* 極小デバイス（縦向きモバイル, 576px 未満）*/
@media (max-width: 575px) {
    .saleing_container{
        grid-template-columns: 1fr;
        gap: 25px 10px;
    }
}


/*---------- info ----------*/
.info {
    background: #efefef;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.info_container {
    width: 80%;
    margin: 0 auto 30px auto;
}

.info_box {
    display: flex;
    flex-wrap: wrap;
    padding: 10px 0;
    border-bottom: 1px dotted #333333;
}

.info_container dt {
    width: 130px;
}

.info_container dd {
    width: calc( 100% - 130px);
    text-align: center;
}

/* 小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767px) {
    .info_box {
        display: block;
    }

    .info_container dt,
    .info_container dd{
        width: 100%;
    }

    .info_container dd{
        text-align: left;
    }
}

/*---------- contact ----------*/
.contact{
    background: #ffffff;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.contact_container{
    max-width: 800px;
    margin: 30px auto;
}

.flow{
    display: flex;
    justify-content: space-between;
}

.flow .step1{
    background-image: url(../images/form_menu.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow .step2{
    background-image: url(../images/form_menu2.png);
}

.flow .step3{
    background-image: url(../images/form_menu3.png);
}

.flow .step2,
.flow .step3{
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_wrap{
    max-width: 650px;
    margin: 20px auto;
    border: 1px solid #cccccc;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.form{
    margin: 35px 0;
}

.form .center{
    text-align: center;
    padding-bottom: 35px;
}

.form .form_container{
    width: 90%;
    margin: 0 auto;
}

.form .form_container .form_box{
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #cccccc;
}

.form .form_container .form_box:last-child{
    border-bottom: 1px solid #cccccc;
}

.form .form_container .form_box .item{
    width: 35%;
    text-align: right;
    padding-right: 25px;
}

.form .form_container .form_box .space{
    width: 65%;
    text-align: left;
}

.form .form_container .form_box .color{
    display: block;
    color: #8cc63f;
    font-size: 85%;
}

.form .form_container .form_box .error_msg{
    font-size: 85%;
    color: red;
}

.form .form_container .form_box #last_name,
.form .form_container .form_box #first_name,
.form .form_container .form_box #last_name_reading,
.form .form_container .form_box #first_name_reading {
    width: 40%;
    max-width: 90%;
}

.form .form_container .form_box input {
    height: 30px;
    padding: 2px 5px;
    margin: 0 2px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
}

.form .form_container .form_box textarea{
    width: 90%;
    height: 200px;
    padding: 2px 5px;
    margin: 0 2px;
    border: 1px solid #cccccc;
    border-radius: 3px;
    background: #fafafa;
}

.policy{
    text-align: center;
    padding: 20px 0;
}

.policy button{
    background: none;
    border: none;
}

.policy button:hover{
    filter: brightness(110%);
    transition: .3s;
}

/* 小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767px) {
    .flow{
        display: block;
    }

    .flow .step1,
    .flow .step2,
    .flow .step3{
        margin: 0 auto;
        width: 240px;
    }
}

/* 極小デバイス（縦向きモバイル, 576px 未満）*/
@media (max-width: 575px) {
    .form .form_container .form_box{
        display: block;
    }

    .form .form_container .form_box .item{
        width: 100%;
        text-align: left;
    }

    .form .form_container .form_box .space{
        width: 100%;
        text-align: left;
    }

    .policy img{
        max-width: 100%;
        margin: 0 auto;
    }
}


/*---------- company ----------*/
.company{
    background: #efefef;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.company_container{
    width: 90%;
    margin: 0 auto 30px auto;
    display: flex;
}

.company_profile{
    width: 40%;
    padding-right: 25px;
}

.company_profile li{
    text-align: center;
    border-top: 1px dashed #554b1e;
    padding: 5px 0;
}

.company_profile li:last-child{
    border-bottom: 1px dashed #554b1e;
}

.company_profile li p{
    padding: 5px 0;
}

.company_profile li .row{
    display: block;
}

.company_profile li .tel,
.company_profile li .fax{
    display: inline-block;
    width: 150px;
    text-align: center;
}

.map{
    width: 60%;
}

/* 中デバイス（タブレット, 934px 未満）*/
@media (max-width: 934px) {
    .company_container{
        display: block;
    }

    .company_profile{
        width: 100%;
        font-size: 87.5%;
        padding-right: 0;
    }

    .map{
        width: 100%;
        margin-top: 20px;
    }

    .company_profile li .tel,
    .company_profile li .fax{
        width: 120px;
    }
}


/*---------- footer ----------*/
.footer{
    padding: 40px 15px;
    text-align: center;
}

.footer_nav{
    display: flex;
    justify-content: center;
}

.footer_nav li{
    border-right: 1px solid #454545;
    padding: 0 10px;
    line-height: 1;
}

.footer_nav li:last-child{
    border-right: none;
}

.footer_nav li a{
    text-decoration: none;
    color: #454545;
    font-size: 80%;
}

.footer_nav li a:hover{
    color: #a0a0a0;
}

.copy{
    font-size: 80%;
    padding-top: 20px;
}

/* 極小デバイス（縦向きモバイル, 576px 未満）*/
@media (max-width: 575px) {
    .footer{
        padding: 20px 15px;
    }
    .footer_nav{
        display: none;
    }

    .copy{
        padding: 0;
    }
}



/* 販売実績 一覧*/
/*---------- saleingList ----------*/
.saleingList{
    background: #efefef;
    border: 2px solid #a0dbf2;
    padding: 15px 15px 30px 15px;
}

.saleingList_year{
    padding-bottom: 10px;
}


/*プライバシーポリシー*/
/*---------- privacypolicy ----------*/
.privacypolicy {
    background: #f5f5e6;
}

.privacypolicy_wrap {
    width: 70%;
    margin: 0 auto;
    padding: 70px 0 60px 0;
}

.privacypolicy_title {
    font-size: 150%;
    font-weight: normal;
    text-align: center;
    border-bottom: 3px solid #e6e6d2;
    margin-bottom: 20px;
}

.privacypolicy_container {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 7px;
}

.privacypolicy_container .inner {
    width: 80%;
    margin: 35px auto;
}

.note {
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
}

.privacypolicy_box dt{
    border-bottom: 1px dotted #cccccc;
    margin: 15px 0 10px 0;
}

.privacypolicy_contact{
    padding-top: 40px;
}

/* 中デバイス（タブレット, 934px 未満）*/
@media (max-width: 934px) {
    .privacypolicy_wrap {
        width: 90%;
    }
}



/*お問い合わせ確認画面*/
/*---------- contact_confirm ----------*/
.contact_confirm{
    background: #ffffff;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.contact_confirm_container{
    max-width: 800px;
    margin: 30px auto;
}

.flow_2{
    display: flex;
    justify-content: space-between;
}

.flow_2 .step1{
    background-image: url(../images/form_menu2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_2 .step2{
    background-image: url(../images/form_menu.png);
}

.flow_2 .step3{
    background-image: url(../images/form_menu3.png);
}

.flow_2 .step2,
.flow_2 .step3{
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_confirm_wrap{
    max-width: 650px;
    margin: 20px auto;
    border: 1px solid #cccccc;
    border-radius: 7px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.submit {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.submit .return_btn{
    width: 130px;
    text-align: center;
    text-decoration: none;
    color: #454545;
    border: 1px solid #454545;
    border-radius: 5px;
    padding: 7px 0;
}

.submit .return_btn:hover{
    background: #efefef;
}

.submit .submit_btn{
    width: 130px;
    font-size: 100%;
    color: #ffffff;
    background: #8cc63f;
    border: none;
    border-radius: 5px;
    margin-left: 20px;
}

.submit .submit_btn:hover{
    background: #7cb433;
}

/* 小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767px) {
    .flow_2{
        display: block;
    }

    .flow_2 .step1,
    .flow_2 .step2,
    .flow_2 .step3{
        margin: 0 auto;
        width: 240px;
    }
}

/*お問い合わせ完了画面*/
/*---------- contact_thanks ----------*/
.contact_thanks{
    background: #ffffff;
    border: 2px solid #a0dbf2;
    padding: 30px 15px;
}

.contact_thanks_container{
    max-width: 800px;
    margin: 30px auto;
}

.flow_3{
    display: flex;
    justify-content: space-between;
}

.flow_3 .step1{
    background-image: url(../images/form_menu2.png);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.flow_3 .step2{
    background-image: url(../images/form_menu2.png);
}

.flow_3 .step3{
    background-image: url(../images/form_menu4.png);
}

.flow_3 .step2,
.flow_3 .step3{
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 100% auto;
    width: calc(33% - 5px);
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.thanks_msg{
    text-align: center;
    padding-top: 60px;
}

/* 小デバイス（横向きモバイル, 768px 未満）*/
@media (max-width: 767px) {
    .flow_3{
        display: block;
    }

    .flow_3 .step1,
    .flow_3 .step2,
    .flow_3 .step3{
        margin: 0 auto;
        width: 240px;
    }
}

