@charset "utf-8";

body {
	margin: 0px;
}

p {
	font-size: 18px;
}

.inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 11%;
}

/*--------ヘッダー--------*/

.phone_num {
	max-width: 22%;
}

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

.header_ul {
	margin: 0px;
	display: flex;
    align-items: center;
    margin-left: 70px;
    gap: 20px;
    font-size: 16px;
}

.header_ul li {
	display: inline;
}

.pc_none {
    display: none;
}

@media screen and (max-width: 768px) {

	.sp_none {
		display: none;
	}
	
	.pc_none {
    display: inline-block;
}
	.logo_sp img {
		max-width: 200px;
	}
	
/*　ハンバーガーボタン　*/
.hamburger {
    display : block;
    position: fixed;
    z-index : 5;
    right : 13px;
    top   : 32px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
	background: #F78724;
  }
  
  .hamburger.active {
  	background: none;
  }
  
  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 3px ;
    border-radius: 10px;
    left    : 6px;
    background : #fff;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }
  .hamburger span:nth-child(1) {
    top: 10px;
  }
  .hamburger span:nth-child(2) {
    top: 20px;
  }
  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1) {
    top : 20px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 20px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 3;
    top  : 0;
    left : 0;
    color: #000;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    height: 100%;
	align-items: center;
    background: #0693e3;
	display: flex;
  }
  
  nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    flex-direction: column;
    /*padding-top: 250px;*/
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-left: 0;
  }
  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.globalMenuSp ul li:hover{
    background :#ddd;
  }
  
  nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
  }
	
	.denwa {
    position: fixed;
    z-index: 2;
    top: 80px;
    right: 14px;
	 display: inline-block;
}
	
	.denwa img {
		max-width: 41px;
	}
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }
	
}

/*--------ヘッダー終了--------*/


/*--------メインビジュアル--------*/

.first_ttl_sp p {
    display: none;
}

.main_logo img {
	max-width: 40%;
}

.main_logo {
	text-align: center;
	margin-top: 80px;
	margin-bottom: 60px;
}

.page_ttl {
	text-align: center;
    font-size: 30px;
	color: #fff;
	text-shadow: 1px 2px 4px #5d5d5d;
}

.page_ttl_wrap {
	background: url(../img/for_work/for_work_mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
	padding: 85px 0;
	margin: 0 40px;
}

.line_bar {
	display: block;
    position: fixed;
    z-index: 5;
    top: 20%;
    right: 0%;
}

.line_bar img {
	width: 50px;
}

.mail_bar {
	display: block;
    position: fixed;
    z-index: 5;
    top: 60%;
    right: 0%;
}

.mail_bar img {
	width: 50px;
}

/*----------セクション１-------*/
.first_ttl {
	max-width: 80%;
    margin: 0 auto;
	margin-top: 130px;
}

.cleaner_flex {
	display: flex;
	justify-content: space-between;
	align-items: self-end;
	margin-top: 80px;
}

/*.cleaner_img img {
	max-width: 480px;
}*/

.work_left .work_red {
	font-weight: bold;
	color: red;
	margin-left: 40px
}

/*.back_blue {
	background-color: #0E6BAC;
	padding: 20px 100px;
	padding-left: 60px;
	width: 80%;
}*/

.back_white {
	background-color: #fff;
	padding: 20px 40px;
}

.price_flex {
	display: flex;
	justify-content: space-between;
	margin-top: 80px;
}

.table-wrap {
  overflow-x: scroll;
}
.table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}
.table th,
.table td {
  border: 2px solid #eee;
  padding: 4px 10%;
}


.inner {
            max-width: 1180px;
            margin: 0 auto;
            padding: 0 11%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
        }

        th, td {
            border: 4px solid #fff;
            padding: 8px;
            text-align: left;
        }

        th {
            background-color: #236BAC;
            text-align: center;
            color: #fff;
			font-size: 18px;
        }

        td {
            vertical-align: middle;
            padding-left: 9.2%;
			background-color: #EDEDED;
		    font-weight: bold;
        }

        .p_more {
            padding-left: 10.7%;
        }

.option {
	margin-top: 50px;
}

.option h3 {
	display: inline;
    background-color: #9AD020;
    color: #fff;
    padding: 10px;
}

.hitt {
	margin-top: 15px;
}

.bold {
	font-weight: bold;
}

.attn {
	margin-top: 15px;
}
/*----------セクション１終了-------*/

/*----------セクション2-------*/

.section_two {
	background-color: #0E6BAC;
	margin-top: 100px;
    padding-top: 50px;
    padding-bottom: 50px;
}

.sec2_main_ttl {
	text-align: center;
	color: #fff;
	display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
}

.sec2_main_ttl:before, .sec2_main_ttl:after {
  border-top: 4px solid;
  content: "";
  width: 6em;
}

.sec2_main_ttl:before {
  margin-right: 1em; /* 文字の右隣 */
}

.sec2_main_ttl:after {
  margin-left: 1em; /* 文字の左隣 */
}

.sec2_ttl {
	display: inline-block;
    border-bottom: 4px solid #0e6bac;
    width: 80%;
}

.sec2_ttl .num_red {
	color: red;
	font-size:34px;
	font-weight: bold;
}

.sec2_flex {
	display: flex;
    justify-content: space-between;
	background-color: #fff;
	padding: 25px 40px;
	margin-top: 50px;
}

.sec2_flex_right p {
	width: 80%;
}

.sec2_img {
	margin-right: 25px;
}

.sec2_img img {
	max-width: 330px;
}


/*----------セクション2終了-------*/


/*----------セクション3-------*/

.section_three {
	background-color: #EFEFEF;
	padding-top: 120px;
	padding-bottom: 100px;
}

.sec3_main_ttl {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.example {
	margin-top: 50px;
	margin-bottom: 20px;
}

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

.mov_left {
    max-width: 490px;
    height: auto;
}

.mov_right {
    max-width: 490px;
    height: auto;
}

.sec3_main_ttl:before, .sec3_main_ttl:after {
  border-top: 4px solid;
  content: "";
  width: 6em;
}

.sec3_main_ttl:before {
  margin-right: 1em; /* 文字の右隣 */
}

.sec3_main_ttl:after {
  margin-left: 1em; /* 文字の左隣 */
}

.section_three .flex_one {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}

.section_three .flex_one .flx_0 {
	max-width: 500px;
    text-align: center;
}

.section_three .flex_one .flx_1 {
	max-width: 350px;
    text-align: center;
}

.section_three .flex_one .flx_1 p {
	margin-top: 15px;
}

.section_three .flex_one .c_works {
	max-width: 350px;
    text-align: center;
}

.container-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 50px 5.6%;
	margin-top: 80px;
}
.container-6 img {
    max-width: 29.6%; /* 3列に設定 */
}

.under_cntn {
	margin-top: 15px;
}

.facility {
	background-color: #fff;
	margin-top: 80px;
}

.facility h3 {
  text-align: center;
  margin: 0;
  padding-top: 20px;
  padding-bottom: 10px;
}

.br_sp {
	display: none;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 20px;
}

.facility-item {
  text-align: left; /* 文頭揃え */
  padding: 10px;
}

/*----------セクション3終了-------*/


/*----------セクション4-------*/

.section_four {
	padding-top: 120px;
    padding-bottom: 100px;
}

.sec4_main_ttl {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 100px;
}

.sec4_main_ttl:before, .sec4_main_ttl:after {
  border-top: 4px solid;
  content: "";
  width: 6em;
}

.sec4_main_ttl:before {
  margin-right: 1em; /* 文字の右隣 */
}

.sec4_main_ttl:after {
  margin-left: 1em; /* 文字の左隣 */
}


.q_box {
	padding-bottom: 30px;
    border-bottom: 3px solid;
	margin-bottom: 30px;
}

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

.q {
	margin-bottom: 30px;
}

.q:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/for_home/q_mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  padding-right: 20px;
}

.a:before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background-image: url(../img/for_home/a_mark.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  padding-right: 20px;
}

.a {
   padding-left: 3.3em;
   text-indent: -3.3em;
}
/*----------セクション4終了-------*/

/*----------セクション5-------

.section_five {
    background-color: #0E6BAC;
	padding: 50px 0;
}

.baner_back {
	background-color: #fff;
	border-radius: 20px;
	padding: 0 16%;
    padding-top: 30px;
    padding-bottom: 70px;
}

.baner_back h3 {
	margin: 0px;
	text-align: center;
    font-size: 32px;
    margin-top: 15px;
    margin-bottom: 50px;
}

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

.bnr_flex_left {
	border-top: 4px solid #F77503;
    border-bottom: 4px solid #F77503;
	padding-top: 30px;
    padding-bottom: 10px;
}

.bnr_flex_left .cntct {
	font-weight: bold;
	margin-bottom: 10px;
}

.bnr_flex_left .tel_num {
	font-weight: bold;
	font-size: 36px;
}

.bnr_mail {
	max-width: 340px;
	padding-bottom: 20px;
}

.bnr_line {
	max-width: 340px;
}

.bnr_flex_left .tel_num:before {
    content: '';
    display: inline-block;
    width: 45px;
    height: 45px;
    background-image: url(../img/for_home/tel_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
}

----*/

/*--------バナー--------*/

.banner {
	background-image: url(../img/for_work/banner_back.png);
	background-repeat: no-repeat;
    height: auto;
    background-size: 100%;
    background-position: center;
}

.bnr_inner {
	padding: 50px 0;
}

.banner_h3 {
	font-size: 32px;
	text-align: center;
	margin: 0;
    margin-bottom: 30px;
}

.white_back {
	background: #fff;
	padding: 30px 0;
}

.banner_flex {
	display: flex;
    justify-content: space-between;
    padding: 0 100px;
	align-items: center;
}

.mail_mtmr {
	max-width: 350px;
	margin-bottom: 20px;
}

.bnr_flex_left {
	border-top: 4px solid #F77503;
	border-bottom: 4px solid #F77503;
	text-align: center;
	padding: 39px 0;
}

.bnr_flex_left p {
	font-weight: bold;
}

.bnr_flex_left .bangou {
	font-size: 40px;
    font-weight: bold;
}

.bnr_flex_left .bangou:before {
	content: '';/*何も入れない*/
  display: inline-block;
  width: 50px;/*画像の幅*/
  height: 50px;/*画像の高さ*/
  background-image: url(../img/denwa.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

.line_mtmr {
	max-width: 350px;
}
/*--------バナー終了--------*/




/*----------フッター-------*/

.footer_flex {
	display: flex;
	justify-content: space-between;
	margin-top: 120px;
    margin-bottom: 70px;
}

footer .right {
	width: 34%;
}

.footer_ul {
	column-gap: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    list-style: none;
    padding: 0;
    row-gap: 12px;
}

.footer_logo {
    margin-bottom: 8px;
}

.copy {
	text-align: center;
	font-size:14px;
	margin-bottom: 5px;
}


@media (max-width: 768px) {
table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
}
			
td {
	padding: 8px;
}
			
.p_more {
    padding-left: 8px;
}
	
.container-6{
        gap:20px 3%;
    }
    .container-6 img {
        width:48.5%; /* 2列に設定 */
    }
}


@media screen and (max-width: 768px) {
	
	    body {
        font-family: "Zen Kaku Gothic New", serif;
    }
	
	.main_logo {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.main_logo img {
    max-width: 65%;
}
	
	.first_ttl_sp p {
		display: block;
		text-align: center;
		margin-top: 30px;
	}
	
	.first_ttl_sp .kasen {
		background: linear-gradient(transparent 60%, #fbff02 30%);
	}
	
	.sp_ttl_size {
	 font-size: 22px;
     font-weight: bold;
     color: #126dd5;
	}
	
	.first_ttl {
    display: none;
}
	
	.page_ttl {
    font-size: 20px;
}
	
	.page_ttl_wrap {
    padding: 11px 0;
}
	
	.line_bar {
	display: none;
}

.mail_bar {
	display: none;
}
	
	.inner {
    padding: 0 5%;
}
	
	.work_left .work_red {
    margin-left: 0px;
	width: auto;
	margin-top: 20px;
}
	
	.br_none {
		display: none;
	}

	.back_white {
    background-color: #fff;
    padding: 20px 0px;
}
	
	.cleaner_flex {
	flex-direction: column-reverse;
	margin-top: 30px;
}
	
	.cleaner_img img {
    max-width: 100%;
}
	
	.price_flex {
		flex-direction: column;
}
	
	.card {
    margin-bottom: 40px!important;
	width: 96%;
}
	
	.price2 {
    margin: 0 0px;
}
	
	.sec2_flex {
		flex-direction: column;
		padding: 20px 20px;
		margin-top: 30px;
	}
	
	.nedan {
    width: 280px;
}
	
	.price_num {
    font-size: 28px;
}
	
	.koumoku {
    width: 280px;
}
	
	.option {
    margin-top: 20px;
}
	
	.section_two {
    margin-top: 80px;
    padding-top: 30px;
    padding-bottom: 50px;
}
	
	.sec2_main_ttl {
    font-size: 20px;
}
	
	.sec2_ttl {
    width: 100%;
	margin-top: 0px;
}
	
	.sec2_flex_right p {
    width: 100%;
	margin-bottom: 20px;
}
	
	.sec2_ttl .num_red {
    font-size: 26px;
}
	
	.sec2_img {
    margin-right: 0px;
}
	
	.sec2_img img {
    max-width: 100%;
}
	
	.sec3_main_ttl {
    font-size: 20px;
}
	
	.section_three {
    padding-top: 80px;
	padding-bottom: 50px;
}
	
	.mov_flex {
	flex-direction: column;
}
	
	.sec3_main_ttl:before, .sec3_main_ttl:after {
    width: 4em;
}
	
	.section_three .flex_one {
    flex-direction: column;
	margin-top: 40px;
}
	
	.section_three .flex_one .flx_1 {
    margin-bottom: 30px;
}
	
	.section_three .flex_one .yajirusi_img img {
		transform: rotate(90deg);
	}
	
  .section_three .flex_one .yajirusi_img {
    max-width: 90px;
    padding: 30px;
}
	
	.section_three .flex_two .flx_2 {
    max-width: 100%;
    margin-bottom: 20px;
}
	
	.section_three .flex_two {
	flex-direction: column;
	margin-top: 50px;
}
	
	.parts_txt {
    margin-top: 0px;
}
	
	.three_txt {
    margin-top: 0px;
}
	
	.section_three .flex_three {
	flex-direction: column;
	margin-top: 50px;
}
	
	.section_three .flex_three .flx_3 {
		margin-bottom: 20px;
	}
	
	
	.section_four {
    padding-top: 80px;
    padding-bottom: 50px;
}
	
	.sec4_main_ttl {
	font-size: 20px;
}
	.sec4_main_ttl:before, .sec4_main_ttl:after {
    width: 4em;
}
	
	.sec4_main_ttl {
        font-size: 20px;
		margin-bottom: 40px;
    }
	
   .container-6 img {
        max-width: 100%;
    }
	
	.facility-grid {
	   display: block;
	}
	
	.br_sp {
		display: block;
	}
	
	.q {
    margin-bottom: 15px;
    padding-left: 3.3em;
    text-indent: -3.3em;
}
	
/*	.baner_back {
    background-color: #fff;
    border-radius: 20px;
    padding: 0 5%;
    padding-top: 30px;
    padding-bottom: 40px;
}
	
	.baner_back h3 {
    margin: 0px;
    text-align: center;
    font-size: 28px;
    margin-top: 0px;
    margin-bottom: 20px;
}
	
	.baner_flex {
    flex-direction: column;
}
	
	.bnr_flex_left {
    padding-top: 20px;
    padding-bottom: 10px;
}
	
	.bnr_flex_left .tel_num {
    font-size: 31px;
}
	
	.bnr_mail {
    margin-top: 20px;
    padding-bottom: 20px;
}---*/
	
		.banner {
    height: auto;
    background-size: auto;
}
	
	.banner_h3 {
    font-size: 20px;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}
	
	.banner_flex {
		flex-direction: column;
		padding: 0px 40px;
	}
	
  .bnr_flex_left .bangou {
    font-size: 24px;
    font-weight: bold;
}
	
  .bnr_flex_left {
    padding: 10px 0;
}
	
  .bnr_flex_right {
	  margin-top: 30px;	
	}
	
	.footer_flex {
    flex-direction: column;
    margin-top: 50px;
    margin-bottom: 50px;
}
	
	.footer_flex .left {
	font-size: 18px;
	}
	
	.footer_ul {
		display: block;
	}
	
	footer .right {
    width: 100%;
}
	
	.footer_flex .footer_logo {
		text-align: center;
		margin-bottom: 15px;
	}
	
	.footer_flex .footer_logo img {
		max-width: 73%;
	}
	
}



.site-footer {
  font-size: 14px;
  color: #000;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-top {
  display: flex;
}

.footer-top-left {
  width: 350px; /* 業務内容と同じ幅 */
}

.footer-top-left p {
	font-size: 16px;
}

.footer-top-left img {
  max-width: 100%;
  margin-bottom: 10px;
}

.footer-top-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  font-size: 16px;
}

.footer-menu a {
  display: block;
  margin-bottom: 10px;
  color: #000;
  text-decoration: none;
  font-size: 18px;
}

.menu-title {
  margin-bottom: 10px;
  font-size: 18px;
}

.footer-menu ul {
  padding-left: 1em;
}

.footer-menu ul li {
      list-style: disc;
}

hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #999;
}

.footer-bottom {
  display: flex;
}

.footer-bottom-left {
  width: 350px; /* 上段左と同じ */
}

.footer-bottom-right {
  flex: 1; /* HOME〜会社概要と同じ幅 */
}

.footer-bottom-right p {
	margin-bottom: 20px;
	    font-size: 16px;
}

.footer-bottom h3 {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: normal;
}

.footer-bottom ul {
  padding-left: 1em;
}

.footer-bottom ul li {
 margin-bottom: 3px;
 list-style: disc;
 font-size: 16px;
}

.footer-copy {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
}


/* =========================
   footer 基本設定
========================= */
.site-footer {
  font-size: 15px;
  color: #333;
  line-height: 1.7;
}

.site-footer * {
  box-sizing: border-box;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
      border-top: 1px solid;
    margin-top: 80px;
}

/* =========================
   上段
========================= */
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-top-left {
  width: 280px;
}

.footer-top-left img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer-top-right {
  display: flex;
  gap: 60px;
}

.footer-menu a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-menu li {
  margin-bottom: 6px;
}

.menu-title {
  margin-bottom: 10px;
}

.other a {
	font-size: 18px;
}

.other p {
	margin-bottom:10px;
}
/* =========================
   区切り線
========================= */
.site-footer hr {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #999;
}

/* =========================
   下段
========================= */
.footer-bottom {
  display: flex;
  gap: 40px;
}

.footer-bottom-left {
  width: 280px;
  padding-left: 20px;
  padding-top: 55px;
}

.footer-bottom-right {
  flex: 1;
  border-top: 1px solid #000;
    padding-top: 50px;
}

.footer-bottom h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-bottom ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom li {
  margin-bottom: 6px;
}

.footer-bottom span {
}

.footer-bottom ul .disc_none {
		list-style: none;
	}

/* =========================
   コピーライト
========================= */
.footer-copy {
  text-align: center;
  font-size: 15px;
  padding: 20px 0;
}

/* =========================
   レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

	.footer-bottom-right {
    padding-left: 0px;
}
	
  .footer-top-left,
  .footer-bottom-left {
    width: 100%;
	padding-left: 20px;
  }

.footer-top-left {
	padding-left: 0;
	}
	
  .footer-top-right {
    flex-direction: column;
    gap: 10px;
	padding-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 15px;
  }

  .site-footer,
  .site-footer a,
  .site-footer p,
  .site-footer li,
  .site-footer h3 {
    font-size: 15px;
  }
}


/* =========================
   レスポンシブ（SP）
========================= */
@media screen and (max-width: 768px) {

  .footer-top {
    flex-direction: column;
  }

	.footer-bottom-right {
    padding-left: 0px;
}
	
  .footer-top-left,
  .footer-bottom-left {
    width: 100%;
	padding-left: 20px;
  }

.footer-top-left {
	padding-left: 0;
	}
	
  .footer-top-right {
    flex-direction: column;
    gap: 10px;
	padding-left: 20px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-inner {
    padding: 30px 15px;
  }

  .site-footer,
  .site-footer a,
  .site-footer p,
  .site-footer li,
  .site-footer h3 {
    font-size: 15px;
  }
}

.footer-top-right a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #0066cc;
  text-underline-offset: 3px;
}



/* ======================================
   lin_bnr（PC表示）中央寄せ 修正
   ====================================== */

/* sp_none の flex を lin_bnr だけ上書き */
.lin_bnr.sp_none {
  justify-content: center;
}

/* 画像を確実に中央寄せ */
.lin_bnr img {
  display: block;
  margin: 0 auto;
}


/* ======================================
   footer リンク装飾 修正
   ====================================== */

.footer-top-right a {
  color: #000;
  text-decoration: underline;
  text-decoration-color: #0066cc;
  text-underline-offset: 3px;
}


/* ======================================
   念のための保険（SP時に影響させない）
   ====================================== */

@media screen and (max-width: 768px) {
  .lin_bnr.sp_none {
    display: none;
  }
	
	.main_logo img {
        max-width: 75%;
    }
	
	.footer-top-left img {
	max-width: 75%;
	}
	
}



.line_bar {
  position: fixed;
  right: 0;
  top: 200px;      /* 基準位置 */
  z-index: 5;
}

.mail_bar {
  position: fixed;
  right: 0;
  top: 490px;      /* ← 上のボタン＋固定間隔 */
  z-index: 5;
}

.line_bar img,
.mail_bar img {
  width: 60px;
  display: block;
}