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

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: #333;
    overflow-x: hidden;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: .1em;
    font-weight: 500;
}


/*==============================
アニメーション
==============================*/
/* フェードインアニメーション */
.scrollanime {
    opacity: 0;
}

.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

.downup {
    animation-duration: 1s;
    transform: translateY(100px);
}

.delay_01 {
    animation-delay: 0.2s;
}

.delay_02 {
    animation-delay: 0.4s;
}

.delay_03 {
    animation-delay: 0.6s;
}


/*==============================
header
==============================*/
div.pc_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    width: 100%;
    height: 80px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 3px 1px 3px 3px rgba(0, 0, 0, 0.1);
}

a.header_logo {
    display: block;
    width: 280px;
    margin-left: 20px;
    transition: .2s;
}

a.header_logo h1 img {
    display: block;
    width: 100%;
}

a.header_logo:hover {
    opacity: .7;
}

ul.menu {
    display: flex;
    align-items: center;
}

a.menu_single_a {
    position: relative;
    display: block;
    display: flex;
    align-items: center;
    height: 80px;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

li a.menu_single_a::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background-color: #cc4138;
    top: 0;
    bottom: 0;
    left: 10px;
    margin: auto;
    transition: ease-out .2s;
    opacity: 0;
}

a.menu_single_a:hover {
    color: #cc4138;
}

a.menu_single_a:hover::before {
    opacity: 1;
    left: 0;
}

/* 下層メニュー */
ul.menu_second-level {
    position: absolute;
    top: 80px;
    width: 100%;
    max-width: 600px;
    padding: 10px 30px;
    box-sizing: border-box;
    background: #ebf0f3;
    font-size: 15px;

    /* カーソルを合わせるまで非表示 */
    visibility: hidden;
    opacity: 0;
    transition: 1s cubic-bezier(.19, 1, .22, 1);
}

ul.menu_second-level li a {
    position: relative;
    display: inline-block;
    padding: 5px 0;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #333;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

ul.menu_second-level_works {
    display: flex;
    flex-wrap: wrap;
}

ul.menu_second-level_works li {
    display: block;
    width: 45%;
}

ul.menu_second-level_works li.menu_works_title {
    display: block;
    width: 100%;
    padding: 10px 0;
    margin: 10px 0;
    border-bottom: 1px solid #aaaebe;
    font-size: 16px;
    font-weight: 600;
}

ul.menu_second-level li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #aaaebe;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

ul.menu_second-level li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

/* カーソルを合わせると下層表示 */
li.menu_single:hover ul.menu_second-level {
    top: 80px;
    visibility: visible;
    opacity: 1;
}

/* お問い合わせ */
a.contact_btn {
    margin-right: 20px;
    padding: 5px 20px;
    box-sizing: border-box;
    border-radius: 100px;
    background-color: #cc4138;
    border: 2px solid #cc4138;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: #fff !important;
    transition: ease-out .2s;
}

a.contact_btn::before {
    display: none;
}

a.contact_btn:hover {
    background-color: #ebf0f3;
    color: #cc4138 !important;
}


@media screen and (max-width:1600px) {
    li a.menu_single_a {
        font-size: 16px;
    }

    ul.menu li a.contact_btn {
        padding: 5px 15px;
        font-size: 15px;
    }

}

@media screen and (max-width:1100px) {
    div.pc_menu {
        height: 60px;
    }

    a.header_logo {
        width: 230px;
    }

    li a.menu_single_a {
        font-size: 14px;
        padding: 0 15px;
    }

    ul.menu_second-level,
    li.menu_single:hover ul.menu_second-level {
        top: 60px;
        max-width: 400px;
        font-size: 14px;
    }
}

/* スマホ用メニュー非表示 */
div.sp_menu {
    display: none;
}

/*============================================================
トップページ
============================================================*/
/*==============================
メインビジュアル
==============================*/
section#mv {
    display: flex;
    width: 100%;
    height: 50vw;
    min-height: 600px;
}

div.mv_copy_wrap {
    position: relative;
    width: 45%;
    background-color: #aaaebe;
}

h2.mv_copy {
    display: block;
    position: absolute;
    top: 40%;
    left: 50px;
    width: 70vw;
    min-width: 500px;
}

h2.mv_copy img {
    display: block;
    width: 100%;
}

h2.mv_copy img.mv_copy_sp {
    display: none;
}

div.mv_img_wrap {
    display: block;
    width: 70%;
    background-image: url(../images/mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}


/*==============================
common
==============================*/
/* 見出し */
h2.main_h2 {
    font-family: "Montserrat", sans-serif;
    color: #aaaebe;
    font-weight: 400;
    font-size: 60px;
}

h2.main_h2 span {
    position: relative;
    display: block;
    margin-left: 1em;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    font-weight: 700;
    font-size: 18px;
}

h2.main_h2 span::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cc4138;
    top: 0;
    bottom: 0;
    left: -1em;
    margin: auto;
}

/* 見出し 文字色 白 */
h2.main_h2_wh {
    color: #fff;
}

h2.main_h2_wh span {
    color: #fff;
}

/* ボタン */
a.btn_maru {
    position: relative;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    padding-right: 50px;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

a.btn_maru span.cycle {
    position: absolute;
    position: relative;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-left: 20px;
    border-radius: 100%;
    background-color: #cc4138;
    overflow: hidden;
}

a.btn_maru span.cycle:before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url("../images/arrow_maru.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

a.btn_maru:hover {
    transform: scale(0.95);
}

a.btn_maru:hover span.cycle:before {
    animation: 0.5s arrow_anime;
    animation-timing-function: ease;
}

/* 矢印 アニメーション */
@keyframes arrow_anime {
    0% {
        transform: translateX(0px);
        opacity: 1;
    }

    50% {
        transform: translateX(30px);
        opacity: 0;
    }

    60% {
        transform: translateX(-15px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

.arrow:before {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}

.arrow_gr:before {
    background-image: url("../images/arrow_gr.svg");
}

.arrow_red:before {
    background-image: url("../images/arrow_red.svg");
}

.arrow_wh:before {
    background-image: url("../images/arrow_wh.svg");
}

.arrow:hover:before {
    animation: 0.5s arrow_anime;
    animation-timing-function: ease;
}

.arrow::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #ebf0f3;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

.arrow:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

/* 外部リンク */
a.link_blank {
    position: relative;
    display: inline-block;
    color: #333;
    padding-right: 19px;
    border-bottom: 1px solid #aaaebe;
    font-size: 14px;
    transition: ease-out .2s;
}

.link_blank:before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("../images/link_blank.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

a.link_blank:hover {
    opacity: 0.7;
}


/*==============================
ABOUT 丸山工業について
==============================*/
section#about {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    padding: 100px 0;
    margin: 0 auto;
}

div.about_wrap {
    width: 100%;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
}

div.about_wrap h3 {
    width: 50%;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2em;
}

div.about_wrap p {
    width: 45%;
    letter-spacing: 0.1em;
    line-height: 2.5em;
}


/*==============================
BUSINESS 事業内容
==============================*/
section#top_business {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 100px;
}

section#top_business div.business_wrap {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    background-color: #969ac2;
}

img.business_img {
    display: block;
    width: 45%;
    margin-top: -100px;
    margin-bottom: 100px;
}

section#top_business div.business_box {
    width: 50%;
    box-sizing: border-box;
    margin: 0 5vw;
    box-sizing: border-box;
}

div.business_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding-top: 80px;
}

div.business_link a {
    position: relative;
    display: flex;
    width: 48%;
    padding: 20px 30px 20px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #ebf0f3;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

div.business_link a span {
    display: flex;
    align-items: center;
}


/*==============================
NEWS お知らせ
==============================*/
section#top_news {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    padding: 100px 0 150px;
    margin: 0 auto;
}

div.news_wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

div.news_btn_box {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
}

ul.news_list {
    position: relative;
    display: block;
    width: 70%;
    z-index: 10;
}

ul.news_list li a {
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 50px 20px 10px;
    box-sizing: border-box;
    border-bottom: 1px solid #ddd;
    color: #333;
}

ul.news_list li a::after {
    background: #ddd;
    transition: transform 0.5s;
}

span.news_title {
    display: block;
}

span.news_date {
    margin-right: 30px;
    font-size: 14px;
    color: #808080;
}


/*==============================
WORKS 施工事例
==============================*/
section#top_works {
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
    background-color: #ebf0f3;
}

section#top_works h2.main_h2 {
    width: 80%;
    margin: 0 auto 80px;
}

div.works_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 80%;
    min-width: 1000px;
    max-width: 1500px;
    margin: 0 auto;
}

a.works_box {
    display: flex;
    flex-direction: column;
    width: 32%;
    margin-bottom: 2%;
}

a.works_top4 {
    width: 49%;
}

div.works_img {
    width: 100%;
    overflow: hidden;
}

div.works_img img {
    display: block;
    width: 100%;
    transform: scale(1.1);
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

a.works_box:hover div.works_img img {
    transform: scale(1.0);
}

a.works_box h3 {
    display: flex;
    align-items: center;
    flex-grow: 1;
    position: relative;
    font-size: 20px;
    padding: 30px 30px 30px 0;
    box-sizing: border-box;
    border-bottom: 1px solid #aaaebe;
    color: #333;
}

a.works_box:hover h3::before {
    animation: 0.5s arrow_anime;
    animation-timing-function: ease;
}

a.works_box h3::after {
    background: #aaaebe;
    transition: transform 0.5s;
}

a.works_box:hover h3::after {
    transform: scale(1, 1);
    transform-origin: left top;
}


/*==============================
STAFF BLOG スタッフブログ
==============================*/
section.top_blog {
    width: 80% !important;
    padding: 100px 0;
    margin: 0 auto;
}

section.top_blog div.news_wrap {
    width: 100% !important;
    padding: 80px 0 0;
}

div.blog_btn_box {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 30px;
}

/*=================================================
REAL ESTATE 不動産情報 & CONTACT お問い合わせ
=================================================*/
section#top_estate {
    width: 100%;
    margin: 0 auto;
}

div.top_estate_wrap {
    display: flex;
    flex-wrap: wrap;
}

div.top_estate_wrap a {
    position: relative;
    display: block;
    width: calc(100% / 2);
    /* height: 30vw; */
    padding: 30px 30px 300px;
    box-sizing: border-box;
}

div.top_estate_wrap a.link_estate:hover,
div.top_estate_wrap a.link_contact:hover {
    background-size: 120%;
}

div.top_estate_wrap a.link_estate {
    background-image: url(../images/bg_estate.jpg);
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: center;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

div.top_estate_wrap a.link_contact {
    background-image: url(../images/bg_contact.jpg);
    background-repeat: no-repeat;
    background-size: 130%;
    background-position: center;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

div.top_estate_wrap a:before {
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    top: auto;
}

div.top_estate_wrap a.arrow::after {
    height: 0;
}

/*=================================================
INSTAGRAM インスタ & STAFF BLOG スタッフブログ
=================================================*/
section#top_links {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    box-sizing: border-box;
}

div.links_wrap {
    display: flex;
    justify-content: space-between;
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

div.links_wrap a {
    position: relative;
    width: 49%;
    padding: 30px 30px 200px;
    border-radius: 15px;
    box-sizing: border-box;
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

div.links_wrap a.link_insta {
    background-color: #ebf0f3;
}

div.links_wrap a h2 {
    font-size: 50px;
}

div.links_wrap a.link_insta h2 img {
    width: 40px;
    margin-left: 5px;
}

div.links_wrap a.link_blog {
    background-color: #969ac2;
}

div.links_wrap a span.cycle {
    position: absolute;
    right: 30px;
    bottom: 30px;
}


/*==============================
footer
==============================*/
footer {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 10px;
    border-top: 1px solid #ddd;
}

div.footer_top {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
    padding: 50px 0;
}

a.footer_logo {
    display: block;
    width: 250px;
}

a.footer_logo_sp {
    display: none;
}

a.footer_logo img {
    display: block;
    width: 100%;
}

div.footer_top div.link_box {
    display: flex;
    align-items: center;
}

div.sdgs_wrap {
    display: flex;
    margin-right: 50px;
}

div.sdgs_wrap img {
    display: block;
    width: 80px;
    margin: 0 10px;
}

div.footer_top div.link_box a {
    display: block;
    font-family: "Montserrat", sans-serif;
    color: #cc4138;
    font-weight: 600;
}

div.footer_top div.link_box a.contact_btn {
    margin: 0 auto 15px;
    font-weight: 500;
}

div.footer_top div.link_box a.footer_insta {
    position: relative;
}

div.footer_top div.link_box a.footer_insta:before {
    content: '';
    width: 15px;
    height: 15px;
    background-image: url("../images/insta_red.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

a.footer_insta::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #cc4138;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}

a.footer_insta:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

div.footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}

div.footer_menu_box {
    position: relative;
    width: 20%;
    margin: 0 auto;
}

div.footer_menu ul li a {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    color: #333;
    font-size: 14px;
    transition: ease-out .2s;
}

div.footer_menu ul li a::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #cc4138;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

div.footer_menu ul li a:hover {
    transform: translate(10px, 0);
}

div.footer_menu ul li a.main {
    position: relative;
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #aaaebe;
    font-size: 15px;
    font-weight: 600;
    transition: ease-out .2s;
}

div.footer_menu ul li a.main:before {
    background-color: #ffffff00;
    width: 20px;
    height: 20px;
    right: 15px;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
}

div.footer_menu ul li a.main:hover {
    transform: translate(0, 0);
}

div.footer_menu ul li a.main::after {
    background: #aaaebe;
    transition: transform 0.5s;
}

a.footer_links_pr {
    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-block;
    padding-bottom: 3px;
    font-size: 12px;
    color: #808080;
    border-bottom: 1px solid #aaaebe;
    transition: 0.2s;
}

a.footer_links_pr:hover {
    opacity: 0.7;
}

p.copyright {
    text-align: center;
    font-size: 10px;
    color: #aaaebe;
    font-weight: 400;
}

a.pagetop {
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: 150px;
}

a.pagetop img {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: block;
    width: 150px;
}



/*============================================================
サブページ
============================================================*/
/*==============================
common
==============================*/
/* サブページヘッダー */
div.sub_header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 280px;
    padding-top: 80px;
    background-color: #969ac2;
}

div.sub_header h2 {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

/* 見出し */
h2.sub_h2 {
    position: relative;
    padding-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    color: #aaaebe;
    font-weight: 400;
    font-size: 60px;
}

h2.sub_h2::after {
    position: absolute;
    left: 0;
    content: '';
    width: 60px;
    height: 1px;
    background: #aaaebe;
    bottom: 0;
}

h2.sub_h2_wh {
    color: #fff;
}

h2.sub_h2_wh::after {
    background: #fff;
}


/* サブページ　見出し h3 */
.sub_h3 {
    position: relative;
    padding: 15px 0 0 10px;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 000;
    color: #333;
}

.sub_h3::before {
    position: absolute;
    width: 5px;
    height: 25px;
    top: 0;
    left: 0;
    background-color: #969ac2;
    content: '';
    transform: rotate(45deg);
}

.sub_h3_wh {
    color: #fff;
}

/* 見出し　赤まる */
.h_maru {
    position: relative;
    display: block;
    width: 100%;
    padding-left: 15px;
    box-sizing: border-box;
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.h_maru::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #cc4138;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


/*============================================================
COMPANY 会社案内
============================================================*/
/*==============================
GREETING
==============================*/
#greeting {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

div.greeting_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

img.company_greeting {
    position: absolute;
    top: 100px;
    right: 0;
    width: 55%;
    min-width: 550px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

div.greeting_wrap h3 {
    margin-top: 80px;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 2em;
}

div.greeting_comment {
    width: 100%;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
}

div.greeting_comment_box {
    width: 45%;
}

div.greeting_comment_box p {
    letter-spacing: 0.1em;
    line-height: 2.5em;
}

div.ceo {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    margin-top: 50px;
}

div.ceo img {
    display: block;
    width: 100px;
    margin-left: 30px;
}

span.ceo_name {
    text-align: right;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

span.ceo_name span {
    display: block;
    font-size: 15px;
    font-weight: 400;
}


/*==============================
PHILOSOPHY
==============================*/
#philosophy {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    background-image: url(../images/bg_philosophy.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

div.philosophy_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}


/* ------------------------
経営理念
------------------------ */
div.management_wrap {
    width: 100%;
    padding: 100px 0;
}

div.management_container {
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

div.management_box {
    position: relative;
    display: block;
    padding: 15%;
    box-sizing: border-box;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
}

div.management_box p {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 2em;
}

div.management_box::before {
    position: absolute;
    width: 5px;
    height: 25px;
    top: 10px;
    left: 10px;
    content: '';
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

div.management_box:nth-of-type(1)::before {
    content: '01';
}

div.management_box:nth-of-type(2)::before {
    content: '02';
}

div.management_box:nth-of-type(3)::before {
    content: '03';
}


/* ------------------------
企業理念
------------------------ */
div.company_p_wrap {
    width: 100%;
    padding: 100px 0;
}

div.company_p_container {
    margin: 0 auto;
    padding-top: 80px;
    display: flex;
    justify-content: space-between;
}

div.company_p_box {
    display: block;
    width: 30%;
    box-sizing: border-box;
    border-top: 1px solid #fff;
}

span.company_p_no {
    display: inline-block;
    padding-top: 30px;
    font-family: "Montserrat", sans-serif;
    font-size: 20px;
}

div.company_p_box h4 {
    padding-top: 30px;
    font-size: 25px;
    letter-spacing: 0.1em;
}

div.company_p_box p {
    padding-top: 30px;
    letter-spacing: 0.1em;
    line-height: 2em;
    font-weight: 400;
}


/*==============================
OUTLINE
==============================*/
#outline {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

div.outline_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

/* ------------------------
会社概要
------------------------ */
div.outline_container {
    position: relative;
}

div.outline_title {
    padding-top: 100px;
    position: sticky;
    top: 0;
}

table.outline_table {
    width: 80%;
    margin: 0 0 0 auto;
    padding-top: 100px;
}

table.outline_table tr {
    border-top: 1px solid #ddd;
}

table.outline_table tr:last-child {
    border-bottom: 1px solid #ddd;
}

table.outline_table th {
    min-width: 200px;
    padding: 30px 20px;
    box-sizing: border-box;
    text-align: left;
    vertical-align: top;
}

table.outline_table td {
    padding: 30px 20px 30px 0;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 2em;
}

table.outline_table td a {
    margin-bottom: 5px;
}

ul.table_list {
    display: flex;
    flex-wrap: wrap;
}

ul.table_list li {
    position: relative;
    display: inline-block;
    padding: 0 30px 0 13px;
    box-sizing: border-box;
    color: #333;
}

ul.table_list li::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #aaaebe;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}


/* ------------------------
会社概要
------------------------ */
div.award_container {
    position: relative;
}

div.award_title {
    padding-top: 100px;
    position: sticky;
    top: 0;
}

table.award_table {
    width: 80%;
    margin: 0 0 0 auto;
    padding-top: 100px;
    border-left: 1px solid #ddd;
}

table.award_table th {
    position: relative;
    display: inline-block;
    width: 180px;
    padding: 20px;
    margin-left: 20px;
    box-sizing: border-box;
    vertical-align: top;
    text-align: left;
    color: #808080;
    font-weight: 400;
    font-size: 13px;
}

table.award_table th::before {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background-color: #ebf0f3;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

table.award_table td {
    padding: 20px 20px 20px 0;
    box-sizing: border-box;
    font-size: 15px;
    line-height: 2em;
    font-weight: 600;
}

table.award_table td span {
    padding-left: 20px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 400;
}



/*==============================
ACCESS
==============================*/
#access {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
    background-color: #aaaebe;
    color: #fff;
}

div.access_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

div.access_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

div.access_adress {
    padding-left: 20px;
    border-left: 1px solid #fff;
}

div.access_adress span.h_maru {
    color: #fff;
}

div.access_adress p {
    font-size: 14px;
}

div.access_wrap iframe {
    padding-top: 80px;
    width: 100%;
    height: 500px;
}


/*============================================================
CONSTRUCTION 工事経歴
============================================================*/
#construction {
    width: 100%;
    padding: 100px 0;
}

div.construction_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

div.construction_wrap p.kome {
    padding-top: 10px;
    font-size: 13px;
    text-align: right;
}

div.construction_wrap h3 {
    margin-top: 80px;
}

div.sub_link_box {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

div.sub_link_box a {
    position: relative;
    display: flex;
    width: 20%;
    min-width: 200px;
    margin-left: 20px;
    padding: 20px 30px 20px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #aaaebe;
    font-size: 16px;
    font-weight: 600;
}

div.sub_link_box a::after {
    background: #aaaebe;
}


/* ------------------------
アコーディオン
------------------------ */
div.construction_wrap div.accordion-container {
    width: 100%;
    padding-top: 50px;
}

.accordion_one {
    width: 100%;
    box-sizing: border-box;
}

/* タイトル部分 */
.accordion-container .accordion-title {
    position: relative;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-weight: bold;
    color: #333;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    transition: ease-out .2s;
}

.accordion-container .accordion-title span {
    font-size: 18px;
}

.accordion-container .accordion-title:hover {
    background-color: #ebf0f3;
}


/* 開いた部分 */
.accordion-content {
    position: relative;
    display: none;
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
}

/* +と- */
.accordion-container .accordion-title::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 25px;
    /*縦線*/
    width: 15px;
    height: 3px;
    transform: rotate(90deg);
    background: #aaaebe;
    transition: all .3s ease-in-out;
}

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 25px;
    /*横線*/
    width: 15px;
    height: 3px;
    background: #aaaebe;
    transition: all .2s ease-in-out;
}

/* +-のアニメーション */
.accordion-container .accordion-title.open::before {
    transform: rotate(180deg);
}

.accordion-container .accordion-title.open::after {
    opacity: 0;
}

table.construction_table {
    width: 100%;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-size: 14px;
    text-align: left;
}

table.construction_table tr {
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

table.construction_table th,
table.construction_table td {
    border-left: 1px solid #ddd;
    box-sizing: border-box;
    padding: 15px;
}

table.construction_table th {
    background-color: #aaaebe;
    color: #fff;
    font-weight: 600;
}


/*============================================================
REAL ESTATE 不動産情報
============================================================*/
#estate-info {
    width: 100%;
    padding: 100px 0;
}

iframe.estate-info_cp {
    display: block;
    margin: 0 auto;
}

div.estate-info_sp {
    display: none;
}


/*============================================================
WORKS 施工事例
============================================================*/
#works {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

div.works_wrap {
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

div.works_wrap div.works_container div.works_img img {
    height: 15vw;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
}

div.works_wrap div.works_container {
    justify-content: flex-start;
    width: 100%;
    padding-top: 50px;
}

div.works_wrap div.works_container {
    width: 100%;
    padding-top: 50px;
}

div.works_wrap div.works_container a.works_box {
    margin: 0 0.5% 2%;
}

div.works_wrap div.works_container h3 {
    font-size: 16px;
}

div.works_link {
    width: 100%;
    padding-bottom: 100px;
}

div.sub_link_box:nth-of-type(1) {
    margin-bottom: 50px;
}


/*============================================================
GROUP COMPANY グループ企業紹介
============================================================*/
#group {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

div.group_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

/* div.group_box {
    width: 45%;
    margin: 0 2% 5%;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 3vw;
}

div.group_box h3 {
    margin-bottom: 30px;
}

div.group_box img {
    display: block;
    width: 100%;
    height: 25vw;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
}

div.group_box p {
    display: inline-block;
    margin-top: 20px;
    padding-left: 20px;
    box-sizing: border-box;
    border-left: 1px solid #aaaebe;
    font-size: 14px;
}

div.group_box p span {
    font-weight: 600;
    font-size: 15px;
}

div.group_box a {
    margin-top: 10px;
} */

/* re 202412 */
div.group_wrap>*+*{
    margin-top: 100px;
}

div.group_ctn {
    width: 100%;
}

div.group_ctn>*+* {
    margin-top: 80px;
}

h2.sub_h2_ja{
    padding: 0.5em;
    font-size: 28px;
    border-bottom: 1px solid #aaaebe;
}
div.group_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3vw;
}

div.group_box img {
    display: block;
    width: 30%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
}

div.group_ol {
    width: 75%;
}

div.group_ol>*+* {
    margin-top: 20px;
}

div.group_ol h4 {
    font-size: 20px;
    font-weight: 600;
}

table.group_table {
    width: 100%;
}

table.group_table tr {
    border-bottom: 1px solid #ddd;
}

table.group_table th,
table.group_table td {
    padding: 1em;
    box-sizing: border-box;
}

table.group_table th {
    width: 100px;
    border-bottom: 1px solid #aaaebe;
}

div.group_links {
    display: flex;
    justify-content: flex-start;
    gap: 1.5em;
}

div.group_box h3.sp{
    display: none;
}

/*============================================================
BUSINESS 事業紹介
============================================================*/
#business {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 0 100px;
}

#business div.business_wrap {
    /* display: flex;
    flex-wrap: wrap; */
    width: 80%;
    max-width: 1500px;
    min-width: 1000px;
    margin: 0 auto;
}

#business div.business_box {
    width: 100%;
    margin: 0 2% 0;
    padding: 100px 0;
    border-bottom: 1px solid #aaaebe;
}

#business div.business_box h2 {
    font-size: 40px;
}

#business div.business_box h2 br {
    display: none;
}

#business div.business_box h3 {
    font-size: 25px;
    margin: 20px 0 50px;
    letter-spacing: 0.1em;
}

#business div.business_box_in {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#business div.business_box:nth-child(3) div.business_box_in,
#business div.business_box:nth-child(4) div.business_box_in {
    align-items: flex-start;
}

#business div.business_box img.business_pic {
    display: block;
    width: 30%;
    min-width: 400px;
    box-sizing: border-box;
    margin-right: 5vw;
}

#business div.business_box_in span {
    display: block;
    width: 50%;
}

#business div.business_box strong {
    display: block;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

#business div.business_box p {
    display: inline-block;
    margin-top: 20px;
    box-sizing: border-box;
    font-size: 14px;
}

#business div.business_box a.business_link {
    display: inline-block;
    display: flex;
    align-items: center;
    width: 420px;
    margin-top: 30px;
    padding: 15px 20px;
    border-radius: 10px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    background-color: #f3f7fa;
    transform: scale(1.0);
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

#business div.business_box a.business_link:hover {
    transform: scale(0.95);
}

#business div.business_box a.business_link img {
    display: block;
    width: 200px;
    padding-right: 30px;
    box-sizing: border-box;
    border-right: 1px solid #aaaebe;
}

#business div.business_box a.business_link span {
    position: relative;
    display: inline-block;
    width: auto;
    margin-left: 30px;
    padding-right: 19px;
    box-sizing: border-box;
    color: #333;
    border-bottom: 1px solid #aaaebe;
    font-size: 15px;
    font-weight: 600;
}

#business div.business_box a.business_link span:before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("../images/link_blank.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}


/*============================================================
NEWS お知らせ
============================================================*/
/*==============================
一覧ページ
==============================*/
#news {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

#news div.news_wrap {
    width: 80%;
    min-width: 1000px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

a.news_box {
    display: flex;
    flex-direction: column;
    width: 32%;
    margin: 0 0.5% 2%;
}

div.thumbnail {
    width: 100%;
    overflow: hidden;
}

div.thumbnail img {
    display: block;
    width: 100%;
    height: 15vw;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    transition: 2s cubic-bezier(.19, 1, .22, 1);
}

a.news_box:hover div.thumbnail img {
    transform: scale(1.0);
}

a.news_box h3 {
    flex-grow: 1;
    position: relative;
    font-size: 20px;
    padding: 20px 0 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #aaaebe;
    color: #333;
}

a.news_box h3 span.news_title {
    display: block;
    font-size: 14px;
    margin-bottom: 40px;
}

a.news_box h3 span.news_date {
    position: absolute;
    bottom: 15px;
    display: block;
}

a.news_box h3::before {
    top: auto;
    bottom: 15px;
    margin: 0;
}

a.news_box:hover h3::before {
    animation: 0.5s arrow_anime;
    animation-timing-function: ease;
}

a.news_box h3::after {
    background: #aaaebe;
    transition: transform 0.5s;
}

a.news_box:hover h3::after {
    transform: scale(1, 1);
    transform-origin: left top;
}


/*ページネーション*/
div.archive_pagination {
    width: 100%;
    margin: 100px auto 0;
    text-align: center;
}

div.archive_pagination a {
    display: inline-block;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 100px;
    padding: 3px 10px;
    margin: 0 5px;
    transition: .3s;
}

div.archive_pagination a:hover {
    background-color: #969ac2;
    border: 1px solid #969ac2;
    color: #fff;
}

nav.navigation h2 {
    display: none;
}


/*=====================
詳細ページ
=====================*/
div.news_content_wrap {
    width: 50%;
    max-width: 1500px;
    min-width: 800px;
    margin: 0 auto;
}

div.news_content_wrap h2 {
    position: relative;
    display: block;
    padding: 0 0 25px;
    font-size: 25px;
}

div.news_content_wrap h2::after {
    position: absolute;
    left: 0;
    content: '';
    width: 60px;
    height: 1px;
    background: #aaaebe;
    bottom: 0;
}

div.news_content_wrap h2 span.news_date {
    display: block;
    padding-top: 10px;
    font-size: 13px;
}

div.news_content {
    width: 100%;
    margin: 0 auto;
    padding: 80px 0;
    border-bottom: 1px solid #ddd;
    line-height: 2em;
}

div.news_content a {
    text-decoration: underline;
    color: #808080;
    transition: .2s;
}

div.news_content a:hover {
    opacity: .5;
}

div.news_content p {
    width: 100%;
    margin: 0 auto;
}

div.news_content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

div.gallery img {
    border: none !important;
    width: 100%;
    height: auto;
}

div.wp-caption {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

div.wp-caption img {
    width: 100%;
    height: auto;
}

dd.gallery-caption {
    display: block !important;
    width: 100%;
}

div.news_content .youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

div.news_content .youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

img.alignright {
    display: block;
    margin: 0 0 0 auto !important;
}

img.alignleft {
    display: block;
    margin: 0 auto 0 0 !important;
}

img.aligncenter {
    display: block;
    margin: 0 auto !important;
}

div.alignright {
    display: block;
    margin: 0 0 0 auto !important;
}

div.alignleft {
    display: block;
    margin: 0 auto 0 0 !important;
}

div.aligncenter {
    display: block;
    margin: 0 auto !important;
}

/* タグ */
ul.tag_list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding: 10px 0;
    box-sizing: border-box;
}

ul.tag_list li a {
    display: inline-block;
    margin-left: 10px;
    padding: 2px 10px;
    border-radius: 50px;
    box-sizing: border-box;
    background-color: #ebf0f3;
    font-size: 12px;
    color: #333;
    transition: ease-out .2s;
}

ul.tag_list li a:hover {
    opacity: 0.7;
}

/*一覧ページへ戻る*/
div.news_content_wrap a.btn_maru {
    justify-content: center;
    width: 300px;
    margin: 50px auto 0;
    padding: 0;
}


/* -------------- htmlテストページ用 -------------- */
div.news_content div.flexbox {
    justify-content: space-around;
    align-items: center;
}

div.news_content div.flexbox img {
    width: 45%;
}

div.news_content figure {
    display: block;
    width: 100%;
    margin: 30px auto;
}

div.news_content figcaption {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

div.news_content figure img {
    display: block;
    width: 100%;
}

div.news_content div.flexbox figure {
    display: block;
    width: 45%;
}

div.news_content div.flexbox figure img {
    display: block;
    width: 100%;
}

/* ---------------------------------------------*/


/*============================================================
PRIVACY POLICY　プライバシーポリシー
============================================================*/
section#privacy {
    width: 100%;
    padding: 100px 0;
    margin: 0 auto;
}

div.privacy_wrap {
    width: 80%;
    margin: 0 auto;
}

div.privacy_box {
    width: 100%;
    padding-top: 50px;
}

div.privacy_box:first-child {
    padding-top: 0;
}

div.privacy_box p {
    padding-top: 20px;
    line-height: 1.8em;
    font-weight: 400;
}

div.privacy_box p strong {
    padding-left: 10px;
    border-left: 3px solid #aaaebe;
}

div.privacy_box p a {
    color: #808080;
}




/*===========================================================================
お問い合わせ
============================================================================*/
#inquiry {
    width: 50%;
    max-width: 1500px;
    min-width: 800px;
    padding: 100px 0;
    margin: 0 auto;
}

div.inquiry_top {
    width: 100%;
    margin: 0 auto;
    padding-bottom: 100px;
}

div.mailform_top {
    width: 100%;
    margin: 0 auto;
}

div.mailform_top p {
    padding-top: 30px;
}

div.inq_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0;
}

div.inq_box {
    width: 100%;
    margin: 50px auto 0;
}

p.inq_h {
    margin: 50px auto 0;
    font-size: 15px;
    font-weight: 500;
}

p.inq_h:first-child,
div.inq_box:first-child {
    margin: 0 auto;
}

/* 必須・任意　*/
p.inq_h span {
    margin-right: 10px;
    padding: 2px 10px;
    box-sizing: border-box;
    border-radius: 100px;
    font-size: 12px;
    color: #cc4138;
    border: 1px solid #cc4138;
}

/* エラーテキスト */
span.error_disp {
    font-size: 14px;
    color: #cc4138;
}

/* 入力部分 */
div.inq_radio_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto;
}

label.inq_radio {
    display: block;
    width: 30%;
    margin: 10px auto;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: .3s;
    cursor: pointer;
}

label.inq_radio:hover {
    background-color: #ebf0f3;
}

label.inq_text input,
select,
textarea {
    display: block;
    width: 100%;
    margin: 20px auto;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ebf0f3;
    color: #333;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}


textarea.inq_textarea {
    height: 200px;
    padding: 10px;
}


/* プライバシーポリシー */
label.inq_check {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: .3s;
}

a.inq_privacy {
    color: #808080;
    text-decoration: underline;
}

label.inq_check:hover {
    background-color: #ebf0f3;
}


/* 入力内容確認 */
p.confirm_p {
    display: block;
    width: 100%;
    margin: 20px auto;
    padding: 0 20px 20px;
    box-sizing: border-box;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}


/* 送信ボタン */
div.confirm_wrap {
    text-align: center;
}

input.button,
a.button {
    display: block;
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: .3s;
}

input.button:hover,
a.button:hover {
    color: #fff;
    background-color: #aaaebe;
}


/*戻る*/
.return_button {
    display: block;
    margin: 50px auto 0;
    border: 1px #aaaebe solid;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    background-color: #fff;
    padding: 0.5vw 0;
    border-radius: 10px;
    width: 8vw;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.return_button:hover {
    background-color: #aaaebe;
}


/*==============================
個人情報保護方針
==============================*/
ul.privacy_list {
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
}

ul.privacy_list li {
    position: relative;
    padding: 0 30px 0 13px;
    margin-bottom: 10px;
    box-sizing: border-box;
    color: #333;
}

ul.privacy_list li::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50px;
    background-color: #aaaebe;
    top: .6em;
    left: 0;
}


/*==============================
電話でのお問い合わせ
==============================*/
div.tel_top {
    width: 100%;
    margin: 0 auto;
    padding: 100px 0 0;
}

div.tel_top_wrap {
    margin-top: 30px;
    padding-left: 20px;
    border-left: 1px solid #ddd;
}

div.tel_top_wrap p.tel_no {
    padding-bottom: 15px;

}

div.tel_top_wrap p.tel_no span {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;

}

div.tel_top p.kome {
    margin-top: 20px;
    font-size: 14px;
}


/*===========================================================================
お問い合わせ（WPプラグイン版）
============================================================================*/

/* エラーテキスト */
span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #cc4138;
}

/* 入力部分 */
span.wpcf7-form-control {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px auto 0;
}

span.wpcf7-list-item {
    display: block;
    width: 30%;
    margin: 10px auto;
}

span.wpcf7-list-item label {
    display: block;
    width: 100%;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: .3s;
    cursor: pointer;
}

span.wpcf7-list-item label:hover {
    background-color: #ebf0f3;
}

input.wpcf7-text,
textarea.wpcf7-textarea {
    display: block;
    width: 100%;
    margin: 20px auto 0;
    padding: 25px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    background-color: #ebf0f3;
    color: #333;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* 送信ボタン */
input.wpcf7-submit {
    display: block;
    width: 100%;
    margin-top: 50px;
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 18px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: .3s;
}

input.wpcf7-submit:hover {
    color: #fff;
    background-color: #aaaebe;
}

div.wpcf7-response-output {
    margin-top: 30px;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* 内容確認 */
span.wpcf7-acceptance span {
    width: 100%;
}

span.wpcf7-acceptance label {
    display: block;
    width: 100%;
    border: 1px solid #ddd;
    padding: 40px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    transition: .3s;
}

span.wpcf7-acceptance label span.wpcf7-list-item-label {
    margin-left: 10px;
}

/*戻る*/
.wpcf7-previous {
    display: block;
    margin: 0 auto;
    border: 1px #aaaebe solid;
    color: #333;
    font-weight: bold;
    font-size: 15px;
    background-color: #fff;
    padding: 0.5vw 0;
    border-radius: 10px;
    width: 8vw;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.wpcf7-previous:hover {
    background-color: #aaaebe;
}