@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;
    -webkit-text-size-adjust: 100%;
}


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

.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    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
==============================*/
.header_logo img {
    position: absolute;
    top: 30px;
    left: 30px;
    display: block;
    width: 230px;
    z-index: 1;
}

/* ------------------------
ハンバーガーメニュー
------------------------ */
/* アクティブになったエリア */
#g-nav.panelactive {
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
}

/* 丸の拡大 */
.circle-bg {
    position: fixed;
    z-index: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #ebf0f3;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
}

.circle-bg.circleactive {
    transform: scale(50);
}

/*ナビゲーションの縦スクロール*/
#g-nav-list {
    display: none;
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list {
    display: block;
    padding: 80px 0;
    box-sizing: border-box;
}

/* ナビゲーション */
div.menu {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
}

a.menu_logo img {
    position: absolute;
    top: 30px;
    left: 30px;
    display: block;
    width: 230px;
}

div.menu_box {
    width: 45%;
    margin: 0 auto;
    text-align: left;
}

div.menu_box ul {
    margin-bottom: 30px;
}

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

div.menu_box 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.menu_box ul li a:hover {
    transform: translate(10px, 0);
}

div.menu_box 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.menu_box ul li a.main:before {
    background-color: #ffffff00;
    width: 20px;
    height: 20px;
    right: 15px;
    left: auto;
    top: 0;
    bottom: 0;
    margin: auto;
}

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

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

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

a.contact_btn {
    display: block;
    margin-bottom: 20px;
    padding: 10px 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;
}

div.link_box a.footer_insta {
    position: relative;
    padding: 10px 20px;
    box-sizing: border-box;
}

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;
}

div.link_box 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;
}

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

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

a.sp_menu_pr:hover {
    opacity: 0.7;
}


/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.menu {
    opacity: 1;
}

/* 背景が出現後にナビゲーションを表示*/
#g-nav.panelactive div.menu,
#g-nav.panelactive a.menu_logo {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

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

    100% {
        opacity: 1;
    }
}

/* ハンバーガー */
.openbtn1 {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background-color: #aaaebe;
    border-radius: 50px
}

/* ×に変化 */
.openbtn1 span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    margin: auto;
    background-color: #fff;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top: -15px;
}

.openbtn1 span:nth-of-type(2) {
    top: 0px;
}

.openbtn1 span:nth-of-type(3) {
    top: 15px;
}

.openbtn1.active span:nth-of-type(1) {
    transform: translateY(7.5px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
    transform: translateY(-7.5px) rotate(45deg);
    width: 30%;
}

/* PC用メニュー非表示 */
div.pc_menu {
    display: none;
}


/*==============================
メインビジュアル
==============================*/
section#mv {
    display: flex;
    width: 100%;
    height: 500px;
}

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

h2.mv_copy {
    display: block;
    position: absolute;
    top: 40%;
    left: 50px;
    width: 80vw;
}

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: 45px;
}

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: 15px;
}

h2.main_h2 span::after {
    position: absolute;
    content: '';
    width: 8px;
    height: 8px;
    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: 15px;
    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: 30px;
    height: 30px;
    margin-left: 10px;
    border-radius: 100%;
    background-color: #cc4138;
    overflow: hidden;
}

a.btn_maru span.cycle:before {
    content: '';
    width: 12px;
    height: 12px;
    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: 15px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10px;
    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: 85%;
    padding: 80px 0;
    margin: 0 auto;
}

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

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

div.about_wrap p {
    width: 100%;
    padding-top: 30px;
    letter-spacing: 0.1em;
    line-height: 2.5em;
}


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

section#top_business div.business_wrap {
    width: 100%;
    margin: 0 auto;
}

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

section#top_business div.business_box {
    width: 100%;
    box-sizing: border-box;
    padding: 150px 0 80px;
    background-color: #969ac2;
}

section#top_business div.business_box h2 {
    width: 85%;
    margin: 0 auto;
}

div.business_link {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 85%;
    margin: 0 auto;
    padding-top: 30px;
}

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

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


/*==============================
NEWS お知らせ
==============================*/
section#top_news {
    width: 85%;
    padding: 80px 0;
    margin: 0 auto;
}

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

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

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

ul.news_list li a {
    position: relative;
    display: block;
    padding: 20px 30px 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_date {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    color: #808080;
    font-weight: 400;
}


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

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

div.works_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
}

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

a.works_top4 {
    width: 48%;
}

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 {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    font-size: 16px;
    padding: 20px 20px 20px 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: 85% !important;
    padding: 80px 0;
    margin: 0 auto;
}

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

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


/*=================================================
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);
    padding: 30px 30px 200px;
    box-sizing: border-box;
}

div.top_estate_wrap a h2 {
    font-size: 40px;
}

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: 40px;
    height: 40px;
    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: 50px 0;
    box-sizing: border-box;
}

div.links_wrap {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

div.links_wrap a {
    position: relative;
    width: 49%;
    padding: 30px 30px 100px;
    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: 30px;
}

div.links_wrap a.link_insta h2 img {
    width: 25px;
    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;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 30px 0;
}

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

a.footer_logo_sp {
    display: none;
}

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

div.sdgs_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

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


div.footer_top div.link_box a {
    display: none;
}


div.footer_menu {
    display: none;
}

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

a.pagetop {
    display: none;
}


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

div.sub_header h2 {
    width: 85%;
    margin: 0 auto;
}

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

h2.sub_h2::after {
    position: absolute;
    left: 0;
    content: '';
    width: 55px;
    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: 18px;
    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: 14px;
    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: 80px 0;
}

div.greeting_wrap {
    width: 85%;
    margin: 0 auto;
}

img.company_greeting {
    position: absolute;
    top: 80px;
    right: 0;
    width: 40%;
    height: 200px;
    object-fit: cover;
    object-position: center;
}

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

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

div.greeting_comment_box {
    width: 47%;
}

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: 80px;
    margin-left: 30px;
}

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

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


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

div.philosophy_wrap {
    width: 85%;
    margin: 0 auto;
}


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

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

div.management_box {
    position: relative;
    display: block;
    margin: auto;
    padding: 20%;
    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: 16px;
    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: 18px;
}

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: 80px 0 0;
}

div.company_p_container {
    margin: 0 auto;
    padding-top: 50px;
    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: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

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

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


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

div.outline_wrap {
    width: 85%;
    margin: 0 auto;
}

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

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

table.outline_table {
    width: 80%;
    margin: 0 0 0 auto;
}

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: 150px;
    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: 80px;
    position: sticky;
    top: 0;
}

table.award_table {
    width: 80%;
    margin: 0 0 0 auto;
    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: 12px;
}

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 {
    display: block;
    padding-top: 5px;
    box-sizing: border-box;
    font-size: 13px;
    font-weight: 400;
}



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

div.access_wrap {
    width: 85%;
    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: 50px;
    width: 100%;
    height: 350px;
}


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

div.construction_wrap {
    width: 85%;
    margin: 0 auto;
}

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

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

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

div.sub_link_box a {
    position: relative;
    display: flex;
    width: 30%;
    margin-left: 10px;
    padding: 20px 30px 20px 15px;
    box-sizing: border-box;
    border-bottom: 1px solid #aaaebe;
    font-size: 15px;
    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: 15px;
    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: 15px;
}

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


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

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

.accordion-container .accordion-title::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    /*横線*/
    width: 10px;
    height: 2px;
    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: 13px;
    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: 10px;
}

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


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

iframe.estate-info_cp {
    display: none;
}


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

div.works_wrap {
    width: 85%;
    margin: 0 auto;
}

div.works_wrap div.works_img img {
    height: 18vw;
    object-fit: cover;
    object-position: center;
}

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

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

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

div.works_wrap div.works_container a.works_box {
    margin: 0 1% 4%;
}

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


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

div.group_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 85%;
    margin: 0 auto;
}

/* div.group_box {
    width: 45%;
    margin: 0 2% 50px;
}

div.group_box h3 {
    font-size: 15px;
    margin-bottom: 20px;
}

div.group_box img {
    display: block;
    width: 100%;
    height: 200px;
    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: 13px;
}

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

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

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

}

div.group_ctn {
    width: 100%;
}

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

h2.sub_h2_ja {
    padding: 0.5em;
    font-size: 20px;
    border-bottom: 1px solid #aaaebe;
}

div.group_box {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: self-start;
    gap: 5vw;
}

div.group_ctn div.group_box:nth-child(1) {
    margin-top: 50px !important;
}

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: 15px;
}

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 80px;
}

#business div.business_wrap {
    width: 85%;
    margin: 0 auto;
}

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

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

#business div.business_box img.business_pic {
    display: block;
    width: 70%;
    margin: 30px auto;
}

#business div.business_box strong {
    display: inline-block;
    margin-top: 20px;
    font-size: 17px;
    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: 40px auto 0;
    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: 80px 0;
}

#news div.news_wrap {
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

a.news_box {
    display: flex;
    flex-direction: column;
    width: 31%;
    margin: 0 1% 4%;
}

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

div.thumbnail img {
    display: block;
    width: 100%;
    height: 18vw;
    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;
    padding: 15px 0;
    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: 30px;
    font-weight: 500;
}

a.news_box h3 span.news_date {
    position: absolute;
    bottom: 10px;
    display: block;
    margin-bottom: 0;
    font-weight: 400;
    font-size: 12px;
}

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;
}

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


/*ページネーション*/
div.archive_pagination {
    width: 100%;
    margin: 50px 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: 85%;
    margin: 0 auto;
}

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

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

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

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

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

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;
    height: auto;
}

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

div.wp-caption {
    max-width: 100% !important;
    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: 30px 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: 80px 0;
    margin: 0 auto;
}

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

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

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

div.privacy_box p {
    padding-top: 15px;
    line-height: 1.8em;
}

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


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


/*===========================================================================
お問い合わせ
============================================================================*/
#inquiry {
    width: 85%;
    padding: 80px 0;
    margin: 0 auto;
}

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

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

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

div.inq_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 80px 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: 10px auto;
}

label.inq_radio {
    display: block;
    width: 45%;
    margin: 10px auto;
    padding: 20px 15px;
    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: 20px 15px;
    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: 150px;
    padding: 10px;
}


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

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

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

/* 入力内容確認 */
p.confirm_p {
    display: block;
    width: 100%;
    margin: 15px auto;
    padding: 0 10px 15px;
    box-sizing: border-box;
    font-size: 14px;
    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: 30px 20px;
    box-sizing: border-box;
    border-radius: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    font-size: 16px;
    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: 30px 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: 80px 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: 13px;
}


/*===========================================================================
お問い合わせ（WPプラグイン版）
============================================================================*/
/* エラーテキスト */
span.wpcf7-not-valid-tip {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #cc4138;
}

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

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

span.wpcf7-list-item label {
    display: block;
    padding: 20px 15px;
    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: 15px auto 0;
    padding: 20px 15px;
    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.wpcf7-textarea {
    height: 150px;
    padding: 10px;
}

/* 送信ボタン */
input.wpcf7-submit {
    display: block;
    width: 100%;
    margin-top: 45px;
    padding: 30px 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: 30px 20px;
    box-sizing: border-box;
    border-radius: 5px;
    font-size: 15px;
    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;
}