@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
    -webkit-overflow-scrolling: touch !important;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
}

a:link,
a:visited,
a:hover,
a:active {}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

input,
select {
    vertical-align: middle;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hidden {
    display: none;
}

/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html {
    font-size: 16px;
}

@font-face {
    font-family: Noto Sans JP;
    src: url("../font/Noto_Sans_JP/NotoSansJP-Regular.otf") format("truetype");
}

body {
    /*ゴシック*/
    font-family: 'Yu Gothic', 'Hiragino Sans',
        'ＭＳ Ｐゴシック', 'MS PGothic', 'メイリオ', Meiryo, Osaka, sans-serif;
    color: #333;
    line-height: 32px;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/*共通の設定
---------------------------------------------------------------------------*/
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.pc_hd {
    display: block !important;
}

.sp_hd {
    display: none !important;
}

@media only screen and (max-width: 960px) {
    .pc_hd {
        display: none !important;
    }

    .sp_hd {
        display: block !important;
    }

    .hd_space {
        height: 50px;
    }

    .hd_space_top {
        height: 80px;
    }
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/*header
---------------------------------------------------------------------------*/
.pc_nav {
    position: fixed;
    z-index: 5;
    display: block;

}

.pc_nav > .pc_nav_wrap {
    width: 100vw;
    display: flex;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.8);
}

.pc_nav_wrap > .pc_hd_logo {
    width: 300px;
    height: 110px;
    background: #58a934;
    padding-left: 20px;
    padding-top: 22px;
}

.pc_hd_logo h1 img {
    width: 220px;
}

.globalmenu_pc {
    display: flex;
    justify-content: flex-end;
}

.globalmenu_pc > ul {
    height: 110px;
    display: flex;
    flex-wrap: nowrap;
}

.globalmenu_pc > ul > li > a {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 110px;
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.globalmenu_pc > ul > li > a:hover {
    background-color: #B8DAA9;
    transition: all .2s;
}

/*sp_navigation
------------------------------------------*/
.sp_hd_logo h1 {
    padding-top: 10px;
    padding-left: 10px;
}
.sp_hd_logo h1 img {
    height: 80%;
}
.sp_nav {

}
.sp_nav_wrap {
    background-color: #fff;
    height: 70px;
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-between;
}
/*　ハンバーガーボタン　*/
.sp_nav_wrap > .hamburger_wrap > {

}
.sp_nav_wrap > .hamburger_wrap > .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 0px;
    top: 0px;
    width: 70px;
    height: 70px;
    cursor: pointer;
    text-align: center;
    background-color: #58A934;
}

.sp_nav_wrap > .hamburger_wrap > .hamburger span {
    margin-top: 14px;
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left:25%;
    background: #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.sp_nav_wrap > .hamburger_wrap > .hamburger span:nth-child(1) {
    top: 10px;
}

.sp_nav_wrap > .hamburger_wrap > .hamburger span:nth-child(2) {
    top: 20px;
}

.sp_nav_wrap > .hamburger_wrap > .hamburger span:nth-child(3) {
    top: 30px;
}

/* ナビ開いてる時のボタン */
.sp_nav_wrap > .hamburger_wrap > .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.sp_nav_wrap > .hamburger_wrap > .hamburger.active span:nth-child(2),
.sp_nav_wrap > .hamburger_wrap > .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}

nav.globalmenu_sp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    width: 100%;
    display: none;
    opacity: 0;
}

nav.globalmenu_sp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

nav.globalmenu_sp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}

nav.globalmenu_sp ul li:last-child {
    padding-bottom: 0;
}

nav.globalmenu_sp ul li:hover {
    background: #ddd;
}

nav.globalmenu_sp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalmenu_sp.active {
    opacity: 100;
    display: block;
    animation-name: fadeIn;
  animation-fill-mode:forwards;
  animation-duration:1s;
}

/*フェードインアニメ*/
@keyframes fadeIn{
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
}
}

/*追従バナー
------------------------------------------*/
.fixed_btn {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 8px 30px;
    z-index: 20;
    transition: .3s;
}
.fixed_btn:hover {
    opacity: 0.7;

}

.fixed_btn  .fixed_pc {
    width: 300px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 20;
}

.fixed_btn_sp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 8px 10px;
    z-index: 20;
}

.fixed_btn_sp  .fixed_sp {
    width: 100px;
}

/*main contents TOP
------------------------------------------*/
#top_content1 {
    padding-top: 150px;
    padding-bottom: 100px;
}

.top_content1_wrap > h2 {
    text-align: center;
    color: #58A934;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 100px;
}

.top_content1_wrap {
    width: 100vw;
    margin: 0 auto;
}
.top_content1_cntn {
    max-width: 1000px;
    margin: 0 auto;
}

.top_content1_image {
    margin-top: 60px;
}
.top_content1_image > img {
    width: 100%;
}

.top_content1_txtbox {
    width: 100%;
    color: #333;
}

.top_content1_lead {
    font-size: 19px;
    font-weight: bold;
    margin-bottom: 15px;
}

.top_content1_txt {
    font-size: 16px;
    line-height: 2;
}

#top_content2 {
    width: 100%;
    background-color: #F3F3F3;
    padding: 120px 0;
}

.top_content2_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.top_contents_ttl {
    font-size: 27px;
    font-weight: bold;
    color: #58A934;
    border-left: 3px solid #58A934;
    padding-left: 20px;
    margin-bottom: 30px;
}

.top_content2_lead {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 30px;
}

.service_image_cntn {
    display: flex;
    justify-content: space-between;
}

.service_image_cntn>.service_image_item {
    width: 320px;
}

.service_image>img {
    height: 260px;
}

.service_image_item>.service_name {
    background-color: #58A934;
    text-align: center;
    padding: 5px 0;
}

.service_image_item>.service_name>p {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
}
.pagelink_txt {
    padding-top: 50px;
    width: fit-content;
    border-bottom: 2px solid #58A934;
    margin-right: 0;
    margin-left: auto;
}

.pagelink_txt a {
    display: block;
    height: 40px;
    color: #58A934;
    font-weight: bold;
    padding-right: 8px;
    padding-left: 8px;
}

.pagelink_txt p span {
    vertical-align: middle;
}

#top_content3 {
    padding: 120px 0;
}

.top_content3_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.work_photo_cntn {
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.work_photo_cntn>.work_img {
    max-width: 240px;
    margin-bottom: 10px;
}

#top_content4 {
    width: 100vw;
    height: 1000px;
    margin: 0 auto;
    padding-top: 120px;
    padding-bottom: 50px;
    background-image: url("../images/green_back.png");
    background-size: cover;
}

.top_content4_wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.top_content4_wrap .top_catch {
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    line-height: 2;
    color: #58A934;
}

.top_content4_cntn {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.top_content4_cntn .advantage_itembox {
    width: 300px;
    text-align: center;
}

.advantage_itembox .advantage_lead {
    font-size: 18px;
    margin-top: 20px;
    line-height: 1.7;
    letter-spacing: 1.1px;
}

@media only screen and (max-width: 960px) {
    #top_content1 {
    padding-top: 80px;
    padding-bottom: 80px;
    }
    .top_content1_wrap {
    width: 90vw;
    margin: 0 auto;
}
.top_content1_wrap > h2 {
    font-size: 1.5em;
    margin-bottom: 50px;
}
.top_content1_cntn {
    display: block;
}
.top_content1_image {
    width: 100%;
}
.top_content1_txtbox {
    width: 100%;
    color: #333;
    padding-right: 0;
    padding-left: 0;
    margin-top: 30px;
}

#top_content2 {
    padding: 80px 0;
}
.top_content2_wrap {
    width: 95%;
    margin: 0 auto;
}
.service_image_cntn {
    display: block;
}
.service_image_cntn>.service_image_item {
    width: 320px;
    margin: 0 auto;
    margin-bottom: 30px;
    text-align: center;
}

#top_content3 {
    padding: 80px 0;
}
.top_content3_wrap {
    width: 95%;
}
.work_photo_cntn {
    width: 80%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.work_photo_cntn>.work_img {
    max-width: 200px;
    margin-bottom: 10px;
}
#top_content4 {
    padding-top: 80px;
    padding-bottom: 80px;
}
.top_content4_wrap {
    width: 95%;
    margin: 0 auto;
}
.top_content4_cntn {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.top_content4_cntn .advantage_itembox {
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
}
#top_contact_area {
    padding-top: 60px;
    padding-bottom: 40px;
}
.top_contact_cntn .contact_box {
    margin-bottom: 20px;
}
#top_company_guide {
    padding-top: 80px;
    padding-bottom: 80px;
}

}
@media only screen and (max-width: 500px) {
    .work_photo_cntn {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
    .work_photo_cntn>.work_img {
    max-width: 150px;
    margin-bottom: 10px;
}
}
/*contact area
------------------------------------------*/
#top_contact_area {
    padding-top: 80px;
    border-bottom: 4px solid #58A934;
    background-color: #F1F7EF;
}
.top_contact_area_wrap {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    margin-bottom: 80px;
    background-color: #fff;
    padding: 50px 0;
}

.top_contact_heading {
    font-size: 24px;
    font-weight: bold;
    color: #58A934;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 50px;
}

.top_contact_cntn {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.contact_box {
    width: 400px;
    height: 230px;
    text-align: center;
    border: 9px solid #F1F7EF;
    border-radius: 8px;
    padding-top: 35px;
    background-color: #fff;
}

.contact_box h4 {
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 1.1px;
    color: #58A934;
    margin-bottom: 20px;
}

.contact_box a {
    color: #000;
    font-weight: bold;
}

.contact_line_info a {
    display: block;
    font-size: 20px;
}

.line_btn {
    width: 340px;
    height: 50px;
    margin: 0 auto;
    border: 2px solid #58A934;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: .3s;
}
.line_btn:hover {
    background-color: #58A934;
    color: #fff;
}

.line_btn>p {
    line-height: 2.4;
}

.contact_tel_info>a {
    display: block;
    font-size: 33px;
}

.contact_tel_info>p {
    line-height: 1.6;
    margin-top: 20px;
}

.tel_link>p {
    letter-spacing: 1.3px;
}
.top_recruit_bannerarea {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 100px;
}

.top_recruit_banner {
    width: 800px;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
}

@media only screen and (max-width: 750px) {
    .top_recruit_banner {
    width: 90%;
    margin: 0 auto;
    margin-top: 50px;

}
}
/*company_info area
------------------------------------------*/
#top_company_guide {
    padding-top: 100px;
    padding-bottom: 100px;
}

.top_company_guide_wrap {
    max-width: 900px;
    margin: 0 auto;   
}

.top_company_guide_wrap>.company_read_cntn { 
width: auto;  
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.company_read_cntn>.company_catch_area {
    width: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.company_catch_area>p {
    font-size: 21px;
    font-weight: bold;
    color: #58A934;
    line-height: 2;
}

.company_read_cntn>.company_image_area {
    width: 50%;
}

.top_company_autoline {
    padding-top: 50px;
    padding-bottom: 50px;
}

.top_company_autoline>dl {
    display: flex;
    flex-wrap: nowrap;
    border-bottom: 2px solid #F1F7EF;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.top_company_autoline>dl>dt {
    padding-left: 5px;
    width: 170px;
}

.top_company_autoline>dl>dd {}

@media only screen and (max-width: 960px) {
    #top_company_guide {
    padding-top: 60px;
    padding-bottom: 80px;
}
    .top_company_guide_wrap {
        width: 95%;
        margin: 0 auto;
    }
    .top_company_guide_wrap>.company_read_cntn {
        display: block;
    }
    .company_read_cntn>.company_catch_area {
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 30px;
}
    .company_read_cntn>.company_image_area {
        max-width: 80%;
        margin: 0 auto;
        text-align: center;
    }
    .company_access iframe {
        width: 100%;
    }
}
@media only screen and (max-width: 500px) {
    .top_company_autoline>dl {
    display: block;
    margin-bottom: 5px;
    padding-bottom: 5px;
}
.top_company_autoline>dl>dd {
    padding-left: 8px;
    line-height: 1.5;
}
}
/*footer ここ！
------------------------------------------*/
footer {
    width: 100vw;
    padding: 60px 0 70px 0;
    background-color: #58A934;
}

.footer_wrap {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer_wrap>.ft_company_infoarea>.ft_logo {
    width: 220px;
}

.ft_company_infoarea>address {
    margin-top: 40px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
}

.ft_sitemap {
    font-weight: bold;
    color: white;
    padding-top: 50px;
}

.ft_sitemap>.sitemap_heading {
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    font-size: 20px;
    width: 350px;
}

.ft_sitemap>.ft_nav {
    display: flex;
    flex-wrap: wrap;
    font-size: 17px;
}

.ft_nav>ul {
    margin-right: 40px;
}

.ft_nav>ul>li {
    letter-spacing: 1.1px;
}
@media only screen and (max-width: 750px){
    .footer_wrap {
    width: fit-content;
    margin: 0 auto;
    display: block;
}
.footer_wrap>.ft_company_infoarea>.ft_logo {
    width: 220px;
    margin: 0 auto;
}
.ft_company_infoarea>address {
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    letter-spacing: 0.8px;
}
}



/*TOPページ・基本css　ここまで
------------------------------------------*/


/*下層ページ共通
------------------------------------------*/
/*---------------パンくずリスト*/
.breadcrumb {
    width: 100%;
    text-align: left;
    list-style: none;
    margin-left: 20px;
}

.breadcrumb li {
    display: inline;
    /*横に並ぶように*/
    list-style: none;
    font-size: 13px;
}

.breadcrumb li:after {
    /* >を表示*/
    content: '>';
    padding: 0 0.2em;
    color: #666;
}

.breadcrumb li:last-child:after {
    content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #58A934;
    /*色*/
}

.breadcrumb li a:hover {
    text-decoration: underline;
}
.breadcrumb li a span{
    
}

@media only screen and (max-width: 750px) {
    .breadcrumb {
        max-width: 100%;
        padding-left: 20px;

    }

}

.lower_headingwrap {
    position: absolute;
    left: 50%;
    top: 650px;
    margin-left: -80px;
    padding-bottom: 20px;
}

.box_wrap {
    display: flex;
    text-align: center;
    color: #fff;
    font-weight: bold;
}

.box_wrap .box-a {
    flex-grow: 1;
    position: relative;
    height: 140px;
    line-height: 140px;
    margin-right: 2em;
    background-color: ;
}

.box_wrap .box-a::after {
    position: absolute;
    top: 0;
    left: 100%;
    margin: 0 1rem;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #58A934;
}

.box_wrap .box-b {
    flex-grow: 1;
    height: 140px;
    line-height: 140px;
    background-color: ;
}

.lower_heading {
    width: fit-content;
    margin: 0 auto;
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    line-height: 2;
    letter-spacing: 1.3px;
    color: #58A934;
    margin-top: 15px;
}

.lower_heading_lead {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 170px;
}

.lower_heading_lead>p {
    font-size: 16px;
    color: #333;
}
.pc_lowermain {
    width: 100vw;
    height: 700px;
    background-image: url("../images/subpage_mv_img.png");
    background-position: center;
    background-attachment: local;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.pc_lowermain .lower_heading_title {
    position: absolute;
    top: 450px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.pc_lowermain_ctt {
    width: 100vw;
    height: 700px;
    background-image: url("../images/contact_mv.png");
    background-position: center;
    background-attachment: local;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.pc_lowermain_ctt .lower_heading_title {
    position: absolute;
    top: 400px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.pc_lowermain_ctt .lower_heading_title img {
    width: 20em;
}

#lower_contact_area {
    background-image: url("../images/ctt_area_back.png");
    background-size: cover;
    padding-top: 80px;
    padding-bottom: 100px;
    margin-top: 100px;
}

#lower_contact_area>.lower_contact_cntn {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

#lower_contact_area>.contactarea_read {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 50px;
}

#lower_contact_area>.contactarea_read>h3 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
}

@media only screen and (max-width: 960px){
    .lower_heading_lead {
    width: 90%;
    margin: 0 auto;
    margin-top: 130px;
}
.sp_lowermain {
    width: 100vw;
    height: 90vh;
    background-image: url(../images/main_ict_sp-1.png);
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    padding-top: 25em;
}
.lower_headingwrap {
    position: absolute;
    left: 50%;
    margin-left: -80px;
    padding-bottom: 20px;
    padding-top: 60px;
}
.sp_lowermain img {
    max-width: 300px;
}
.lower_contact_cntn > .contact_box {
    margin-bottom: 30px;
}
}


/* 業務内容ページ用 */
.lower_headingwrap_svc {
    position: absolute;
    left: 0;
    right: 0;
    top: 620px;
}
.lower_headingwrap_svc .lower_heading {
    font-size: 28px;
    line-height: 1.7;
}
.lower_heading_lead_svc {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 200px;
    line-height: 1.6;
}
.lower_heading_lead_svc > p {
    font-size: 16px;
    color: #333;
}
@media only screen and (max-width: 960px){
    .lower_headingwrap_svc {
        top: 80vh;
    }
    .lower_headingwrap_svc .lower_heading {
        width: 90%;
        margin: 0 auto;
    font-size: 24px;
    line-height: 1.7;
}
.lower_heading_lead_svc {
    width: 90%;
    margin: 0 auto;
    margin-top: 180px;
    line-height: 1.6;
}
}
/* 施工実績ページ用 */
.lower_headingwrap_works {
    position: absolute;
    left: 0;
    right: 0;
    top: 620px;
}
.lower_headingwrap_works .lower_heading {
    font-size: 26px;
    line-height: 1.9;
}
.lower_heading_lead_works {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 240px;
    line-height: 1.6;
}
.lower_heading_lead_works > p {
    font-size: 16px;
    color: #333;
}
@media only screen and (max-width: 960px){
    .lower_headingwrap_works {
    position: absolute;
    left: 0;
    right: 0;
    top: 80vh;
}
    .lower_headingwrap_works .lower_heading {
    width: fit-content;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.7;
    margin-top: 40px;
}
    .lower_heading_lead_works {
    width: 90%;
    margin: 0 auto;
    margin-top: 230px;
    line-height: 1.6;
}
}
/* お問い合わせページ用 */
.lower_headingwrap_contact {
    position: absolute;
    left: 0;
    right: 0;
    top: 620px;
}

@media only screen and (max-width: 960px){
.lower_headingwrap_contact {
    position: absolute;
    left: 0;
    right: 0;
    top: 80vh;
}
.lower_headingwrap_contact .lower_heading {
    width: 90%;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.7;
}
}

/*良心のつよみ
------------------------------------------*/
#advantage_contents {
    margin-top: 100px;
    margin-bottom: 100px;
}

.advantage_wrap {
    width: 100vw;
    margin: 0 auto;
}

.adv_item_container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.adv_item_container_2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    margin-bottom: 100px;
}

.adv_image {
    width: 48%;
}

.adv_item_container .adv_lead_area {
    max-width: 500px;
    margin-left: 40px;
}

.adv_item_container_2 .adv_lead_area {
    max-width: 500px;
    margin-right: 40px;
}
.adv_item_title > dl {
    margin-top: 30px;
    width: 100%;
    border-left: 3px solid #58A934;
    padding-left: 10px;
    display: flex;
    color: #58A934;
    font-weight: bold;
    font-size: 25px;
    line-height: 1.7;
    letter-spacing: 1.2px;
    margin-bottom: 25px;   
}
.adv_item_title > dl > dt {
    margin-right: 10px;
}
.adv_lead_area p {

}
@media only screen and (max-width: 960px) {
    #advantage_contents {
    margin-top: 80px;
    margin-bottom: 80px;
}
.adv_item_container {
    display: block;
    margin-bottom: 60px;
}
.adv_item_container > .adv_image {
    width: 100%;
}
.adv_item_container .adv_lead_area {
    width: 90%;
    margin: 0 auto;
    margin-left: 20px;
}
.adv_item_title > dl {
    margin-top: 30px;
    width: 100%;
    border-left: 3px solid #58A934;
    padding-left: 10px;
    display: flex;
    color: #58A934;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 20px;   
}
.adv_item_title > dl > dt {
    margin-right: 10px;
}
.adv_item_container_2 {
    display: flex;
    flex-wrap: wrap-reverse;;
    justify-content: center;
    margin-bottom: 60px;
}
.adv_item_container_2 > .adv_image {
    width: 100%;
}
.adv_item_container_2 .adv_lead_area {
    width: 90%;
    margin: 0 auto;
}
}

/*業務内容
------------------------------------------*/
#service_contents1 {
    margin-top: 100px;
    margin-bottom: 100px;
}

.service_contents1_wrap {
    width: 100vw;
    margin: 0 auto;
}

.svc_heading_container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 150px;
}

.svc_image {
    width: 48%;
}

.svc_heading_container .svc_lead_area {
    width: 500px;
    margin-left: 40px;
}

.svc_lead_area>.svc_title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    margin-top: 50px;
}


#service_guide {
    padding-top: 50px;
    margin-bottom: 300px;
}

.service_guide_wrap {
    max-width: 960px;
    margin: 0 auto;
}

.service_guide_wrap>.svc_guide_heading {
    height: 32px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1.6px;
    color: #58A934;
    padding-left: 15px;
    margin-bottom: 100px;
    border-left: 3px solid #58A934;
}

.svc_guide_container {
    margin-bottom: 120px;
    padding: 0 15px;
}

.svc_guide_container>.svc_name {
    color: #58A934;
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 1.4px;
    border-bottom: 2px solid #58A934;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.svc_guide_container>.svc_detail {
    color: #333;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 30px;
}

.svc_guide_container>.svc_imagebox>img {
    max-width: 450px;
}

.svc_guide_container>.svc_imagebox>img:nth-of-type(1) {
    margin-right: 20px;
}

#service_flow {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #F1F7EF;
}
.service_flow_wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.service_flow_wrap .svc_flow_heading {
    height: 32px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1.6px;
    color: #58A934;
    padding-left: 15px;
    margin-bottom: 100px;
    border-left: 3px solid #58A934;
}

.service_flow_wrap .svc_flow_list {
    padding-left: 20px;
    padding-right: 20px;
    
}
.service_flow_wrap .svc_flow_list li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;

}
.line_fix {
    position: absolute;
    border-left: 2px solid #58A934;
    height: 50px;
    left: 62px;
    top: 125px;
}
.line_fixlong {
    position: absolute;
    border-left: 2px solid #58A934;
    height: 400px;
    left: 62px;
}
.svc_flow_list .flow_number {
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    line-height: 4;
    background-color: #58A934;
    height: 125px;
    width: 125px;
    border-radius: 50%;
}

.svc_flow_list .flow_detail {
    max-width: 700px;
    padding-top: 25px;
    padding-left: 20px;
}

.svc_flow_list .flow_detail dt {
    font-size: 20px;
    color: #58A934;
    margin-bottom: 5px;
}

.service_subread {
    width: fit-content;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
}

.flow_detail .construction_ctt {
    background-color: #fff;
    padding: 10px;
    margin-top: 10px;
}
.flow_detail .construction_ctt p {
    font-weight: bold;
}
.flow_detail .construction_ctt p span {
    font-weight: normal;
}
.service_subread .service_subread_b {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.kaitai_youto .kaitai_youto_heading {
    max-width: 800px;
    background-color: #58A934;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.kaitai_youto .kaitai_youto_txt {
    font-size: 18px;
    font-weight: bold;
    color: #58A934;
}
@media only screen and (max-width: 750px) {
    .svc_heading_container {
    display: block;
    margin-bottom: 50px;
}
.svc_heading_container > .svc_image {
    width: 100%;
}
.svc_heading_container .svc_lead_area {
    width: 95%;
    margin: 0 auto;
}
#service_contents1 {
    margin-top: 100px;
    padding-top: 50px;
    margin-bottom: 30px;
}
#service_guide {
    padding-top: 30px;
    margin-bottom: 100px;
}
.service_guide_wrap {
    width: 95%;
    margin: 0 auto;
}
.service_guide_wrap>.svc_guide_heading {
    height: 30px;
    font-size: 28px;
    letter-spacing: 1.6px;
    color: #58A934;
    padding-left: 15px;
    margin-bottom: 50px;
}
.svc_guide_container>.svc_imagebox>img {
    width: 100%;
}

.svc_guide_container>.svc_imagebox>img:nth-of-type(1) {
    margin-right: 0;
    margin-bottom: 20px;
}

.service_flow_wrap {
    width: 95%;
}
.service_flow_wrap .svc_flow_list li {
    display: block;
    margin-bottom: 40px;
}
.svc_flow_list .flow_number {
    height: 125px;
    width: 125px;
    margin: 0 auto;
    border-radius: 50%;
}
.svc_flow_list .flow_detail dt {
    text-align: center;
}
.kaitai_youto .kaitai_youto_heading {
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
}
.service_subread {
    width: fit-content;
    margin: 0 auto;
    padding: 50px 0 0 0;
    text-align: center;
}
}

/*施工実績
------------------------------------------*/
#works {
    margin-top: 150px;
    padding-top: 150px;
    padding-bottom: 100px;
}
.works_listwrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.works_listwrap > .works_itembox {
    width: 340px;
    margin-bottom: 60px;
}

.works_itembox > .works_image > img {
    width: 340px;
    height: 230px;
    object-fit: cover;
}

.w_outline_wrap {
    display: flex;
    flex-wrap: nowrap;
    padding-top: 10px;
}

.w_outline_wrap > .w_kinds {
    width: 116px;
    height: 27px;
    background-color: #808080;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
} 

.w_outline_wrap > .w_date {
    font-size: 15px;
    color: #333;
    margin-left: 10px;
}

.works_itembox > .works_title {
    color: #333;
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 3px;
    border-bottom: 1px solid #333;
}

.works_itembox > .w_detail_link {
    width: 200px;
    padding-top: 10px;
    margin: 0 0 0 auto;
}

.works_itembox > .w_detail_link > a {
    display: block;
    background-color: #58A934;
    color: #fff;
    font-weight: bold;    
}
.works_itembox > .w_detail_link > p {
    text-align: center;
    font-size: 15px;
}

.paging_area_wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.work_paging {
    width: fit-content;
    margin-top: 10px;
    margin-right: 0;
    margin-left: auto;
    display: flex;
}

.work_paging .this {
    display: block;
    width: 38px;
    height: 38px;
    color: #fff;
    background-color: #58A934;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-left: 15px;
}

.work_paging .other {
    display: block;
    width: 38px;
    height: 38px;
    color: #333;
    background-color: #E3E3E3;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    margin-left: 15px;
}

.work_paging li {
}
@media only screen and (max-width: 960px){
    #works {
    margin-top: 80px;
    padding-bottom: 80px;
}
}
@media only screen and (max-width: 750px){
.works_listwrap {
    width: fit-content;
    margin: 0 auto;
    display: block;
}
.paging_area_wrap {
    width: 340px;
    margin: 0 auto;
    text-align: right;
}
}

/*施工実績のポップアップ
-----------------------------------------------------------*/
.open_btn{
    display: block;
    width: 200px;
    padding-top: 5px 8px;
    margin: 0 0 0 auto;
    background-color: #58A934;
    color: #fff;
    font-weight: bold;
    text-align: center;
    transition: .3s;
}
.open_btn:hover {
    opacity: 0.6;
}
.open {
    cursor:pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
}
#pop-up, #pop-up2, #pop-up3, #pop-up4, #pop-up5, #pop-up6, #pop-up7, #pop-up8, #pop-up9, #pop-up10, #pop-up11, #pop-up12, #pop-up13
, #pop-up14, #pop-up15, #pop-up16 , #pop-up17, #pop-up18, #pop-up19, #pop-up20, #pop-up21, #pop-up22, #pop-up23, #pop-up24, #pop-up25
, #pop-up26, #pop-up27, #pop-up28, #pop-up29, #pop-up30, #pop-up31, #pop-up32, #pop-up33, #pop-up34, #pop-up35, #pop-up36, #pop-up37
, #pop-up38, #pop-up39, #pop-up40, #pop-up41, #pop-up42, #pop-up43, #pop-up44, #pop-up45, #pop-up46, #pop-up47{
    display: none; /* label でコントロールするので input は非表示に */
}
.overlay {
    display: none; /* input にチェックが入るまでは非表示に */
}
.popup_item:checked + .overlay {
    display: block;
    z-index: 9999;
    background-color: #000000CC;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.window {
    width: 100%;
    max-width: 800px;
    border-radius: 6px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 50px 40px;
    text-decoration: none;
    text-align: center;
}
.window > p{
    text-align: left;
    margin: .5em 0;
    line-height: 1.7em;
}
.window img{
    width: 50%;
    margin: 20px 0 0 0;
}
.text {
    font-size: 18px;
    margin: 0;
}
.close {
    color: #fff;
    cursor:pointer;
    position: absolute;
    top: 1px;
    right: 8px;
    font-size: 35px;
    border: 2px solid #fff;
    padding: 5px 3px 3px 3px;
}
.support_download{
    width: 50%;
    margin: 30px auto;
    background-color: #333333;
    height: 50px;
    border-radius: 5px;
}

.pu_read_container {
    margin-top: 20px;
    background-color: #EFEFEF;
    padding: 10px 20px 20px 20px;
}
.pu_read_container > dl {
    display: flex;
} 
.pu_read_container > dl > dt {
    padding: 3px 20px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
} 
.pu_read_container > dl > dd {
    padding-top: 5px;
    margin-left: 15px;
}
.pu_read_container > h6 {
    font-weight: bold;
    text-align: left;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
    margin-bottom: 10px;
    margin-top: 10px;
}
.pu_read_container > .pu_work_detail {
    text-align: left;
}
@media only screen and (max-height: 900px){
   .window {
    width: 100%;
    height: 80%;
    max-width: 800px;
    border-radius: 6px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 50px 50px 40px;
    text-decoration: none;
    text-align: center;
    overflow-y: scroll;
}
}
}



/* アクティブな画像の枠線を変更 */
.sub-img li.current img {
    border: 2px solid #fff;
    transition: border .5s;
    opacity: 0.5;
    background: #000;
  }
  /* レイアウトのためのスタイル */
  .slide_container {
    margin: 0 auto 0;
  }
  .main-img {
    width: 100%;
  }
  .main-img img {
    height: auto;
    width: 100%;
  }
  .sub-img {
    display: flex;
    margin-top: 10px;
  }
  .sub-img li {
    margin-right: 1%;
    width: calc(96% / 5);
  }
  .sub-img li:nth-child(3n) {
    margin-right: 0;
  }
  .sub-img li img {
    border: 2px solid transparent;
    transition: border .5s;
  }
  .sub-img img {
    cursor: pointer;
    width: 100%;
  }

/* slide */

.slide {
  position: relative;
  margin: 0;
  padding: 0;
  height: 450px;
  margin-bottom: 10px;
}
.slide .item {
  position: relative;
  height: 100%;
}
.slide .item::before {
  display: block;
  padding-top: 39%;
  content: "";
  position: relative;
  overflow: hidden;
}
.slide .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.slide > .slick-list,
.slide > .slick-list > .slick-track,
.slide > .slick-list > .slick-track > .slick-slide > div {
  position: relative;
  height: 100%;
}

/* slide-navigation */

.slide-navigation {
  position: relative;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.slide-navigation .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  width: 19%;
  height: 100%;
  margin: 0.5%;
  padding: 0;
}
.slide-navigation .item::before {
  display: block;
  padding-top: 70%;
  content: "";
}
.slide-navigation .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
.slide-navigation .current::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.5;
  background: #000;
  border: 2px solid #fff;
}







/*会社概要
------------------------------------------*/
.company_main_wrap {
    margin-top: 250px;
}

.company_main_wrap > #com_message {
    max-width: 980px;
    margin: 0 auto;
    margin-bottom: 150px;
}

.message_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.message_container > .com_main_image {
    max-width: 400px;
}
.message_container > .message_txt {
    max-width: 520px;
    padding-top: 50px;
}

#com_outline {
    max-width: 920px;
    margin: 0 auto;
    margin-bottom: 150px;
}

.com_contents_heading {
    font-size: 30px;
    font-weight: bold;
    padding-left: 20px;
    letter-spacing: 1.2px;
    color: #58A934;
    border-left: 2px solid #58A934;
    margin-bottom: 50px;
}

#com_outline > .com_outline_wrap > dl {
    display: flex;
    flex-wrap: wrap;
    background-color: #F3F3F3;
    border-bottom: 3px solid #fff;
    height: ;
}

#com_outline > .com_outline_wrap > dl > dt {
    width: 250px;
    padding-left: 25px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#com_outline > .com_outline_wrap > dl > dd {
    font-size: 16px;
    padding-top: 20px;
    padding-bottom: 20px;
}

#com_access {
    max-width: 920px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.com_access_txt {
    margin-bottom: 30px;
}
@media only screen and (max-width: 960px) {
    .company_main_wrap {
    margin-top: 270px;
}
.company_main_wrap > #com_message {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 80px;
}
#com_outline {
    margin-bottom: 70px;
}
.com_contents_heading {
    width: 95%;
    margin: 0 auto;
    font-size: 28px;
    margin-bottom: 50px;
}
#com_access {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 80px;
}
#com_access > .com_contents_heading {
    margin-bottom: 30px;
    padding-left: 20px;
    margin-left: 0;
}

}
@media only screen and (max-width: 750px) {
    #com_outline > .com_outline_wrap > dl {
    display: block;
}
#com_outline > .com_outline_wrap > dl > dt {
    width: 90%;
    margin: 0 auto;
    padding-left: 0px;
    padding-top: 15px;
    padding-bottom: 0px;
}
#com_outline > .com_outline_wrap > dl > dd {
    width: 90%;
    margin: 0 auto;
    font-size: 16px;
    padding-top: 3px;
    padding-bottom: 12px;
    line-height: 1.5;
}
}

/*採用情報
------------------------------------------*/
#recruit_main {
    margin-top: 200px;
    padding-bottom: 100px;
}

.recruit_main_wrap {
    max-width: 920px;
    margin: 0 auto;
}

.recruit_info > dl {
    border-top: 2px solid #58A934;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    
}

.recruit_info > dl:last-of-type {
    border-bottom: 2px solid #58A934;
}

.recruit_info > dl > dt {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 250px;
    background-color: #F7FBF5;
    text-align: center;
    line-height: 5.5em;


}

.recruit_info > dl > dd {
    padding-left: 280px;
    padding-top: 25px;
    padding-bottom: 25px;

}

#recruit_contactarea {
    padding-top: 80px;
    padding-bottom: 100px;
    background-color: #F7FBF5;
}
.recruit_contactarea_wrap {
    max-width: 1000px;
    margin: 0 auto;
}
.recruit_contactarea_wrap .recruit_read {
    color: #58A934;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.8;
    text-align: center;
    border-bottom: 2px solid #58A934;
    padding-bottom: 15px;
    margin-bottom: 80px;
}

.recruit_contactarea_wrap > .contact_means_area {
    background-color: #fff;
    padding: 60px 20px;
}

@media only screen and (max-width: 750px) {
    #recruit_main {
    margin-top: 150px;
    padding-bottom: 70px;
}
    .recruit_main_wrap {
    max-width: 95%;
    margin: 0 auto;
}
.recruit_info > dl {
    display: block;
    padding: 0;
}
.recruit_info > dl > dt {
    width: 100%;
    height: fit-content;
    text-align: left;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.recruit_info > dl > dd {
    padding-top: 10px;
    padding-bottom: 10px;
}

#recruit_contactarea {
    padding-top: 50px;
    padding-bottom: 60px;
}
.recruit_contactarea_wrap .recruit_read {
    font-size: 24px;
    padding-bottom: 15px;
    margin-bottom: 40px;
}
.recruit_contactarea_wrap > .contact_means_area {
    width: 95%;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px 10px;
    margin-bottom: 30px;
}

}

/*お問い合わせ
------------------------------------------*/
.contact_main_wrap {
    padding-top: 300px;
    max-width: 1000px;
    margin: 0 auto;
}
.contact_means_area {
    padding: 40px 20px;
    background-color: #F7FBF5;
    margin-bottom: 50px;
}

.contact_means_area > .contact_means_ttl {
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 10px;
    padding-left: 8px;
    margin-bottom: 25px;
    border-bottom: 2px solid #58A934;
    letter-spacing: 1.3px;
}

.contact_means_area > .contact_means_ttl > span {
    font-size: 15px;
    font-weight: 100;
    padding-left: 15px;
    letter-spacing: 1px;
}

.contact_means_area > .line_friend_btn {
    width: fit-content;
    margin: 0 auto;
}

.contact_means_area > .line_friend_btn > a {
    padding: 8px 60px;
    border: 2px solid #58A934;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1.2px;
    border-radius: 10px;
    display: block;
    text-align: center;
    transition: .3s;
}
.contact_means_area > .line_friend_btn > a:hover {
    background-color: #58A934;
    color: #fff;
}

.line_QR_area {
    width: 100%;
    display: flex;
    margin-top: 20px;
}
.line_QR_area > .line_QR > img {
    width: 120px;
}
.line_QR_area > .line_QR_txt {
    margin-left: 15px;
    line-height: 1.6;
    padding-top: 15px;

}
.contact_means_area > a >.phonenumber {
    font-size: 36px;
    font-weight: bold;
    letter-spacing: 1.3px;
    padding-left: 8px;
    height: 27px;
}

.contact_means_area > a > .phonenumber > span {
    font-size: 15px;
    font-weight: 100;
    padding-left: 15px;
    letter-spacing: 1px;
    vertical-align: middle;
}

.contact_means_area > a > .phonenumber > img {
    width: 26px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact_means_area .mailaddress {
    font-size: 22px;
    font-weight: bold;
    height: 25px;
    padding-left: 8px;
}

.contact_means_area .mailaddress > img {
    width: 26px;
    vertical-align: middle;
    margin-right: 10px;
}

.contact_means_area .mailaddress > span {
    font-size: 15px;
    font-weight: bold;
    margin-left: 20px;
    letter-spacing: 1px;
    vertical-align: middle;
    border-bottom: 1px solid #333;
}
@media only screen and (max-width: 960px){
    .contact_main_wrap {
    padding-top: 300px;
    width: 95%;
    margin: 0 auto;
}
.line_QR_area {
    display: none;
}
.contact_means_area > .phonenumber_sp > a > .number {
    font-size: 27px;
    font-weight: bold;
    letter-spacing: 1.3px;
    padding-left: 8px;
    height: 27px;
    margin-bottom: 10px;
}
.phonenumber_sp > a > .number img {
    width: 23px;
    padding-bottom: 5px;
    margin-right: 10px;
}
.contact_means_area > .phonenumber_sp > .opentime {
    margin-top: 10px;
    padding-left: 8px;
}
.contact_means_area > .contact_mail_link {
    display: block;
    margin-bottom: 40px;
}
}








