@charset "shift_jis";

/*************************************************/
/* 制作を始める時にはtop.css、header.css、h_menu.cssの中身をを削除してください */
/* ナビメニューのプルダウンを使用したい場合にはh_menu.cssの記述を参考にしてみてください。 */
/* この下にあるコメントアウトを活用してください！ */
/* 「assessment」は売却査定フォームのデフォルトデザイン用cssです */
/*************************************************/


/* header */
#new_head_wrap {
.new_header_wrap {
    background: #fff;
    width: 98%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.head_logo {
    width: clamp(200px, 29vw, 385px);
    max-width: 385px;
    margin-top: 3px;
    & a img {
        width: 100%;
    }

}
.head_menu_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0px clamp(8px, 1.5vw, 20px);
    font-family: "Noto Serif JP", serif, "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Times New Roman", serif;
}
.head_tel {
    display: flex;
    gap: 0px 15px;
    margin-bottom: 18px;
    & p {
        font-size: clamp(9px, 0.8vw, 13px);
        line-height: 14px;
        font-weight :500;
    }
}
.head_store {
    display: flex;
    align-items: center;
    & span {
        color: #333;
        display: inline-block;
        padding: 1px 5px;
        border: solid 1px #333;
        border-radius: 3px;
        margin: 0 3px 0 0;
        font-size: clamp(10px, 0.9vw, 12px);
        font-weight: 600;
    }
    & a {
        color: #333;
        font-size: clamp(14px, 1.4vw, 20px);
        font-weight: 600;
        & i {
            margin: 0 6px;
            color: #489356;
        }
    }
    
}
.head_link ul {
    display: flex;
    gap: 0 clamp(8px, 1.5vw, 20px);
    justify-content: space-between;
    & li a {
        color: #333;
        font-size: clamp(13px, 1.2vw, 17px);
        font-weight: 600;
        position: relative;
        padding-right: 15px !important;
        &::after {
            content: "";
            position: absolute;
            top: clamp(20px, 1.7vw, 23px);
            right: -3px;
            width: 5px;
            height: 5px;
            border-right: 2px solid #009348;
            border-bottom: 2px solid #009348;
            transform: translate(-50%, -50%) rotate(45deg);
        }
        &::before {
            position: absolute;
            left: 0;
            content: '';
            width: 100%;
            height: 1px;
            background: #3c3c3c;
            bottom: 10px;
            transform: scale(0, 1);
            transform-origin: center;
            transition: transform 0.3s;
        }
        &:hover::before {
            transform: scale(1, 1);
        }
    }
}
.head_menu_ri ul {
    display: flex;
    & li a {
        width: clamp(70px, 6vw, 110px);
        height: clamp(70px, 6vw, 110px);
        background: #009348;
        display: flex;
        padding-top: clamp(12px, 1.5vw, 27px);
        box-sizing: border-box;
        gap: 10px 0;
        color: #fff;
        flex-direction: column;
        align-items: center;
        font-size: clamp(10px, 0.9vw, 14px);
        & img {
            width: 28%;
        }
        &:hover {
            background: #006531;
        }
    }
    & li:nth-child(2) a {
        background: #2c4a73;
        &:hover {
            background: #183155;
        }
    }
}


.head_menu_contents {
    transition: all .1s ease-in;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    width: 70%;
    top: clamp(80px, 5.6vw, 100px);
    right: -1%;
    margin: 0 auto;
    position: absolute;
    z-index: 600;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0 0 10px rgb(0, 0, 0, .1);
}
.fh_menu_sub {
    background: #fff;
    border-radius: 10px;
    & p {
        font-size: min(1.9vw, 28px);
        line-height: 1;
        margin: 0 0 15px 0;
        padding-bottom: 15px;
        border-bottom: solid 1px #009348;
    }
    & ul {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
        justify-content: flex-start;
        & li {
            width: 28%;
            padding-left: 30px;
            position: relative;
            &::before {
                content: "";
                width: 20px;
                height: 20px;
                background-image: url(../img/top/arrow_btn.webp);
                background-size: cover;
                background-repeat: no-repeat;
                position: absolute;
                top: 0px;
                left: 0;
            }
        }
        & li a {
            color: #333 !important;
            font-size: clamp(10px, 1.06vw, 14px);
            font-weight: 500;
            font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        }
        & li a:after {
            display: none;
        }
        & li a::before {
            position: absolute;
            left: 0;
            content: '';
            width: 100%;
            height: 1px;
            background: #3c3c3c !important;
            bottom: 10px;
            transform: scale(0, 1);
            transform-origin: center;
            transition: transform 0.3s;
        }
        & li a:hover::before {
            transform: scale(1, 1);
        }
    }
}
.menu_bot ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    margin: 15px 0 10px 0;
}

.head_link ul li:hover .head_menu_contents {
    max-height: 9999px;
    opacity: 1;
    padding: min(3vw, 50px) min(3vw, 50px) 20px min(3vw, 50px);
}


}


/* footer */
.new_foot_wrap {
    width: 100%;
    background-image: none;
    padding-top: 0;
    margin-top: 0;
}
.foot_inq {
    position: relative;
    background-image: url(../img/common/foot_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: clamp(300px, 35vw, 500px);
    & h2 {
        line-height: 1;
        font-size: clamp(32px, 4.5vw, 60px);
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding-top: clamp(80px, 11vw, 150px);
        position: relative;
        &::before {
            content: "";
            width: 90px;
            height: 2px;
            background: #fff;
            display: block;
            position: absolute;
            right: 0;
            left: 0;
            margin: 0 auto;
            bottom: -50px;
        }
    }
}
.foot_store_con {
    width: min(90%, 1100px);
    display: flex;
    position: absolute;
    bottom: clamp(-160px, -13vw, -110px);
    border-radius: 5px;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #fff;
}
.foot_store {
    width: 50%;
    text-align: center;
    padding: 50px 50px 50px 30px;
    box-sizing: border-box;
    & a {
        display: block;
        font-size: clamp(18px, 3vw, 44px);
        font-weight: 600;
        line-height: 1;
        & i {
            color: #009348;
            margin-right: 10px;
            font-size: clamp(18px, 1.8vw, 25px);
        }
    }
    &:nth-child(1) {
        position: relative;
        &::before {
            content: "";
            display: block;
            width: 1px;
            height: 200px;
            background: #ccc;
            position: absolute;
            top: 20px;
            right: 0;
        }
    }
    
    & ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
        margin-top: 20px;
        & li {
            width: 48%;
        }
        & li a {
            width: 100%;
            height: clamp(40px, 3.5vw, 50px);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            border-radius: 5px;
            font-size: clamp(13px, 1.3vw, 18px);
            font-weight: 600;
            border: solid 1px #009348;
            background: #009348;
            box-sizing: border-box;
            position: relative;
            &::before {
                content: "";
                position: absolute;
                top: 50%;
                right: 15px; 
                width: 8px;
                height: 8px;
                border-top: 1px solid #fff;   
                border-right: 1px solid #fff;
                transform: translateY(-50%) rotate(45deg);
            }
            &:hover {
                background: #fff;
                color: #009348;
                &::before {
                    border-top: 1px solid #009348;   
                border-right: 1px solid #009348;
                }
            }
        }
        & li:nth-child(2) a {
            background: #2c4a73;
            border: solid 1px #2c4a73;
            &:hover {
                background: #fff;
                color: #2c4a73;
                &::before {
                    border-top: 1px solid #2c4a73;   
                border-right: 1px solid #2c4a73;
                }
            }
        }
    }
}
.foot_st_name {
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: 600;
    margin-bottom: 20px;
}
.foot_access {
    font-size: clamp(12px, 1.2vw, 17px);
    line-height: clamp(18px, 2.1vw, 30px);
    margin-top: 15px;
    font-weight: 500;
}
.foot_menu {
    display: flex;
    width: 100%;
}
.foot_menu_le {
    width: 35%;
    background: #009348;
    text-align: center;
    padding: clamp(120px, 21vw, 300px) 0 0 0;
    & .foot_ti {
        font-size: clamp(22px, 2.4vw, 37px);
        line-height: 1.5;
        color: #fff;
        font-weight: 500;
    }
    & .foot_te {
        font-size: clamp(13px, 1.2vw, 16px);
        line-height: 25px;
        margin: 20px 0 60px 0;
        color: #fff;
        font-weight: 400;
    }
    & a {
        display: block;
    }
    & ul {
        width: min(85%, 300px);
        display: flex;
        justify-content: space-between;
        margin: 20px auto;
        & li a {
            color: #fff;
            font-size: clamp(12px, 1vw, 14px);
            & i {
                font-size: 20px;
                font-weight: 400;
            }
        }
        & li:nth-child(1)  {
            position: relative;
            &::before {
                content: "";
                width: 1px;
                height: 15px;
                background: #fff;
                position: absolute;
                top: 2px;
                right: -16px;
            }
        }
    }
    .foot_unique {
        font-size: 11px;
        color: #fff;
    }
}
.foot_menu_le ul li:not(:last-child) a {
    position: relative;
    &::after {
        position: absolute;
        left: 0;
        bottom: -6px;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }
    &:hover::after {
        transform: scale(1, 1);
    }
}

.foot_menu_ri {
    width: 65%;
    background: #393939;
    box-sizing: border-box;
    padding: clamp(100px, 19vw, 280px) clamp(20px, 9vw, 130px) clamp(30px, 4vw, 5vw) clamp(30px, 5vw, 8vw);
}

.footer-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 10px;
    align-items: flex-start;
}

/* 各カラムの幅設定 */
.footer-column {
    width: clamp(120px, 15vw, 250px);
    max-width: 250px;
}

/* 見出しのデザイン */
.footer-column h3 {
    font-size: clamp(14px, 1.3vw, 18px);
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column li {
    margin-bottom: 16px;
}

.footer-column li a {
    color: #cccccc;
    display: inline-block;
    position: relative;
    font-size: clamp(12px, 1.1vw, 15px);
    margin-left: 20px;
    &:hover {
        color: #fff;
    }
    &::after {
        position: absolute;
        left: 0;
        bottom: -6px;
        content: '';
        width: 100%;
        height: 1px;
        background: #fff;
        transform: scale(0, 1);
        transform-origin: left top;
        transition: transform 0.3s;
    }
    &:hover::after {
        transform: scale(1, 1);
    }
}

/* リストの先頭にハイフンを追加 */
.footer-column li a::before {
    content: "";
    width: 5px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 8px;
    left: -18px;
}



/* 以下はtop.cssに記述する */
/* 共通 */
p,h2,h3,h4,ul,li,a {
    margin: 0;
    color: #333;
}
a {
    transition: .3s;
}
.mintyo {
    font-family: "Noto Serif JP", serif, "Yu Mincho", "游明朝", "Hiragino Mincho ProN", "Times New Roman", serif;
}
h1 {
    color:#3c3c3c;
    height: 28px;
    position: absolute;
}


/* main */
body {
    margin: 0px 0 0 0;
}


/* TOP用のheader */

.new_header_wrap {
    background: none;
    position: absolute;
    top: clamp(15px, 2.5vw, 35px);
    right: 0;
    left: 0;
    top: clamp(15px, 2.2vw, 28px);
    z-index: 1;
}
.head_logo {
    width: clamp(200px, 16vw, 385px);
}
.head_store {
    & span {
        color: #fff;
        border: solid 1px #fff;
    }
    & a {
        color: #fff;
        & i {
            color: #fff;
        }
    }
    
}
.head_link ul {
    & li a {
        color: #fff;
        padding: 10px 0 15px 0;
        &::after {
            border-right: 2px solid #fff;
            border-bottom: 2px solid #fff;
        }
        &::before {
            background: #fff;
        }
    }
}
.head_tel {
    & p {
        color: #fff;
    }
}





.t_main_wrap {
    width: 100%;
    background-image: url(../img/top/main_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 50vw;
    min-height: 500px;
    max-height: 900px;
    position: relative;
    z-index: 0;
}
.t_main_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/top/main_bg_2.webp); /* 2枚目 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1; /* コンテンツより後ろ、1枚目より前 */
    
    /* 10秒サイクルで透明度をふわふわさせる */
    animation: fadeCanvas 10s infinite;
}

@keyframes fadeCanvas {
    0%, 40% {
        opacity: 0; /* 最初は透明（1枚目が見える） */
    }
    50%, 90% {
        opacity: 1; /* 2枚目が重なって見える */
    }
    100% {
        opacity: 0; /* また透明に戻る */
    }
}

.t_main_in {
    margin: 0 auto;
    position: absolute;
    bottom: 6vw;
    left: 6vw;
    & h2 {
        font-size: clamp(32px, 4.5vw, 62px);
        line-height: clamp(50px, 6.5vw, 90px);
        color: #fff;
        font-weight: 600;
        text-shadow: 3px 3px 5px rgb(0, 0, 0, .3);
        & span {
            display: block;
            font-size: clamp(14px, 1.7vw, 30px);
            margin: 0 0 20px 0;
            line-height: 1;
        }
    }
}


/* menu */
.t_menu_wrap {
    margin-top: 160px;
    /* background: #ecf4ef; */
    position: relative;
}
.t_menu_in {
    width: 100%;
    margin: 0 auto;
}
.t_menu_tab {
    width: min(85%, 790px);
    padding: 10px;
    background: #fff;
    border-radius: 5px;
    position: absolute;
    top: -55px;
    margin: 0 auto;
    right: 0;
    left: 0;
    border: solid 1px #ccc;
    margin: 0 auto 10px;
    display: flex;
    justify-content: space-between;
}




/*-- タブ切り替え --*/
.tab {
    cursor: pointer;
}

.info_panel,.panel {
    display: none;
}
.info_panel iframe {
    width: 920px;
    height: 460px;
}
.menu_panel ul {
    padding: clamp(50px, 9vw, 120px) 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px 0;
    width: 85%;
    margin: 0 auto;
}
.menu_panel ul li {
    width: 49%;
}
.menu_panel ul li a {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    & .panel_bg {
        object-fit: cover;
        overflow: hidden;
        width: 100%;
        transition: .3s;
    }
    &::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 200px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
        z-index: 2;
    }
    &:hover .panel_bg {
        transform: scale(1.05);
    }
}
.menu_panel_te {
    position: absolute;
    bottom: clamp(15px, 2.2vw, 30px);
    left: clamp(15px, 2.2vw, 30px);
    z-index: 3;
    & p {
        color: #fff;
        font-size: clamp(22px, 3vw, 41px);
        font-weight: 600;
        line-height: 1;
        margin-bottom: clamp(10px, 1.5vw, 21px);
    }
    & span {
        color: #fff;
        font-size: clamp(14px, 1.5vw, 20px);
        font-weight: 500;
    }
}
.pabel_arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 3;
}

.tab.is-active {
    transition: all 0.2s ease-out;
}

.panel.is-show {
    display: block;
}
.info_panel.is-show {
    display: block;
}

.tab-group {

}

.t_menu_tab li {
    width: 49.5%;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: clamp(19px, 1.9vw, 27px);
    font-weight: bold;
    letter-spacing: 0.05em;
    position: relative;
    box-sizing: border-box;
    color: #8e8e8e;
    transition: .3s;
    border-radius: 5px;
    &:hover {
        background: #ecf4ef;
    }
    &::before {
        content: "";
        width: 9px;
        height: 9px;
        border-radius: 5px;
        background: #8e8e8e;
        position: absolute;
        top: 50%;
        left: 84px;
        transform: translateY(-50%);
    }
    &::after {
        content: "";
        width: 15px;
        height: 15px;
        border-radius: 8px;
        border: solid 1px #8e8e8e;
        position: absolute;
        top: 50%;
        left: 80px;
        transform: translateY(-50%);
    }
}
.t_menu_tab li:nth-child(2):hover {
    background: #eef1f5;
}

.t_menu_tab li:hover {
    transition: .3s;
}

.t_menu_tab li span {
    font-size: clamp(14px, 1.5vw, 20px);
    font-weight: bold;
}


.tab.is-active {
    background: #009348;
    color: #fff;
    &::before {
        background: #fff;
    }
    &::after {
        border: solid 1px #fff;
    }
    &:hover {
        background: #009348;
    }
}

.t_menu_tab li:nth-child(2).is-active {
    background: #2c4a73;
}

.kyo_panel {
    background: #ecf4ef;
}
.ji_panel {
    background: #eef1f5;
}



/* info */
.t_info_wrap {
    padding: clamp(50px, 7.5vw, 130px) 0;
}
.t_info_in {
    width: min(94vw, 1200px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.t_info_le {
    width: clamp(160px, 18vw, 240px);
    flex-shrink: 0;
}
.t_all_ti h2 {
    position: relative;
    line-height: 1;
    font-size: clamp(36px, 4vw, 60px);
    font-weight: 500;
    &::before {
        content: "";
        width: 50px;
        height: 2px;
        background: #009348;
        position: absolute;
        bottom: clamp(-50px, -3.2vw, -30px);
        left: 0;
    }
}
.t_info_tab {
    margin: clamp(60px, 7vw, 100px) 0 clamp(40px, 6vw, 80px) 0;
    & .info_tab {
        font-size: 17px;
        padding: 10px 0 10px 20px;
        background: #ecf4ef;
        margin-bottom: 3px;
        border-radius: 3px;
        box-sizing: border-box;
        font-weight: 600;
        cursor: pointer;
    }
}

.info_tab.is-active {
    background: #009348;
    color: #fff;
    position: relative;
    &::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 3px;
        background: #fff;
        position: absolute;
        top: 15px;
        left: 8px;
    }
}

.t_info_ri {
    width: calc(100% - clamp(180px, 20vw, 280px));
    margin-top: 30px;
    /* position: relative; */
}
.info_panel_ul li:not(:last-child) {
    border-bottom: solid 1px #ccc;
}
.info_panel_ul li {
    padding: 8px 0;
    position: relative;
    & a {
        padding: clamp(16px, 4vw, 28px) 0 clamp(16px, 4vw, 28px) 20px;
        display: block;
        font-size: clamp(14px, 2vw, 18px);
        font-weight: 500;
        & .info_day {
            color: #7e7e7e;
        }
        & .info_tag {
            color: #009348;
            font-size: 14px;
            padding: 3px 6px;
            border: solid 1px #009348;
            margin: 0 20px;
            border-radius: 3px;
        }
        &:hover {
            background: #ecf4ef;
        }
    }
    &::before {
        content: "";
        width: 31px;
        height: 31px;
        background-image: url(../img/top/arrow_btn.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}
.info_more a {
    width: clamp(180px, 17vw, 237px);
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(13px, 1.2vw, 17px);
    font-weight: 600;
    border-radius: 5px;
    position: relative;
    border: solid 1px #333;
    position: absolute;
    bottom: 20px;
    left: 0;
    &::before {
        content: "";
        width: 7px;
        height: 7px;
        display: block;
        border-top: solid 1px #009348;
        border-left: solid 1px #009348;
        transform: rotate(135deg);
        position: absolute;
        top: 22px;
        right: 22px;
    }
    &:hover {
        border: solid 1px #009348;
        background: #009348;
        color: #fff;
        &::before {
            border-top: solid 1px #fff;
        border-left: solid 1px #fff;
        }
    }
}


/* business */
.t_business_wrap {
    width: 100%;
    background: #009348;
    position: relative;
    overflow: hidden;
    &::before {
        content: "";
        width: min(80%, 1200px);
        height: 51vw;
        background-image: url(../img/top/busi_map_bg.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        left: min(-5vw, -210px);
        top: -2vw;
    }
    &::after {
        content: "";
        width: 30vw;
        height: 12vw;
        background-image: url(../img/top/busi_treat.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
.t_busi_in {
    padding: clamp(80px, 8.2vw, 140px) 0 clamp(100px, 21vw, 300px) 0;
    margin-left: 50%;
    width: 45%;
    & .t_all_ti h2 {
        color: #fff;
        &::before {
            background: #fff;
        }
    }
    & .busi_le {
        color: #fff;
        font-size: clamp(18px, 2.2vw, 30px);
        line-height: 1.9;
        font-weight: 500;
        margin: clamp(30px, 5vw, 90px) 0 30px;
    }
    & .busi_te {
        font-size: clamp(14px, 1.3vw, 18px);
        line-height: 2.1;
        color: #fff;
        position: absolute;
        z-index: 3;
        width: min(45%, 800px);
    }
}

/* service */
.t_service_wrap {

}
.t_service_in {
    width: min(94vw, 1200px);
    padding: clamp(100px, 13vw, 180px) 0 0 0;
    margin: 0 auto;
}
.t_service_in ul {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(40px, 5vw, 70px) 0;
    justify-content: space-between;
    margin: clamp(50px, 7vw, 100px) 0 0 0;
}
.t_service_in ul li {
    width: clamp(260px, 28vw, 360px);
    & h3 {
        font-size: clamp(20px, 2.2vw, 30px);
        font-weight: 500;
        padding: 25px 0;
        text-align: center;
        border-bottom: solid 1px #ccc;
        line-height: 1;
        position: relative;
        &::before {
            content: "";
            width: 60px;
            height: 1px;
            background: #009348;
            position: absolute;
            left: 0;
            bottom: -1px;
        }
    }
    & p {
        font-size: clamp(13px, 1.2vw, 16px);
        line-height: 30px;
        margin: 20px 0;
        text-align: center;
    }
    & .service_btn {
        display: flex;
        justify-content: space-between;
        & a {
            width: 48%;
            height: clamp(42px, 3.8vw, 54px);
            display: flex;
            align-items: center;
            justify-content: center;
            border: solid 1px #333;
            border-radius: 5px;
            font-size: clamp(13px, 1.2vw, 16px);
            box-sizing: border-box;
            font-weight: 600;
            position: relative;
            &::before {
                content: "";
                width: 5px;
                height: 5px;
                display: block;
                border-top: solid 1px #009348;
                border-left: solid 1px #009348;
                transform: rotate(135deg);
                position: absolute;
                top: 50%;
                right: 15px;
                transform: translateY(-50%) rotate(135deg);
            }
            &:hover {
            border: solid 1px #009348;
            background: #009348;
            color: #fff;
            &::before {
                border-top: solid 1px #fff;
            border-left: solid 1px #fff;
            }
            }
        }
    }
    & .service_more {
        width: 100%;
        max-width: 282px;
        height: clamp(42px, 3.8vw, 54px);
        display: flex;
        margin: 0 auto;
        align-items: center;
        justify-content: center;
        border: solid 1px #333;
        border-radius: 5px;
        font-size: clamp(13px, 1.2vw, 17px);
        box-sizing: border-box;
        font-weight: 600;
        position: relative;
        &::before {
            content: "";
            width: 6px;
            height: 6px;
            display: block;
            border-top: solid 1px #009348;
            border-left: solid 1px #009348;
            transform: rotate(135deg);
            position: absolute;
            top: 50%;
            right: 20px;
            transform: translateY(-50%) rotate(135deg);
        }
        &:hover {
            border: solid 1px #009348;
            background: #009348;
            color: #fff;
            &::before {
                border-top: solid 1px #fff;
            border-left: solid 1px #fff;
            }
        }
    }
}
.t_service_in ul li img {
    width: 100%;
}

/* company */
.t_company_wrap {
    padding: clamp(100px, 13vw, 180px) 0 clamp(350px, 43vw, 610px) 0;
    position: relative;
    &:before {
        content: "";
        width: 51vw;
        height: 22vw;
        background-image: url(../img/top/company_treat.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 0;
        right: 0;
    }
    &:after {
        content: "";
        width: 44vw;
        height: 41vw;
        background-image: url(../img/top/company_img.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: min(30vw, 450px);
        right: 0;
    }
}
.t_comp_in {
    left: calc(50% - 40%);
    width: calc(50% - 150px);
    position: relative;
}
.t_comp_le {
    padding: clamp(50px, 6.5vw, 90px) 0 clamp(8px, 2vw, 40px) 0;
    font-size: clamp(16px, 1.5vw, 30px);
    line-height: 1;
    font-weight: 600;
}
.t_comp_te {
    font-size: clamp(14px, 1.3vw, 18px);
    line-height: 2.1;
}
.t_comp_in ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 50px;
    & li {
        width: 31%;
    }
    & li a {
        width: 100%;
        height: clamp(42px, 3.8vw, 54px);
        box-sizing: border-box;
        display: flex;
        border-radius: 5px;
        border: solid 1px #333;
        align-items: center;
        justify-content: center;
        font-size: clamp(12px, 1.2vw, 17px);
        font-weight: 600;
        position: relative;
        &::before {
            content: "";
            width: 7px;
            height: 7px;
            display: block;
            border-top: solid 1px #009348;
            border-left: solid 1px #009348;
            transform: rotate(135deg);
            position: absolute;
            top: 50%;
            right: 15px;
            transform: translateY(-50%) rotate(135deg);
        }
        &:hover {
            border: solid 1px #009348;
            background: #009348;
            color: #fff;
            &::before {
                border-top: solid 1px #fff;
            border-left: solid 1px #fff;
            }
        }
    }
}
.t_store_con {
    width: 50%;
    position: absolute;
    left: 0;
    margin-top: 90px;
}
.t_store_con  ul {
    display: flex;
    justify-content: space-between;
    & li {
        width: 50%;
        border-bottom: solid 1px #e6e6e6;
        & img {
            width: 100%;
        }
    }
    & li:nth-child(1) {
        border-right: solid 1px #e6e6e6;
    }
    & .store_te {
        padding: clamp(12px, 1.5vw, 1.8vw);
        box-sizing: border-box;
        & .store_name {
            font-size: clamp(14px, 1.3vw, 18px);
        }
        & .store_tel {
            font-size: clamp(20px, 2.5vw, 33px);
            font-weight: 600;
            margin: 15px 0;
            display: block;
            & i {
                font-size: clamp(18px, 2vw, 28px);
                margin-right: 10px;
            }
        }
        & .store_access {
            margin: 10px 0;
            font-size: clamp(12px, 1vw, 15px);
            font-weight: 500;
            line-height: clamp(16px, 1.4vw, 24px);
        }
        & .store_btn {
            margin-top: min(1.2vw, 30px);
            width: clamp(100px, 9.5vw, 130px);
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(12px, 1.1vw, 15px);
            border-radius: 5px;
            border: solid 1px #333;
            font-weight: 500;
            &:hover {
                background: #009348;
                border: solid 1px #009348;
                color: #fff;
            }
        }
    }
}

/* story */
.t_story_wrap {
    position: relative;
    padding: clamp(180px, 25vw, 340px) 0 clamp(100px, 13vw, 180px) 0;
    &::before {
        content: "";
        width: 52%;
        height: clamp(500px, 49vw, 630px);
        background: #f7f7f7;
        position: absolute;
        border-radius: 10px 0 0 10px;
        top: clamp(160px, 19vw, 240px);
        right: 0;
    }
    &:after {
        content: "";
        width: 47vw;
        height: 21vw;
        background-image: url(../img/top/story_treat.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 1.4vw;
        left: 0;
    }
}
.t_story_in {
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.story_le {
    width: 48%;
    & p {
        font-size: clamp(14px, 1.3vw, 17px);
        line-height: 2.2;
        margin: clamp(40px, 5.5vw, 80px) 0 50px 0;
    }
    & a {
        width: clamp(180px, 17vw, 242px);
        height: clamp(42px, 3.8vw, 54px);
        box-sizing: border-box;
        display: flex;
        border-radius: 5px;
        border: solid 1px #333;
        align-items: center;
        justify-content: center;
        font-size: clamp(13px, 1.3vw, 17px);
        font-weight: 600;
        position: relative;
        &::before {
            content: "";
            width: 7px;
            height: 7px;
            display: block;
            border-top: solid 1px #009348;
            border-left: solid 1px #009348;
            transform: rotate(135deg);
            position: absolute;
            top: 50%;
            right: 22px;
            transform: translateY(-50%) rotate(135deg);
        }
        &:hover {
            border: solid 1px #009348;
            background: #009348;
            color: #fff;
            &::before {
                border-top: solid 1px #fff;
            border-left: solid 1px #fff;
            }
        }
    }
}
.t_story_in iframe {
    width: min(40vw, 700px);
    height: 500px;
    z-index: 0;
}
.story_ri {
    width: 100%;
}
.story_ri ul li {
    padding: 15px 0;
    position: relative;
    &::before {
        content: "";
        width: 31px;
        height: 31px;
        background-image: url(../img/top/arrow_btn.webp);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }
}
.story_ri ul li:not(:last-child) {
    border-bottom: solid 1px #ccc;
}
.story_ri ul li a {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 0px clamp(20px, 2.2vw, 30px);
    &:hover {
        background: #ecf4ef;
    }
}
.story_img {
    width: clamp(140px, 14vw, 200px);
    height: clamp(100px, 9vw, 130px);
    overflow: hidden;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    & img {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }
}
.story_cms h3 {
    font-size: clamp(20px, 5.2vw, 30px);
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 500;
}
.story_cms p {
    font-size: clamp(15px, 3.3vw, 18px);
}

/* about */
.t_about_wrap {
    width: 100%;
    height: clamp(400px, 51vw, 700px);
    background: url(../img/top/about_slide.webp) repeat-x 0 0;
    background-size: auto clamp(400px, 51vw, 700px);
    overflow: hidden;
    -moz-animation: loop 100s linear infinite;
    animation: loop 100s linear infinite;
}
@keyframes loop {
    0% {
        background-position: -3050px 0;
    }
    100% {
        background-position: 0 0;
    }
}
.t_about_in {
    width: 90%;
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
}
.abtou_te {
    margin: clamp(50px, 6.5vw, 90px) 0;
    width: min(54%, 780px);
    background: #fff;
    padding: clamp(40px, 5.5vw, 80px) clamp(25px, 3.5vw, 50px);
    box-sizing: border-box;
    border-radius: 5px;
    position: absolute;
    right: 0;
    background-image: url(../img/top/about_treat.webp);
    background-position: bottom;
    background-size: cover;
}
.abtou_te p {
    font-size: clamp(14px, 1.2vw, 18px);
    line-height: 2.1;
    margin: clamp(40px, 5vw, 70px) 0 30px 0;
}
.abtou_te ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    & li a {
        width: clamp(180px, 17vw, 242px);
        height: clamp(42px, 3.8vw, 54px);
        box-sizing: border-box;
        display: flex;
        border-radius: 5px;
        border: solid 1px #333;
        align-items: center;
        justify-content: center;
        font-size: clamp(13px, 1.2vw, 17px);
        font-weight: 600;
        position: relative;
        background: #fff;
        &::before {
            content: "";
            width: 7px;
            height: 7px;
            display: block;
            border-top: solid 1px #009348;
            border-left: solid 1px #009348;
            transform: rotate(135deg);
            position: absolute;
            top: 50%;
            right: 22px;
            transform: translateY(-50%) rotate(135deg);
        }
        &:hover {
            border: solid 1px #009348;
            background: #009348;
            color: #fff;
            &::before {
                border-top: solid 1px #fff;
            border-left: solid 1px #fff;
            }
        }
    }
}

.t_about_bot {
    width: min(94vw, 1200px);
    padding: clamp(70px, 9.5vw, 140px) 0;
    margin: 0 auto;
}
.t_about_bot ul {
    display: flex;
    justify-content: space-between;
    border: solid 1px #e6e6e6;
    border-radius: 5px;
}
.t_about_bot ul li {
    width: calc(100% / 3); 
    & a {
        width: 100%;
        display: block;
        box-sizing: border-box;
        padding: clamp(15px, 1.8vw, 25px);
        &:hover {
            background: #ecf4ef;
        }
        & img {
            width: 100%;
        }
    }
    & h3 {
        font-size: clamp(18px, 1.9vw, 26px);
        font-weight: 500;
        margin: clamp(12px, 1.5vw, 20px) 0 clamp(18px, 2.2vw, 30px) 0;
        line-height: 1;
        position: relative;
        &::before {
            content: "";
            width: 31px;
            height: 31px;
            background-image: url(../img/top/arrow_btn.webp);
            background-size: cover;
            background-repeat: no-repeat;
            position: absolute;
            top: 0px;
            right: 0px;
        }
    }
    & p {
        font-size: clamp(12px, 1.1vw, 15px);
        line-height: 1.7;
    }
}
.t_about_bot ul li:not(:last-child) {
    border-right: solid 1px #e6e6e6;
}