@charset "UTF-8";


/* --------------------------------------
文字
---------------------------------------*/
h3 {
    font-size: 2rem;
    line-height: 1.5;
}
h4 {
    font-size: 1.7rem;
    line-height: 1.5;
}
p {
    font-size: 1rem;
    font-weight: 400;
    font-feature-settings: "palt";
    line-height: 2;
}
p.text {
    text-align: justify;
}
p.text_title {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 600;
}
p.indent_text {
    padding-left: 1em;
    text-indent: -1em;
    text-align: justify;
}
@media screen and (max-width: 768px) {
    p.text_title {
        font-size: 1.25rem;
    }
}
.key {
    color: #604C3F;
}
.wt {
    color: #fff;
}
.small_tx {
    font-size: 12px;
}

/* --------------------------------------
メインタイトル
---------------------------------------*/
/* セクションタイトル */
h3.sec_title {
    margin-bottom: 1rem;
}
h3.sec_title_icon {
    margin-bottom: 1rem;
}
h3.sec_title_icon::before {
    font-size: 3rem;
    color: #A0948C;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f015";
}
h3.read_title {
    display: inline-block;
    min-width: 500px;
    padding-right: 5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    position: relative;
}
h3.read_title::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-image: url(../img/home/icon_read_title.svg);
    background-size: contain;
    z-index: 1;
}
h3.read_title::after{
    content: '';
    position: absolute;
    bottom: 0;
    display: block;
    width: calc(100% - 25px);
    border-bottom: 10px solid #FFA500;
}
h3.read_title span {
    display: inline-block;
    width: 100%;
}
@media screen and (max-width: 768px) {
    h3.read_title {
        width: 100%;
        padding-right: 0;
        min-width: auto;
    }
    h3.read_title span {
        display: inline-block;
        width: 90%;
    }
}
h4.read_title {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #604C3F;
}

/* --------------------------------------
TOP スライダー
---------------------------------------*/
.top_slider_img_wrap {
    width: 100%;
    height: calc(100vh - 70px);
    max-height: 900px;
    position: relative;
}
.top_slider_img_wrap img {
    vertical-align: top;
}
.slide_tx_wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(2px 2px 5px #3f3f3f);
    z-index: 1;
}
.slide_tx_wrap img {
    width: 200px;
}
.slide_tx_box {
    width: 100%;
    color: #fff;
    text-align: center;
}
.slide_bk_filter {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000050;

}
/* slick設定 */
.slider-4 .slick-slide {
    height: auto;
    overflow: hidden;
}
.slider-4 img {
    display: block;
    width: 100%;
    height: calc(100vh - 70px);
    max-height: 900px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .top_slider_img_wrap {
        width: 100%;
        height: calc(100vh - 70px);
        max-height: initial;
    }
    .slide_tx_wrap img {
        width: 30%;
    }
    .slide_tx_box {
        width: 90%; 
    }
    .slide_tx_box h3 {
        font-size: 1.5rem;
        white-space: nowrap;
    }
    .slide_tx_box p {
        text-align: justify;
    }
    .slide_tx_box p br {
        display: none;
    }
    /* slick設定 */
    .slider-4 img {
        display: block;
        width: 100%;
        height: calc(100vh - 70px);
        object-fit: cover;
        max-height: initial;
    }
}

/* --------------------------------------
2カラム
---------------------------------------*/
.two_column_left,
.two_column_right {
    width: 47.5%;
}
@media screen and (max-width: 768px) {
    .two_column_left,
    .two_column_right {
        width: 100%;
    }
}
/* メッセージテキスト写真 */
.mes_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mes_flex p,
.mes_flex img {
    width: 47.5%;
}

/* トップ写真 */
.two_column_pic_flex {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.two_column_pic {
    width: 100%;
    border-radius: 1rem;
    border: 5px solid #fff;
    box-sizing: border-box;
}
.two_column_pic img {
    width: 100%;
    height: 100%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
}

/* --------------------------------------
お仕事について
---------------------------------------*/
.two_column.top_works {
    align-items: end;
}
.top_works_btn_wrap {
    width: 100%;
}
h4.top_works_btn_h4 {
    color: #fff;
    background-color: #FFA500;
    padding: 0.5rem;
    text-align: center;
    box-sizing: border-box;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
ul.top_works_btn_list {
    width: 100%;
    padding: 1rem;
    background-color: #FFDEA1;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}
ul.top_works_btn_list li{
    width: calc(50% - 0.5rem);
}
/* --------------------------------------
採用情報
---------------------------------------*/
.two_column.top_recruit {
    align-items: start;
}

/* --------------------------------------
新着情報
---------------------------------------*/
ul.info_list_wrap {
    width: 100%;
}
ul.info_list_wrap li {
    width: 100%;
    margin-bottom: 2rem;
    border-bottom: 1px solid #908279;
    padding-bottom: 1rem;
    box-sizing: border-box;
}
ul.info_list_wrap li:last-child {
    margin-bottom: 0;
}
.two_column.top_info a,
ul.info_list_wrap li a {
    color: #604C3F;
}
.two_column.top_info a:hover {
    color: #FF5500;
}
/* --------------------------------------
新着情報
---------------------------------------*/
.top_sns {
    width: 100%;
    display: flex;
    gap: 1rem;
}
.top_sns a {
    width: 70px;
}

/* --------------------------------------
下層ページヘッダー
---------------------------------------*/
.page_title_wrap {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center center;
}
@media screen and (max-width: 768px) {
    .page_title_wrap {
        width: 100%;
        height: 100%;
        aspect-ratio: 16/9;
    }
}
/* メッセージ */
.page_title_wrap.message {
    background-image: url(../img/home/page_head_message.jpg);
}
/* 外壁塗装について */
.page_title_wrap.paint {
    background-image: url(../img/home/page_head_paint.jpg);
}
/* ラプターについて */
.page_title_wrap.raptor {
    background-image: url(../img/home/page_head_raptor.jpg);
}
/* 防水工事について */
.page_title_wrap.water {
    background-image: url(../img/home/page_head_water.jpg);
}
/* 工事の流れ */
.page_title_wrap.flow {
    background-image: url(../img/home/page_head_flow.jpg);
}
/* 会社概要 */
.page_title_wrap.company {
    background-image: url(../img/home/page_head_company.jpg);
}
/* 4つの誓い */
.page_title_wrap.promise {
    background-image: url(../img/home/page_head_promise.jpg);
}
/* スタッフ紹介 */
.page_title_wrap.staff {
    background-image: url(../img/home/page_head_staff.jpg);
}
/* 採用情報 */
.page_title_wrap.recruit {
    background-image: url(../img/home/page_head_recruit.jpg);
}
/* よくある質問 */
.page_title_wrap.faq {
    background-image: url(../img/home/page_head_faq.jpg);
}
/* 個人情報 */
.page_title_wrap.privacy {
    background-image: url(../img/home/page_head_privacy.jpg);
}
/* お問い合わせ */
.page_title_wrap.contact {
    background-image: url(../img/home/page_head_contact.jpg);
}
/* 施工事例お知らせ */
.page_title_wrap.works {
    background-image: url(../img/home/page_head_works.jpg);
}

.page_title_circle_wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
h2.page_title_circle {
    width: 270px;
    aspect-ratio: 1 / 1;
    background-color: #FF7A00;
    border-radius: 50%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-size: 2rem;
    line-height: 1.3;
}
h2.page_title_circle span {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
    .page_title_wrap {
        position: relative;
    }
    .page_title_circle_wrap {
        position: absolute;
        top: 0;
        left: 0;
        justify-content: center;
    }
    h2.page_title_circle {
        width: 100%;
        height: 100%;
        aspect-ratio: initial;
        background-color: #00000070;
        border-radius: 0;
    }
}
/* --------------------------------------
パンくずリスト
---------------------------------------*/
.breadcrumbs {
    padding: 1rem 0;
    font-size: 12px;
}
.aioseo-breadcrumbs span:first-child::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f015";
}
.aioseo-breadcrumbs span:last-child::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 200;
    content: "\f15b";
    margin-left: 0.5rem;
}
.breadcrumbs a{
    color: #604C3F;
}

/* --------------------------------------
固定ページ メッセージ
---------------------------------------*/
.two_column.page_mes,
.two_column_re.page_mes {
    align-items: start;
}
.daihyo_pic {
    width: 80%;
    margin: auto;
}


/* --------------------------------------
固定ページ 外壁塗装
---------------------------------------*/
.anker_btn_wrap {
    display: flex;
    gap: 1rem;
}
#gaiheki {
    background-color: #FFFBE6;
}
#yane {
    background-color: #EDF9ED;
}

ul.pic_column3_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
ul.pic_column3_wrap li {
    width: calc(calc(100% - 4rem ) / 3);
    box-sizing: border-box;
}
ul.pic_column3_wrap li img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
    ul.pic_column3_wrap li {
        width: 100%;
        max-width: 500px;
        margin: auto;
        box-sizing: border-box;   
    }
    ul.pic_column3_wrap li img {
        aspect-ratio: 16 / 9;
        object-fit: cover;
        margin-top: 0.5rem;   
    }
}

/* 流れ */
ul.paint_flow {
    width: 100%;
}
ul.paint_flow li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #AFA59F;
    position: relative;
}
ul.paint_flow li::after {
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    margin: auto;
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 15px solid #AFA59F;
    border-bottom:0;   
}
ul.paint_flow li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: initial;
}
ul.paint_flow li:last-child::after {
   display: none;
}
.paint_flow_left {
    width: 60%;
}
.paint_flow_left p.text_title {
    margin-bottom: 1rem;
}
.paint_flow_right {
    width: 30%;
}
.paint_flow_right img{
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    ul.paint_flow li {
        display: block;
    }
    .paint_flow_left {
        width: 100%;
        margin-bottom: 1rem;
    }
    .paint_flow_right {
        width: 100%;
        max-width: 500px;
        margin: auto;
    }
    .paint_flow_right img {
        aspect-ratio: 16 / 9;
    }
}

/* --------------------------------------
固定ページ ラプター
---------------------------------------*/
/* メインタイトル */
.raptor_title {
    text-align: center;
}
.raptor_title img {
    width: 200px;
}
.raptor_title h3 span {
    font-size: 1rem;
    margin-left: 1rem;
}
.raptor_title_bar {
    width: 100%;
    height: 3px;
    background-color: #FFC800;
}

/* 見出し */
h4.raptor_readtitle {
    max-width: 550px;
    margin: auto;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1;
    padding: 0.75rem 0;
    box-sizing: border-box;
}
h4.raptor_readtitle.wt{
    color: #fff;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
h4.raptor_readtitle.bk {
    border-top: 2px solid #FFC800;
    border-bottom: 2px solid #FFC800;
}
h4.raptor_readtitle.bk2 {
    max-width: 100%;
    border-bottom: 1px solid #604C3F;
}

/* リスト */
ul.raptor_point_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
ul.raptor_point_wrap li {
    width: calc(calc(100% / 2) - 2rem)
}
h4.raptor_point_title {
    font-size: 1.5rem;
    background-color: #FFC800;
    border: 1px solid #FFC800;
    padding: 0.5rem;
    text-align: center;
    box-sizing: border-box;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}
p.raptor_point_text {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EEE4CA;
    border: 1px solid #FFC800;
    box-sizing: border-box;
    border-bottom-left-radius: 1rem;
    border-bottom-right-radius: 1rem;
    text-align: center;
}
ul.top_works_btn_list li{
    width: calc(50% - 0.5rem);
}
p.raptor_list_tx {
    font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
    ul.raptor_point_wrap li {
        width: 100%;
    }
    p.raptor_point_text {
        width: 100%;
        height: auto;
        padding: 1rem;
    }
}

/* 流れ */
ul.raptor_flow {
    width: 100%;
}
li.raptor_flow_li {
    width: 100%!important;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 1.5rem;
}
li.raptor_flow_li:last-child {
    margin-bottom: 0;
}
li.raptor_flow_li::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 32px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 10px solid #FFC800;
    border-bottom:0;
}
li.raptor_flow_li:last-child::after {
    display: none;
}
li.raptor_flow_li span {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFC800;
    border-radius: 1rem;
    font-size: 14px;
    width: 80px;
    height: 1.5rem;
    margin-right: 1rem;
}
li.raptor_flow_li p {
    color: #fff;
    font-size: 1.2rem;
}
/* --------------------------------------
背景写真 左文章 右写真
---------------------------------------*/
section.sec_backimg {
    position: relative;
}
section.sec_backimg ._raptor {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/home/raptor_bk_img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
}
section.sec_backimg ._raptor2 {
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../img/home/raptor_bk_img2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: -2;
}
section.sec_backimg .bk_filter {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    width: 100%;
    height: 100%;
    opacity: 0.7;
    z-index: -1;
}
@media screen and (max-width: 768px) {
    section.sec_backimg ._raptor2 {
        background-position: 60% 0;
        background-repeat: no-repeat;
        background-size: cover;
        width: 100%;
        height: 100%;
        z-index: -2;   
    }
}

/* --------------------------------------
固定ページ 防水工事に ついて
---------------------------------------*/
section.water {
    background-image: linear-gradient(180deg, #fff, #DFF8FF 50%);
}
section.water2 {
    background-color: #DFF8FF;
}
.page_water .two_column_left {
    width: 65%;
}
.page_water .two_column_right {
    width: 30%;
}
.page_water .two_column_right img {
    border-radius: 50%;
}
.water_wt_back {
    background-color: #fff;
    padding: 3rem;
    border-radius: 2rem;
    box-sizing: border-box;
}
section.water2 .page_water {
    align-items: start;
}
section.water2 .two_column_right img {
    border-radius: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .page_water .two_column_left {
        width: 100%;
    }
    .page_water .two_column_right {
        width: 100%;   
        text-align: center;
    }
    .page_water .two_column_right img {
        max-width: 300px;
    }
    section.water2 .two_column_right img {
        max-width: 500px;
        aspect-ratio: 16 / 9;
    }
    .water_wt_back {
        padding: 3rem 1.5rem;  
    }
}

/* --------------------------------------
固定ページ 工事の流れ
---------------------------------------*/
ul.flowlist_wrap {
    width: 100%;
}
ul.flowlist_wrap li {
    width: 100%;
    display: flex;
    justify-content: space-around;
    /* align-items: center; */
    margin-bottom: 5rem;
}
ul.flowlist_wrap li:last-child {
    margin-bottom: 0;
}
.flowlist_pic {
    width: 25%;
    text-align: center;
}
.flowlist_pic p {
    margin-bottom: 0.5rem;
}
.flowlist_pic img {
    aspect-ratio: 1/1;
    border-radius: 50%;
    object-fit: cover;
    border: #604C3F 5px solid;
    box-sizing: border-box;
}
.flowlist_tx {
    width: 65%;
}
.flowlist_tx h3.read_title {
    width: 100%;
}
@media screen and (max-width: 768px) {
    ul.flowlist_wrap li {
        display: block;
    }
    .flowlist_pic {
        width: 100%;
        max-width: 300px;
        margin: auto;
        margin-bottom: 1rem;  
    }
    .flowlist_tx {
        width: 100%;   
    }
}

/* --------------------------------------
テーブル
---------------------------------------*/
.table-wrap {
    overflow-x: scroll;
    margin-bottom: 3rem;
}
table.table_01 {
    width: 100%;
    overflow: scroll;
}
table.table_01 tr {
    border-collapse: collapse;
    background: #fff;
}
table.table_01 tr:nth-child(odd) {
    border-collapse: collapse;
    background: #FFF2DB;
}
table.table_01 th {
    width: 20%;
    text-align: left;
    font-weight: 400;
}
table.table_01 td {
    width: 80%;
}
table.table_01 td,
table.table_01 th {
    padding: 1rem;
    box-sizing: border-box;
    line-height: 2;
}
@media screen and (max-width: 768px) {
    table.table_01 tr:nth-child(odd) {
        border-collapse: collapse;
        background: #fff;   
    }
    table.table_01 th {
        width: 100%;
        display: block;
        background: #FFF2DB;
    }
    table.table_01 td {
        width: 100%;
        display: block;
        margin-bottom: 1rem;
    }
    table.table_01 td,
    table.table_01 th {
        padding: 0.5rem;
    }
}

/* --------------------------------------
固定ページ 会社概要
---------------------------------------*/
ul.shikaku_list {
    width: 100%;
}
ul.shikaku_list li {
    width: 100%;
    margin-bottom: 1rem;
}
.two_column.shikaku {
    justify-content: left;
    gap: 1rem;
}
.two_column.shikaku img {
    width: 30%;
}
@media screen and (max-width: 768px) {
    .two_column.shikaku img {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* --------------------------------------
固定ページ 4つの誓い
---------------------------------------*/
ul.promise_wrap {
    width: 100%;
}
ul.promise_wrap li {
    width: 100%;
    margin-bottom: 2rem;
}
ul.promise_wrap li:last-child {
    margin-bottom: 0;
}
p.promise_title {
    display: flex;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}
p.promise_title span._text {
    width: calc(100% - 50px);
    height: 50px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    box-sizing: border-box;
    background-color: #FF7A00;
}
p.promise_title span._no {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFB979;
}
@media screen and (max-width: 768px) {
    p.promise_title {
        font-size: 1.1rem;
    }
}
/* --------------------------------------
固定ページ スタッフ紹介
---------------------------------------*/
section.staff {
    background-color: #F1FFF1;
}
ul.staff_list_wrap {
    width: 100%;
}
ul.staff_list_wrap li.staff_list {
    width: 100%;
    padding: 3rem 0;
    box-sizing: border-box;
}
ul.staff_list_wrap li.staff_list:nth-child(even) {
    background-color: #F1FFF1;
}
.staff_data_wrap {
    display: flex;
    justify-content: center;
    gap: 3rem;
}
.staff_data_pic {
    width: 20%;
}
.staff_data_pic img {
    width: 100;
    aspect-ratio: 3 / 4;
    object-fit: cover;
}
.staff_data_tx {
    width: 70%;
}
p.staff_name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
}
p.staff_name span{
    font-size: 1rem;
}
ul.staff_data_tx_inner {
    width: 100%;
}
ul.staff_data_tx_inner li {
    width: 100%;
    display: flex;
    border-bottom: 1px solid #AFA59F;
    padding: 1rem 0;
    box-sizing: border-box;
}
ul.staff_data_tx_inner li:last-child {
    border-bottom: initial;
    padding-bottom: 0;
}
p.staff_data_title {
    width: 20%;
    font-weight: 600;
}
p.staff_data_tx {
    width: 80%;
    text-align: justify;
}
@media screen and (max-width: 768px) {
    .staff_data_wrap {
        display: block;
    }
    .staff_data_pic {
        width: 80%; 
        max-width: 300px;
        margin: auto;
        margin-bottom: 1rem;  
    }
    .staff_data_tx {
        width: 100%;   
    }
    ul.staff_data_tx_inner li {
        display: block;  
    }
    p.staff_data_title,
    p.staff_data_tx {
        width: 100%;
        text-align: justify;
    }
}

/* --------------------------------------
固定ページ 採用情報
---------------------------------------*/

/* --------------------------------------
固定ページ よくある質問
---------------------------------------*/
ul.faq_list_wrap {
    width: 100%;
}
ul.faq_list_wrap li {
    width: 100%;
    margin-bottom: 3rem;
}
ul.faq_list_wrap li:last-child {
    margin-bottom: 0;
}
.faq_inner {
    display: flex;
    justify-content: space-between;
}
.faq_inner p {
    width: calc(calc(100% - 50px) - 1rem);
}
.faq_inner i {
    font-size: 1.5rem;
    color: #fff;
    width: 50px;
    height: 50px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
i.fa-q {
    background-color: #6BD2FF;
}
i.fa-a {
    background-color: #FFA500;
}
p.faq_Q {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}
p.faq_answer {
    padding: 1rem;
    box-sizing: border-box;
    border-radius: 1rem;
    border: 2px solid #FFA500;
    background-color: #FFF6E5;
    text-align: justify;
}


/* --------------------------------------
プライバシーポリシー
---------------------------------------*/
ul.privacy_wrap {
    width: 100%;
}
ul.privacy_wrap li {
    width: 100%;
    margin-bottom: 3rem;
}
ul.privacy_wrap li:last-child {
    margin-bottom: 0;
}
p.privacy_title {
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    background-color: #FFF6E5;
    margin-bottom: 1.5rem;
}
.privacy_tx {
    margin-bottom: 1.5rem;
}
.privacy_tx:last-child {
    margin-bottom: 0;
}
.privacy_tx p.indent_text {
    padding-left: 1.7em;
    text-indent: -1.7em;
    margin-bottom: 0.25rem;
}
.privacy_tx p.indent_text:last-child {
    margin-bottom: 0;
}

/* --------------------------------------
施工事例
---------------------------------------*/
ul.works_cat_btn {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
ul.works_cat_btn li {
    width: calc(calc(100% / 5 ) - 0.8rem);
}

ul.works_list_wrap {
    width: 100%;
}
ul.works_list_wrap li {
    width: 100%;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #A0948C;
    box-sizing: border-box;
    margin-bottom: 3rem;
}
ul.works_list_wrap li:last-child {
    margin-bottom: 0;
}
@media screen and (max-width: 768px) {
    ul.works_cat_btn li {
        width: calc(calc(100% / 2) - 0.5rem);
    }
}

/* カテゴリーボタン */
.works_list_title {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    gap: 1rem;
}
.works_list_title .works_cat {
    width: 200px;
    height: 3rem;
    box-sizing: border-box;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}
.works_list_title .works_cat.job01 {
    border: 1px solid #53B553;
    background-color: #53B553;
}
.works_list_title .works_cat.job02 {
    border: 1px solid #08a4f8;
    background-color: #08a4f8;
}
.works_list_title .works_cat.job03{
    border: 1px solid #FF8600;
    background-color: #FF8600;
}
.works_list_title .works_cat.other {
    border: 1px solid #808080;
    background-color: #808080;
}
.works_list_title .works_cat:hover {
    background-color: #fff;
    color: #604C3F !important;
}

.works_list_content {
    display: flex;
    justify-content: space-between;
}
.works_list_content a{
    color: #604C3F;
}
.works_list_pic {
    width: 40%;
}
.works_list_pic img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.works_list_tx {
    width: 55%;
}
p.works_date {
    font-size: 12px;
}
@media screen and (max-width: 768px) {
    .works_list_title {
        font-size: 1rem;
    }
    .works_list_title .works_cat {
        width: 120px;
        height: 2rem;
        border-radius: 0.5rem;
    }
    .works_list_content {
        display: block;
    }
    .works_list_pic,
    .works_list_tx {
        width: 100%;
    }
    .works_list_pic {
        max-width: 500px;
        margin: auto;
        margin-bottom: 1rem;
    }
}
/* 施工事例ボタン */
.current .link_btn {
    border: 1px solid #ffbb00;
    background-color: #ffbb00;
    color: #fff;
    pointer-events: none;
}

.link_btn.job01 {
    border: 1px solid #53B553;
    background-color: #fff;
}
.link_btn.job01:hover{
    background-color: #53B553!important;
    color: #fff !important;
}
.current .link_btn.job01 {
    background-color: #53B553;
}

.link_btn.job02 {
    border: 1px solid #08a4f8;
    background-color: #fff;
}
.link_btn.job02:hover {
    background-color: #08a4f8 !important;
    color: #fff !important;
}
.current .link_btn.job02 {
    background-color: #08a4f8;
}

.link_btn.job03 {
    border: 1px solid #FF8600;
    background-color: #fff;
}
.link_btn.job03:hover {
    background-color: #FF8600 !important;
    color: #fff !important;
}
.current .link_btn.job03 {
    background-color: #FF8600;
}

.link_btn.other {
    border: 1px solid #808080;
}
.link_btn.other:hover {
    background-color: #808080 !important;
    color: #fff !important;
}
.current .link_btn.other {
    background-color: #808080;
}

.link_btn:hover::after {
    color: #fff!important;
}
.current .link_btn::after {
    color: #fff;
}