/*!
Theme Name: mid-myart
Theme URI: https://www.mid-myart.com/
Author: mid-myart
Description: Description
Version: 1.0.0
Text Domain: https://www.mid-myart.com/
*/

/*--------------------------------------------------------------
# Reset
--------------------------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
text-decoration: none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
display: block;
}
html,body{
  height: 100%;
  margin: 0;
}
html {
    font-size: 62.5%;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
a{
	color: #ffffff;
	transition: .4s;
}
a:hover{
	opacity: 0.8;
}
p {
　　　overflow-wrap: break-word;
　　　word-wrap: break-word;
}

/*--------------------------------------------------------------
# 全体
--------------------------------------------------------------*/
body {
    width:100%;
    font-family: "Noto Sans JP", sans-serif;
    margin:0;
    padding:0;
    color:#ffffff;
    line-height:1.7;
    position: relative;
    font-size: 1.6rem;
	background:#000000;
}
main{
	flex: 1; 
}
#wrapper{
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.sp_text_br{
		display: none;
	}
.pc_hidden_text{
	display: none;
}
.sp_hidden_text{
	display: block;
}
.contents_wrap {
    width: 1200px;
    margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
	display: block;
}
.main_title_wrap{
    margin-bottom: 40px;
}
.main_title {
    font-size: 3rem;
    text-align: center;
    letter-spacing: 1px;
    padding-bottom: 10px;
}
.vertical-line {
  width: 1px;
  height: 40px;
  background-color: #ffffff;
  margin: 0 auto;
}
.mar_t40{margin-top: 40px;}
.mar_b40{margin-bottom: 40px;}
.mar_tb40{margin: 40px 0;}
.mar_t50{margin-top: 50px;}
.mar_b50{margin-bottom: 50px;}
.mar_tb50{margin: 50px 0;}
.mar_t80{margin-top: 80px;}
.mar_b80{margin-bottom: 80px;}
.mar_tb80{margin: 80px 0;}
.mar_t100{margin-top: 100px;}
.mar_b100{margin-bottom: 100px;}
.mar_tb100{margin: 100px 0;}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
/***メニュー***/
/* ============================
   共通: ヘッダー全体
============================ */
header {
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
    border-bottom: solid 1px #333333;
    height: 100px;
}
#home header{
	border-bottom: none;
	background: none;
}
h1.header_logo .s_text{
    display: block;
    font-size: 1.6rem;
}
h1.header_logo .b_text{
    font-size: 2.4rem;
}

/* ============================
   モバイル用メニューアイコン（ハンバーガー）
============================ */
header .menu-toggle {
    position: fixed;
    top: 19px;
    right: 15px;
    z-index: 1001;
    cursor: pointer;
    width: 30px;
    height: 23px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.4s ease;
    transform-origin: center;
}

header .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(13px);
    margin-left: 15px;
}
header .menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
header .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-15px);
    margin-left: 15px;
}

/* ============================
   モバイルメニュー本体（非表示から表示）
============================ */
header .menu {
    display: none; /* ← 最初は非表示でチラ見え防止 */
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #000000;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 60px 20px;
}

header .menu.open {
    display: block; /* ← 開いたときに表示 */
    right: 0;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}

/* メニュー内リスト */
header .menu ul {
    list-style: none;
    padding: 0;
}

header .menu ul li {
    text-align: center;
}

header .menu ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 2.3rem;
    font-weight: 500;
    font-style: normal;
}

/* サブメニュー */
header .menu ul li ul {
    display: none;
    padding-left: 15px;
}

/* サブメニュー矢印 */
header .submenu-toggle .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}
header .submenu-toggle.open .arrow {
    transform: rotate(180deg);
}

/* ============================
   ヘッダー内部のフレックスレイアウト
============================ */
header .flexbox {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    margin-left: 20px;
}

header .flexbox .text_logo {
    font-size: 2.4rem;
    font-weight: bold;
}

header .flexbox .g_nav_wrap {
    display: flex;
    align-items: center;
}

/* ============================
   PC表示時（980px以上）
============================ */
@media (min-width: 980px) {
    header .menu-toggle {
        display: none;
    }

    header .menu {
        display: block !important;
        position: static;
        width: auto;
        height: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        right: 0 !important;
    }

    header .menu ul {
        display: flex;
        gap: 30px;
    }

    header .menu ul li a {
        font-size: 1.7rem;
        color: #ffffff;
        line-height: 1;
    }

    header .menu ul li ul {
        display: none;
    }
}

/*--------------------------------------------------------------
# スクロールアニメーション
--------------------------------------------------------------*/
/* アニメーション設定 */
.scr_fadeup {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
}
.scr_fadeup.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: 1s;
}

/*--------------------------------------------------------------
# TOPページ
--------------------------------------------------------------*/
#home main{
    margin-bottom: 0px;
}
#home #page_header_wrap,#home .pankuzu{
	display: none;
}
#home #wrapper {
    background: url(images/home_mv.jpg);
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}
#home #mv_area {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 100%;
}
#home #mv_area .contents_inner{
}
#home #mv_area .mv_title {
    font-size: 6rem;
    text-align: center;
    font-family: "Didact Gothic", sans-serif;
    font-weight: bold;
}
#home #mv_area img {
    width: 230px;
    margin: 0 auto;
    opacity: 0.7;
}
#top_news_area {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px 20px 20px;
    width: 60%;
}
#top_news_area .contents_inner{
    display: flex;
}
#top_news_area .left_box{
    width: 125px;
}
#top_news_area .right_box ul li{
    padding: 0px 0px 20px 0px;
}
#top_news_area .right_box ul li a {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
#top_news_area .right_box ul li a .date{
    color: #666666;
    margin-right: 20px;
	width: 55px;
}
#top_news_area .right_box ul li a .title{
    width: calc(100% - 65px);
}
#top_news_area .right_box .more_wrap {
    display: flex;
    justify-content: end;
}
#top_news_area .right_box .more_wrap .more {
    display: block;
    font-size: 1.2rem;
    background: url(images/arrow_wh.png);
    width: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom;
    text-align: left;
}

/*--------------------------------------------------------------
# 下層ページ
--------------------------------------------------------------*/
main {
    margin-bottom: 100px;
}
.breadcrumb-area{
    font-size: 1.2rem;
	margin-bottom: 80px;
}
#page_header_wrap {
    padding: 80px 0px;
    border-bottom: solid 1px #333333;
    max-width: 1200px;
    margin: 100px auto 15px auto;
}
#page_header_wrap .page_header_title{
    text-align: left;
    font-size: 4rem;
    font-weight: bold;
}

/***COMPANY***/
#company .info_table{
    width: 100%;
    margin: 0 auto;
}
#company .info_table th {
    width: 30%;
    padding: 20px;
    vertical-align: middle;
    font-weight: bold;
}
#company .info_table td {
    padding: 20px;
    vertical-align: middle;
}
#company .info_table td p.title{
    margin-left: -10px;
}
#company .info_table td .s_text{
    margin-left: 15px;
}
#company .info_table tr:nth-child(odd) {
    background-color: #131313;
}
#company .simple_table th {
    width: 90px;
    padding: 0px 0px;
    text-align: left;
    font-weight: normal;
    vertical-align: baseline;
}
#company .simple_table td {
    padding: 0px 0px;
}
#company .simple_table tr:nth-child(odd) {
    background-color:transparent;
}
#company .map_wrap iframe {
  filter: grayscale(100%) contrast(1.1) brightness(0.8);
}

/*--------------------------------------------------------------
# 投稿（一覧ページ）
--------------------------------------------------------------*/
.topics_item_wrap{
    margin-bottom: 60px;
}
.topics_item_wrap li.news_item{
    padding: 30px 0px 25px 0px;
    border-bottom: solid 1px;
}
.topics_item_wrap li.news_item .textcont_wrap .news_day_cate {
    display: flex;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.topics_item_wrap li.news_item .textcont_wrap .news_day_cate .archive_day{
    width: 80px;
}
.topics_item_wrap li.news_item .textcont_wrap .news_day_cate .post-categories a{
    background: #ffffff;
    color: #333333;
    padding: 0 5px;
    font-size: 1.3rem;
}
.topics_item_wrap li.news_item .textcont_wrap .title_wrap{
	display: flex;
	justify-content: space-between;
}
.topics_item_wrap li.news_item .textcont_wrap .title_wrap .top_news_link span{
    font-size: 1.4rem;
}

/*--------------------------------------------------------------
# 投稿（詳細ページ）
--------------------------------------------------------------*/
.single_bottom_arrowbox{
    display: flex;
    justify-content: center;
    margin: 60px 0px;
    border-bottom: solid 1px;
    border-top: solid 1px;
    padding: 20px 0px;
}
.single_bottom_arrowbox .before a,.single_bottom_arrowbox .after a{
    margin: 0 20px;
    font-size: 1.4rem;
}
#news_single_page_wrap .top_box{
    border-left: solid 1px;
    padding-left: 10px;
	margin-bottom: 60px;
}
#news_single_page_wrap .top_box .news_day_cate{
    display: flex;
    align-items: center;
}
#news_single_page_wrap .top_box .news_day_cate .category_wrap a{
    background: #ffffff;
    color: #333333;
    padding: 0 5px;
    font-size: 1.4rem;
    margin-left: 10px;
}
#news_single_page_wrap .top_box .titlewrap .news_sigle_title{
    font-size: 2.4rem;
    margin: 10px 0px;
}
#news_single_page_wrap .contentsbox img{
    width: 90%;
    margin: 20px auto;
}

/*--------------------------------------------------------------
# 施工実績（一覧ページ）
--------------------------------------------------------------*/
#works_archive_wrap{
    margin-bottom: 100px;
}
#works_archive_wrap #cate_btn_area{
    display: flex;
    justify-content: center;
    margin: 0 0 60px;
}
#works_archive_wrap #cate_btn_area a {
    width: 18%;
    height: 55px;
    display: flex;
    border-radius: 50px;
    background: #ffffff;
    border: solid 1px #333333;
    color: #333333;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    position: relative;
	margin: 0 10px;
}
#works_archive_wrap #cate_btn_area a.active {
    background: #333333;
    color: #ffffff;
}
ul.works_item_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
ul.works_item_wrap:after {
    content: '';
    width: 31.5%;
    display: block;
}
ul.works_item_wrap li {
    width: 31.5%;
    margin-bottom: 50px;
}
ul.works_item_wrap li h4{
    font-size: 1.8rem;
    text-align: center;
    margin-top: 10px;
}
ul.works_item_wrap li .image_wrap {
    width: 100%;
    aspect-ratio: 380 / 250;
    position: relative;
}
ul.works_item_wrap li .image_wrap .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
ul.works_item_wrap li .image_wrap .category_wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #FFFFFF;
    padding: 2px 5px 0px 5px;
    font-size: 1.4rem;
    /* border-radius: 0 0 5px 0; */
    color: #333333;
}

/***詳細ページ***/
#works_single_page_wrap .top_box .category_wrap{
    display: flex;
    justify-content: center;
}
#works_single_page_wrap .top_box .cate_name{
    display: inline-block;
    background: #ffffff;
    color: #333333;
    padding: 0 10px;
    margin-bottom: 20px;
}
#works_single_page_wrap .left_line_title{
    font-size: 2.1rem;
    border-left: solid 3px #ffffff;
    padding-left: 10px;
}
#works_single_page_wrap .top_box{
    margin-bottom: 40px;
}
#works_single_page_wrap .double_image_wrap {
    display: flex;
    align-items: center;
    margin-top: 50px;
    justify-content: space-between;
}
#works_single_page_wrap .double_image_wrap .left_img{
	width: 48%;
	display: flex;
    justify-content: center;
}
#works_single_page_wrap .double_image_wrap .right_img{
	width: 48%;
	display: flex;
    justify-content: center;
}
#works_single_page_wrap .image_area{
	width: 80%;
	margin: 0 auto;
}
#works_single_page_wrap .image_area .single_image_wrap{
    display: flex;
    justify-content: center;
}
#works_single_page_wrap .double_image_wrap {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

#works_single_page_wrap .left_img, .right_img {
    width: 48%; /* 各画像の幅を50%に設定して隙間を作る */
    position: relative;
    background-color: #f0f0f0; /* 背景色（デフォルト） */
}

#works_single_page_wrap .left_img a, .right_img a {
    display: block;
    width: 100%;
    height: 100%;
}
/*--------------------------------------------------------------
# お問い合わせ
--------------------------------------------------------------*/
.required_text{
	font-size: 1.3rem;
	color: #333333;
}
.required {
    color: #ff2525;
}
#contact .info_text_wrap{
    text-align: center;
    line-height: 2;
}
#contact table {
    width: 100%;
    border-collapse: collapse;
}
#contact .contact_table th {
    padding: 30px 20px;
    text-align: left;
    font-weight: 500;
    border-bottom: solid 1px #D9D9DC;
    vertical-align: middle;
	color: #333333;
}
#contact .contact_table td {
    border-bottom: solid 1px #D9D9DC;
    padding: 30px 20px;
    font-weight: normal;
	color: #333333;
}
#contact .contact_form_wrap {
    background: #ffffff;
    padding: 40px 40px 40px;
    width: 80%;
    margin: 60px auto 0;
}
#contact .contact_table input.text01 {
    font-size: 1.6rem;
    width: 100%;
    border: solid 1px #cccccc;
    padding: 12px;
}
#contact .contact_table textarea {
    font-size: 1.6rem;
    width: 100%;
    border: solid 1px #cccccc;
    padding: 12px;
}
#contact .contact_submit_btn_wrap{
    display: flex;
    justify-content: center;
    margin: 40px 0px 0px;
}
#contact .contact_submit_btn_wrap .contact_submit_btn {
    width: 230px;
    height: 50px;
    background: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    color: #ffffff;
    border: solid 1px #333333;
    font-size: 2rem;
	transition: .4s;
}
#contact .contact_submit_btn_wrap .contact_submit_btn:hover{
	background: #ffffff;
	color: #333333;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer .footer-inner{
    text-align: right;
    padding: 20px;
}
footer .footer-inner p{
    font-size: 14px;
}

/***ページネーション***/
.post-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}
.post-pagination-wrapper ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    list-style: none;
}
.post-pagination-wrapper li {
    margin: 0 5px;
}
.post-pagination-wrapper a.page-numbers,
.post-pagination-wrapper span.page-numbers {
    background: #ffffff;
    border: solid 1px #000000;
    color: #000000;
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 40px;
    font-family: "Philosopher", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "slnt" 0;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-size: 1.6rem;
    text-decoration: none;
    transition: all 0.2s ease;
	margin: 0 5px;
}
.post-pagination-wrapper span.page-numbers.current {
    background: #cccccc;
    color: #ffffff;
    cursor: default;
}
.post-pagination-wrapper .page-numbers img {
    width: 10px;
}

/*--------------------------------------------------------------
# 下層ページフッター
--------------------------------------------------------------*/
#footer_sub .footer-inner {
    text-align: center;
    padding: 0px;
}
#footer_sub .footer_logo{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
}
#footer_sub .footer_logo img{
    width: 64px;
}
#footer_sub .footer_logo .en_logo{
    font-size: 2rem;
    font-family: "Didact Gothic", sans-serif;
    font-weight: bold;
    margin-left: 20px;
}
#footer_sub .footer_company_name{
	margin-bottom: 40px;
	text-align: center;
	font-size: 1.6rem;
}
#footer_sub .footer_company_name span{
	display: block;
}
#footer_sub .footer_company_name span.text02{
    font-size: 2.1rem;
}
#footer_sub .footer_address{
	margin-bottom: 40px;
	font-size: 1.4rem;
}
#footer_sub .footer_address .address{
    margin: 0 10px;
}
#footer_sub .copy_right{
	color: #9d9d9d;
	margin-bottom: 40px;
	font-size: 1.4rem;
}

/***スマホ固定メニュー***/
#footer_bottom_fix{
    display: none;
}

/*--------------------------------------------------------------
# レスポンシブ
--------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
.contents_wrap {
    width: 94%;
    margin: 0 auto;
	}
}
@media screen and (max-width: 1200px) {
#top_news_area {
    width: 50%;
}
#top_news_area .right_box ul li {
    padding: 0px 0px 15px 0px;
}
}
@media screen and (max-width: 768px) {
body{
		font-size: 1.4rem;
	}
main {
    margin-bottom: 30px;
}
header {
    height: 60px;
    padding: 0px 15px 0;
}
header .menu ul li {
    padding: 20px 0px;
    border-bottom: solid 1px #333333;
}
header .menu ul li a {
    font-size: 2.1rem;
	}
h1{
    line-height: 1.4;
}
h1.header_logo .b_text {
    font-size: 1.6rem;
}
h1.header_logo .s_text {
    display: block;
    font-size: 1.4rem;
}
#home main {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 60px;
}
.main_title_wrap {
    margin-bottom: 20px;
}
.main_title {
    font-size: 2.1rem;
}
.breadcrumb-area {
    margin-bottom: 40px;
}
.vertical-line {
    height: 30px;
}
#page_header_wrap {
        margin-top: 60px;
        padding: 40px 0px;
        width: 94%;
    }  
#page_header_wrap .contents_wrap{
		width: 100%;
	}
#page_header_wrap .page_header_title {
    font-size: 3rem;
}
#home #wrapper {
    background: none;
    height: auto;
}
#top_news_area {
        position: relative;
        width: 100%;
        padding: 0;
    }
#home #mv_area {
        position: relative;
        top: inherit;
        transform: inherit;
        width: 100%;
        left: inherit;
        background: url(images/home_mv.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        padding: 100px 10px;
    } 
#home #mv_area img {
    width: 170px;
}
#top_news_area .right_box ul li {
        padding: 0px 0px 5px 0px;
    }
#home #mv_area .mv_title {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.4;
}
#top_news_area .contents_inner {
    display: block;
}
#top_news_area .right_box ul li a {
    display: block;
}
    #top_news_area .left_box {
        width: 100%;
        margin-bottom: 5px;
    }
#top_news_area .right_box ul li a .date {
    margin-right: 0px;
	}
#top_news_area .right_box ul li a .title {
    width: 100%;
    display: block;
}
.required_text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
#contact .info_text_wrap{
    text-align: left;
}
#contact .contact_form_wrap {
    background: #ffffff;
    padding: 30px 15px 10px;
	width: 100%;
}
#contact .contact_table th {
        display: block;
        width: 100%;
        padding: 13px 0px 5px;
        border-bottom: none;
    }    
#contact .contact_table td {
        display: block;
        width: 100%;
        padding: 0px 0px 15px;
    }
.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 0em;
}
.wpcf7-list-item {
    display: block;
    margin: 0 0 5px 0em;
}
#contact .contact_submit_btn_wrap .contact_submit_btn {
    height: 44px;
    font-size: 1.6rem;
}
#company .info_table th {
    width: 100%;
    padding: 10px;
    text-align: left;
    display: block;
}
#company .info_table td {
    padding: 0px 10px 10px;
    vertical-align: middle;
    width: 100%;
    display: block;
}
#company .info_table tr:nth-child(odd) {
    background-color: #222222;
}
#company .info_table tr td .title_name {
        margin-bottom: 10px;
        border-bottom: solid 1px #666666;
        font-weight: bold;
        padding-bottom: 3px;
    }    
#company .simple_table tr:nth-child(odd) {
    background-color: transparent!important;
}
#company .simple_table tr th {
        width: 85px;
        display: inline-block;
        padding: 5px 0px;
    }    
#company .simple_table tr td {
        display: inline-block;
        width: calc(100% - 85px);
        padding: 5px;
    }
#works_archive_wrap #cate_btn_area {
    display: block;
	}
#works_archive_wrap #cate_btn_area a {
        width: 100%;
        margin: 0px 0px 15px 0px;
        height: 46px;
        font-size: 1.5rem;
    }
.topics_item_wrap li.news_item {
    padding: 20px 0px 15px 0px;
	}
.topics_item_wrap li.news_item .textcont_wrap .title_wrap {
    display: block;
	}
.topics_item_wrap li.news_item .top_news_link{
    display: flex;
    justify-content: end;
    margin-top: 5px;
}
#news_single_page_wrap .top_box .titlewrap .news_sigle_title {
    font-size: 1.8rem;
    font-weight: bold;
}
#news_single_page_wrap .top_box {
    margin-bottom: 30px;
}
footer{
    padding-bottom: 40px;
}
footer .footer-inner p {
        font-size: 1.1rem;
        text-align: center;
    }
#footer_bottom_fix {
        display: flex;
        justify-content: space-between;
        border-top: solid 1px #dddddd;
        position: fixed;
        bottom: 0;
        width: 100%;
    }       
#footer_bottom_fix a {
        width: 50%;
        background: #000000;
        color: #ffffff;
        text-align: center;
        padding: 10px;
        font-size: 1.5rem;
        font-weight: 600;
        display: block;
    }
#footer_bottom_fix a.contact_btn{
		border-right: solid 1px #dddddd;
	}
#footer_bottom_fix a i{
    margin-right: 5px;
}
#footer_sub .footer_logo,#footer_sub .footer_company_name,#footer_sub .footer_address{
    margin-bottom: 20px;
}
#footer_sub .footer_logo img{
    width: 45px;
}
#footer_sub .footer_logo .en_logo {
    margin-left: 10px;
	font-size: 1.5rem;
}
#footer_sub .copy_right {
    margin-bottom: 20px;
    font-size: 1.2rem;
}
#footer_sub .footer_address .footer_tel{
    display: block;
}
.map_wrap iframe{
    height: 300px;
}
ul.works_item_wrap {
    display: block;
}
ul.works_item_wrap li {
	width: 100%;
    margin: 0 auto 40px;
}
#works_archive_wrap #cate_btn_area {
    display: block;
    margin: 0 0 40px;
}
ul.works_item_wrap li h4 {
    font-size: 1.6rem;
}
#works_archive_wrap #cate_btn_area a {
    width: 100%;
    height: 40px;
    margin: 0 0px 20px;
}
#works_single_page_wrap .image_area {
    width: 90%;
    margin: 0 auto;
}
#works_single_page_wrap .double_image_wrap {
    display: block;
    margin-top: 20px;
}
#works_single_page_wrap .double_image_wrap .left_img {
    width: 100%;
    margin-bottom: 20px;
}
#works_single_page_wrap .double_image_wrap .right_img {
    width: 100%;
}
.single_bottom_arrowbox {
    margin: 20px 0px 40px;
    border-bottom: solid 1px;
    border-top: solid 1px;
    padding: 15px 0px;
}
}
@media screen and (max-width: 580px) {
    #footer_sub .footer_logo img {
        width: 36px;
    }
#footer_sub .footer_logo .en_logo {
        font-size: 1.4rem;
    }
#footer_sub .footer_company_name span.text02 {
    font-size: 2rem;
}
#footer_sub .footer_address {
    font-size: 1.3rem;
}
    #footer_sub .copy_right {
        margin-bottom: 15px;
        font-size: 1.1rem;
    }
}