@charset "utf-8";
html.overflow, body.overflow {
  overflow-x: auto;
}
html.overflow #header, html.overflow .mainimg, html.overflow #mobile-menu, html.overflow #footer, body.overflow #header,  body.overflow .mainimg, body.overflow #mobile-menu, body.overflow #footer {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body {
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    /*font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;*/
    font-size: 16px;
    line-height: 1.9;
	letter-spacing: 0.04em;
    font-weight: 500;
    color: #000;
    overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

::-webkit-selection {
  color: #ffffff;
  background: #2D4782;
}

::-moz-selection {
  color: #ffffff;
  background: #2D4782;
}

::selection {
  color: #ffffff;
  background: #2D4782;
}

a {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #2D4782;
  text-decoration: none;
}

a:hover, a:focus, a:active {
  outline: none;
  color: #468302;
}

#content-main a {
	text-decoration: underline;
}

input {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* Heading */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	margin: 0 0 20px 0;
	padding: 0;
	/*font-weight: bold;*/
}

h1, .h1 {
  font-size: 30px;
}

h2, .h2 {
  font-size: 26px;
}

h3, .h3 {
  font-size: 23px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
  line-height: 1.5;
}

h6, .h6 {
  font-size: 16px;
  line-height: 24px;
}

ul, ol {
  padding-left: 15px;
  /*line-height: 26px;*/
}
ul ul, ul ol, ol ul, ol ol {
  padding-left: 25px;
}

ul, ol, p {
  margin: 0 0 20px 0;
}
p{
}
img {
	max-width: 100%;
	height: auto;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.las{
	font-size: 20px;
}

.font-serif {
  font-family: "Crimson Text", serif;
}

.font-sans-serif {
  font-family: "Outfit", arial, sans-serif;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 480px) {
  .col-xxs-12 {
    display: block;
    clear: both;
    width: 100%;
    float: left;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}
/*@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1600px;
  }
}*/
/* Header */
#header {
    width: 100%;
    padding: 0;
	background: #fff;
}
.home #header {
    padding: 0;
}

#header > .header-in{
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    justify-content: space-between;
	padding-left: 3%;
}

.description{
    font-size: 13px;
    color: #333;
}
@media screen and (max-width: 1300px) {

    .description{
        max-width: 450px;
    }
}
.header-logo{
    font-size: 27px;
    line-height: 1.5;
}
.header-logo h1{
    margin-bottom: 0;
	font-size: inherit;
	line-height: 1.5;
}
.header-logo span{
    font-size: 15px;
	color: #c1ae9d;
	display: block;
	letter-spacing: 0.04em;
}
.header-logo a{
  border-bottom: none !important;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo a:hover {
  opacity: .7;
}
.header-logo img {
  
}

#primary-menu {
    position: relative;
    list-style: none;
}
#primary-menu ul {
  list-style: none;
  font-weight: 500;
  margin: 0;
  padding: 0;
  display: flex;
  
}
#primary-menu li{
    display: flex;
	align-items: center;
}
#primary-menu li a{
	color: #000;
    text-decoration: none;
    position: relative;
    display: block;
    padding: 10px 20px;
	text-align: center;
	font-size: 18px;
}
#primary-menu li a span{
	color: #c1ae9d;
	font-size: 15px;
    font-family: "Outfit", sans-serif;
	line-height: 1;
	display: block;
	transition: all .5s ease-in-out;
}
#primary-menu li a:hover,body:not(.home) #primary-menu li.active a{
	color: #2D4782;
}
#primary-menu li a:hover span,#primary-menu li.active a span{
    position: relative;
}

#primary-menu li.has-child::after,
#primary-menu ul ul li.has-child::after{
    content:'';
    position: absolute;
    width:6px;
    height:6px;
    border-top: 2px solid #00803C;
    border-right:2px solid #00803C;
}
#primary-menu li.has-child::after{
    right: 5px;
    bottom: 25px;
    transform: rotate(135deg);
}
#primary-menu ul ul li.has-child::after{
    left:6px;
    top:17px;
    transform: rotate(45deg);
}
#primary-menu li.has-child ul{
    position: absolute;
    left: 0;
    top: 90px;
    z-index: 4;
    background: #40473f;
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    padding-left: 0;
    /*overflow: hidden;*/
    border: 1px solid #fff;
}
#primary-menu li.has-child ul:before ,
#primary-menu li.has-child ul:after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 25%;
}
#primary-menu li.has-child ul:before {
  border: 10px solid transparent;
  border-bottom: 10px solid #40473f;
  z-index: 100;
}
#primary-menu li.has-child ul:after {
  border: 8px solid transparent;
  border-bottom: 8px solid #40473f;
  z-index: 200;
}
#primary-menu li.has-child ul li{
    display: block;
}
#primary-menu li.has-child:hover > ul,
#primary-menu li.has-child ul li:hover > ul,
#primary-menu li.has-child:active > ul,
#primary-menu li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}
#primary-menu li.has-child ul li a{
    color: #fff;
    border-bottom: solid 1px rgba(255,255,255,0.6);
    background: url("../images/common/icon-more-y.svg") no-repeat center right 10px;
}

#primary-menu li.has-child ul li:last-child a{
    border-bottom: none;
}

#primary-menu li.has-child ul li a:hover,
#primary-menu li.has-child ul li a:active{
    background: #f4cc21 url("../images/common/icon-more.svg") no-repeat center right 10px;
    color: #40473f;
}
#primary-menu li#menu05{
    margin-left: 20px;
}
#primary-menu li#menu05 a{
	background: #2D4782;
    color: #fff;
	font-size: 16px;
	font-weight: bold;
    padding: 20px 30px;
	line-height: 1em;
	position: relative;
}
#primary-menu li#menu05 a::before{
	content: "";
	background: url("../images/common/icon-contact.svg") no-repeat center center / contain;
	width: 32px;
	height: 26px;
	margin: 0 auto 10px;
	display: block;
}
#primary-menu li#menu05 a:hover{
	background: #FCE600;
	color: #2D4782;
}
#primary-menu li:not(#menu01):not(#menu05)::before{
    content: "／";
}

@media screen and (max-width: 1400px) {
	.header-logo{
		font-size: 22px;
	}
	#primary-menu li a{
		font-size: 16px;
	}
}
.mmenu{
    position: fixed;
    right: 5%;
	top: 18px;
    z-index: 1000;
    height: 60px;
    width: 60px;
    background: #2D4782;
    display: none;
}
.toggle-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
  height: 60px;
    width: 60px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  z-index: 1110;
}
.toggle-menu span {
display: inline-block;
width: 25px;
height: 3px;
color: #fff;
text-transform: uppercase;
text-indent: -55px;
background: #fff;
transition: all .2s ease-out;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.toggle-menu span::after, .toggle-menu span::before {
  content: "";
  position: absolute;
  width: 25px;
  border-radius: 5px;
  height: 3px;
  display: block;
  background: #fff;
  transform-origin: center;
  transition: 0.3s;
}
.toggle-menu span::after{
  bottom: -7px;
}
.toggle-menu span::before {
  top: -7px;
}
.toggle-menu.active span {
  background-color: inherit;

}
.toggle-menu.active span::before {
  box-shadow: none;
  transform: rotate(45deg) translate(5px, 5px);
  width: 25px;
  opacity: 1
}
.toggle-menu.active span::after {
box-shadow: none;
  transform: rotate(-45deg) translate(5px, -5px);
  width: 25px;
  opacity: 1
  }
.toggle-menu p{
    color: #fff;
    font-size: 12px;
    margin: 0;
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    display: none;
}
.toggle-menu.hide{
    display: none;
}
.lock body{
    position: fixed;
    max-width: 100%;
    width: 100%;
}
#full-nav{
    position:fixed;
    z-index: -1;
    opacity: 0;
    top:0;
    width:100%;
    /*height: 100vh;*/
    height:100%;
    background-color: rgba(255,255,255,1.00);
    transition: all 0.3s;
    display: none;
    
    -webkit-overflow-scrolling: touch;
}

#full-nav.open{
  opacity: 1;
  z-index: 999;
}

#full-nav.open #full-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    /*height: 100vh;*/
    height:100%;
    -webkit-overflow-scrolling: touch;
    display: flex;
}
#full-nav.open #full-nav-list .nav-main{
    width: 100%;
    position: relative;
}
#full-nav > * {
    display: none;
}
#full-nav.open > * {
    display: block;
}
#full-nav .nav-main > div {
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    padding: 25% 0 10%;    
    column-count: 1;
    overflow: auto;
    width: 100%;
    /*height: 100vh;*/
    height:100%;
    min-height: 100vh;
  min-height: -webkit-fill-available;
    -webkit-overflow-scrolling:touch;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 18px;
}
#full-nav .nav-main div > ul {
    width: 30%;
    margin-right: 30px;
}
#full-nav .nav-main div > ul li a::before{
    width: 10%;
    margin-right: 30px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}

#full-nav .nav-main .nav-main-menu {
    font-size: 18px;
    width: 35%;
}
#full-nav .nav-main .nav-main-menu:last-child {
    margin-left: 20px;
}
#full-nav .nav-main .nav-main-menu ul {
    width: 100%;
    padding-left: 0;
}
#full-nav li{
  list-style: none;
  margin: 0px;
  position: relative;
  border-top: 1px solid #ccc;
}
/*
#full-nav li:last-child{
  border-bottom: 1px solid #ccc;
}*/
#full-nav li ul{
  margin: 0;
}
#full-nav li ul li{
  margin-left: 0;
  margin-right: 0;
}
#full-nav li a{
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  color: #000;
}
#full-nav li:not(#menusp06) a{
  padding: 20px;
}
#full-nav li a span{
	color: #c1ae9d;
	font-size: 18px;
    font-family: "Outfit", sans-serif;
	display: block;
    font-weight: 600;
}
#full-nav li#menusp06 a::before {
  content: "";
  background: url("../images/common/icon-contact.svg") no-repeat center center / contain;
  width: 32px;
  height: 26px;
  margin-right: 10px;
}
/*#full-nav li a:hover,
#full-nav li.active a{
  color: #00A0E9
}*/

#content {
  padding: 7em 0;
}
@media screen and (max-width: 768px) {
  #content {
    margin-bottom: 4em;
  }
}

#sidebar {
  padding: 7em 0;
  font-size: 16px;
}
#sidebar.left-sidebar {
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  #sidebar.left-sidebar {
    padding-right: 0px;
  }
}
#sidebar.right-sidebar {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  #sidebar.right-sidebar {
    padding-left: 0px;
  }
}
#sidebar .sidebar-box {
  margin-bottom: 2em;
  float: left;
  width: 100%;
}
#sidebar .sidebar-heading {
  margin-bottom: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #2e2e2e;
  position: relative;
  padding-top: 7px;
}
#sidebar .sidebar-heading .border {
  width: 30px;
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  background: #ebebeb;
}
#sidebar .sidebar-links {
  padding: 0;
  margin: 0 0 30px 0;
}
#sidebar .sidebar-links li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.mainimage{
	text-align: center;
    position: relative;
	width: 100%;
	margin: 0;
}
.slide{
    /*width: 93vw;*/
    margin: auto;
    overflow: hidden;
    margin-bottom: 0px !important;
}
.slide .slick-list{
    background: #000;
}
.slide .img01 {
  clip-path: polygon(0 0 , 100% 0, 70% 100%, 0 100% );
  width: 60%;
  position: absolute;
  left: 0;
  top: 0;
}
.slide .img02 {
  clip-path:  polygon(30% 0 , 100% 0, 100% 100%, 0 100% );
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
}
.slide img{
    width: 100%;
    object-fit: cover;
}
.slide .slide-img,.slide img{
    height: 100vh;
    margin-left: auto;
}
.slide .slick-dots{
    bottom: 30px;
    right: 0;
    padding: 30px 40px 10px 30px;
    text-align: right;
}
.slide .slick-dots li {
    margin: 3px;
}
.slide .slick-dots li button::before {
    font-size: 15px;
    color: #fff;
    opacity: 1;
}
.slide .slick-dots li.slick-active button::before{
    color: #006837;
}

.maintxt{
    position: absolute;
    left: 0;
    right: 0;
	top: 0;
	bottom: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    width: 80%;
    align-items: center;
    justify-content: center;
	flex-direction: column;
	text-align: left;
}
.maintxt h2{
    font-size: 40px;
    font-weight: bold;
    color: #fff;
	display: block;
	margin-bottom: 50px;
	position: relative;
	writing-mode: vertical-rl; 
}
.maintxt h2 span{
    background: #2D4782;
	padding: 15px 10px;
	margin: 10px;
	display: inline-block;
}
.scroll{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 3;
	color: #fff;
}
.scroll span{
	position: absolute;
	bottom: 20px;
	color: #fff;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: normal;
	letter-spacing: 0.05em;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.scroll::after {
    content: "";
    position: absolute;
    bottom:20vh;
	width:11px;
	height:11px;
	border-radius: 50%;
	background: #90a7b7;
	border: 2px solid #fff;
	animation:
	circlemove 2s ease-in-out infinite,
	cirlemovehide 2s ease-out infinite;
	margin-left: -9px;
}
@keyframes circlemove{
      0%{bottom:20vh;}
     100%{bottom:-5px;}
 }
@keyframes cirlemovehide{
      0%{opacity:0}
     50%{opacity:1;}
    80%{opacity:0.9;}
  100%{opacity:0;}
 }
.scroll::before{
  content:"";
  position: absolute;
  bottom:0;
  width:2px;
  height: 20vh;
  background:#fff;
  margin-left: -4px;
}
.slick-num{
    color: #fff;
    position: absolute;
    bottom: 0;
    left: -5vw;
    text-align: center;
}
.slick-num span{
    display: block;
}
.mainimage .rlogo{
	width: 180px;
	position: absolute;
	right: 0;
	top: 10%;
	z-index: 1;
}
.mainimage .llogo{
	width: 233px;
	position: absolute;
	left: 0;
	bottom: -45px;
}
.sales{
	font-size : 18px;
	letter-spacing: 0.08em;
	color : #283239;
	text-align: center;
	margin: 5px 0;
}
.page .sales{
	background : #E7EFF2;
	padding: 0px 25px;
	display: inline-block;
	margin: 20px 0;
	clip-path: polygon(15px 0 , 100% 0, calc(100% - 15px) 100%, 0 100% );
}
#content-main h2{
    font-size: 38px;
    margin: 0 0 30px 0;
}
.home #content-main h2{
    font-size: 24px;
	font-weight : bold;
    line-height: 1.6;
    position: relative;
    letter-spacing: 0.04em;
	color: #2D4782;
	background: url("../images/common/h2.svg") no-repeat center top;
	padding-top: 30px;
	margin-bottom: 70px;
	text-align: center;
}
.home #content-main h2 span{
    font-family: "Outfit", sans-serif;
	font-size: 54px;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1.3;
    display: block;
    position: relative;
	color: #000;
}
.home #content-main h3{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
}
.more{
    font-weight: 500;
    margin-top: 2em;
	position: relative;
}
.more a{
    color: #000;
    padding: 15px 70px 15px 40px;
    transition: all .5s ease-in-out;
    position: relative;
    text-decoration: none !important;
    display: inline-block;
	background: #fff url("../images/common/icon-more.svg") no-repeat center right 20px; 
	min-width: 250px;
	text-align: center;
	border: 1px solid #000;
}
.more a:hover{
    background: #000 url("../images/common/icon-more-w.svg") no-repeat center right 20px;
	color: #fff;
}
.more a:hover::before{
	width: 30px;
}
.home #content-main section{
    padding: 5rem 0 0;
    position: relative;
}
.home #content-main section .container{
    max-width: 1200px;
}
.home-about{
	background: url("../images/common/img.svg") no-repeat right top / 294px;
}
.home-about .a_txt{
	 writing-mode: vertical-rl;
	 position: relative;
}
.home-about h3{
	margin-top: -20px;
	margin-right: -80px;
	margin-left: 40px;
	z-index: 1;
	position: relative;
}
.home-about h3 span{
	background : #2D4782;
	padding: 10px 5px;
	margin: 5px;
	display: inline-block;
}
.home-about .a_txt p{
	 max-height: 350px;
	 margin-top: 25px;
	 margin-left: 40px;
	 font-size : 20px;
}
.home-about .a_txt .makita{
    font-family: "Outfit", sans-serif;
	font-size : 101px;
	letter-spacing: 0.08em;
	line-height: 1;
	color : #91CFE8;
	writing-mode: vertical-rl;
	position: absolute;
	left: 0;
	bottom: -30px;
	z-index: -1;
}
.home #content-main .more{
	text-align: center;
}
.home-business .senmon{
	min-height: 450px;
	background: url("../images/index/business-bg.webp") center center / cover;
	position: relative;
	display: flex;
	align-items: center;
}
.home #content-main .home-business .senmon h2{
	background: none;
	font-size : 34px;
	text-align: left;
	color: #fff;
	margin-bottom: 30px;
	padding: 0;
}
.home-business .senmon ul{
	margin: 0;
	padding: 0;
}
.home-business .senmon ul li{
	display: inline-block;
	background: #fff;
	font-size : 17px;
	color : #283239;
	padding: 0px 8px;
	margin-right: 10px;
	margin-bottom: 10px;
}
.home-business .senmon::after{
	content: "";
	width: 460px;
	height: 160px;
	background: #fff;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	clip-path: polygon(50% 0 , 100% 100%, 0 100% );
}
.home-business .b_img{
	margin-bottom: 20px;
}
.home #content-main .home-works{
	padding-bottom: 200px;
	position: relative;
}
.home-works .rlogo{
	position: absolute;
	width: 220px;
	right: 0;
	top: 180px;
}
.home-works .works-in{
	display: flex;
	gap: 50px;
	align-items: flex-end;
}
.home-works .works-in .more a{
	border-color: #fff;
	background-color: inherit;
	background-image: url("../images/common/icon-more-w.svg");
	color: #fff;
}
.home-works .works-in .more a:hover{
	background-color: #fff;
	background-image: url("../images/common/icon-more.svg");
	color: #000;
}
.home #content-main .home-works::before{
	content: "";
	width: 100%;
	height: 460px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(0deg, transparent 0%, transparent 35.76%, #2d4782 70.2%, #234072 78.24%, #1e3b69 87.44%, #1c3a66 100%), url("../images/index/works-bg.webp") no-repeat center center /cover;
	z-index: -1;
}
#contact{
	position: relative;
	background: url("../images/common/contact-bg.jpg") no-repeat top center;
	padding: 5em 0 105px;
	text-align: center;
}
@media screen and (min-width: 1300px) {
#contact{
	background-size: cover;
}
}
#contact h2{
	color : #2D4782;
	font-weight : bold;
	background: url("../images/common/h2.svg") no-repeat center top;
	padding-top: 30px;
}
#contact h2 span {
	font-family: "Outfit", sans-serif;
	font-size: 54px;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1.3;
	display: block;
	position: relative;
	color: #000;
}
#contact .contact-in{
	max-width: 945px;
	margin: 50px auto 0;
	padding: 50px 20px 40px;
	background: #fff;
}
#contact .contact-in h3{	
	font-weight : bold;
	font-size : 21px;
}
#contact .contact-tm{	
	display: flex;
	gap: 2px;
	margin: 0 auto;
	width: 90%;
}
#contact .contact-tm > *{	
	width: 50%;
	padding: 20px;
}
#contact .contact-tm .tel-no{
	margin-bottom: 0;
}
#contact .contact-tm .tel-link{
	font-family: "Outfit", sans-serif;
	font-size: 46px;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: #2D4782;
}
#contact .contact-tm .tel-link::before{
	content: "";
	background: url("../images/common/icon-tel.svg") no-repeat center center / contain;
	display: inline-block;
	vertical-align: middle;
	width: 25px;
	height: 34px;
}
#contact .contact-tm .mail p{	
	display: flex;
	height: 100%;
}
#contact .contact-tm .mail a{	
	background: #2D4782;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
}
#contact .contact-tm .mail a::before{	
	content: "";
	background: url("../images/common/icon-mail.svg") no-repeat center center/ contain;
	width: 34px;
	height: 33px;
	display: inline-block;
	margin-right: 10px;
}
#contact .contact-tm .mail a:hover{	
	background-color: #FCE600;
	color: #2D4782;
}
#footer {
    clear: both;
    position: relative;
    width: 100%;
    padding: 80px 0 0;
	background: #1C3A66;
    color: #fff;
    letter-spacing: 0.08em;
}
#footer .llogo{
	position: absolute;
	left: 0;
	top: -80px;
	width: 190px;
}
#footer .rlogo{
	position: absolute;
	right: 0;
	bottom: 85px;
	width: 160px;
}
#footer h2{
	margin-bottom: 30px;
	text-align: center;
}
#footer .footer-menu{
    margin: 3em 0 100px;
	text-align: center;
}
#footer .footer-menu ul{
    margin: 0 0 1em;
	padding: 0;
}
#footer .footer-menu li{
    list-style: none;
    display: inline-block;
}
#footer .footer-menu li:not(:first-child)::before{
    content: "／";
	display: inline-block;
}
#footer .footer-menu a{
	color: #fff;
	padding: 0 20px;
}
#footer h2 a:hover,
#footer .footer-menu a:hover{
	opacity: .8;
}
#footer .co-info{
	line-height: 1.7;
	padding: 0 50px;
}
#footer .co-info h3{
	font-size: 18px;
	margin-bottom: 10px;
}
#footer .co-info .map{
	text-align: center;
	margin-top: 10px;
}
#footer .co-info .map a{
	display: block;
	border: 1px solid #7897CE;
	padding: 10px;
	color: #fff;
}
#footer .co-info .map a::before{
	content: "";
	background: url("../images/common/icon-map.svg") no-repeat center center / contain;
	width: 12px;
	height: 19px;
	display: inline-block;
	margin-right: 10px;
	vertical-align: sub;
}
#footer .co-info .map a:hover{
	border: 1px solid #7897CE;
	background: #7897CE;
}
#footer .pagetop {
    text-align: center;
	font-family: "Outfit", sans-serif;
	position: absolute;
	right: 0;
}
#footer .pagetop a{
	background: #2D4782;
	width: 70px;
	height: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer .footer-co{
	min-height: 220px;
	background: url("../images/common/footer-bg.jpg") repeat-x center center;
	color : #FFFFFF;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin-top: 110px;
}
#footer .footer-co p{
	font-size : 40px;
	letter-spacing : 3.2px;
}
#footer .copyright {
    font-size: 14px;
    margin-bottom: 0px;
}
.txtR{
    text-align: right;
}
.txtC{
    text-align: center;
}


.fs-18{
    font-size: 18px;
}

.font80{
    font-size: 80%;
}
.font90{
    font-size: 90%;
}

/**/
.quote {
  width: 80%;
  margin: 0 auto;
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}
.quote cite {
  margin-top: 20px;
  display: block;
  font-size: 20px;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .quote {
    font-size: 20px;
    width: 100%;
  }
}

/* Helper Classes */
/* Spacer */
.spacer {
  clear: both;
  position: relative;
  border: none;
  padding: 0;
  margin: 0;
}

.spacer-xlg {
  height: 150px;
}
@media screen and (max-width: 768px) {
  .spacer-xlg {
    height: 70px;
  }
}

.spacer-lg {
  height: 100px;
}
@media screen and (max-width: 768px) {
  .spacer-lg {
    height: 50px;
  }
}

.spacer-md {
  height: 80px;
}
@media screen and (max-width: 768px) {
  .spacer-md {
    height: 30px;
  }
}

.spacer-sm {
  height: 50px;
}
@media screen and (max-width: 768px) {
  .spacer-sm {
    height: 20px;
  }
}

.spacer-xs {
  height: 30px;
}
@media screen and (max-width: 768px) {
  .spacer-xs {
    height: 20px;
  }
}

.spacer-xxs {
  height: 20px;
}

.letter-spacing {
  letter-spacing: 1px;
}

.no-margin-bottom {
  margin-bottom: 0 !important;
}

.uppercase-heading-sm {
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ccc;
}

.form-group {
  margin-bottom: 30px;
}

.image-popup:hover {
  opacity: .7;
}

.section-heading .lead {
  position: relative;
}
.section-heading .lead > .line {
  height: 2px;
  display: block;
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  background: rgba(0, 0, 0, 0.3);
}
.section-heading .sub {
  font-size: 18px;
}

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

Components 

========================================
*/
/* Buttons */
.btn {
  border-bottom: none !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  padding-left: 20px;
  padding-right: 20px;
  margin-right: 10px;
}
.btn:hover, .btn:focus, .btn:active {
  box-shadow: none;
  outline: none !important;
  border-color: transparent;
}
.btn.btn-icon {
  text-transform: none !important;
  letter-spacing: normal !important;
  padding-left: 15px;
  padding-right: 15px;
}

.btn-outline {
  border: 2px solid #eaeaea !important;
  background: transparent;
  color: #2a2e37;
}
.btn-outline:hover, .btn-outline:active, .btn-outline:focus {
  border: 2px solid #f86942 !important;
  background: #f86942 !important;
  color: #ffffff;
}

.btn-primary {
  background: #57cecd;
}

.btn-success {
  background: #00e195;
}

.btn-danger {
  background: #e02745;
}

.btn-info {
  background: #0bbff2;
}

.btn-warning {
  background: #ffd042;
}

.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  border-color: transparent;
}

.btn-default:hover, .btn-default:active, .btn-default:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus,
.btn-info:hover,
.btn-info:active,
.btn-info:focus,
.btn-warning:hover,
.btn-warning:active,
.btn-warning:focus,
.btn-danger:hover,
.btn-danger:active,
.btn-danger:focus {
  background: #282e3c;
  color: #ffffff;
}

.form-control {
  box-shadow: none !important;
  border: 2px solid #ccc;
}
.form-control:hover, .form-control:focus, .form-control:active {
  outline: none;
  box-shadow: none !important;
  border: 2px solid #57cecd;
}

.to-animate,
.footer-anm,
.u,.l,.r,
.r-animate {
  opacity: 0;
}



/* Easy Rsponsive Tabs */
.tab {
  clear: both;
  display: block;
}

.resp-tab-active {
  color: #57cecd;
}

.resp-content-active, .resp-accordion-active {
  display: block;
}

.tab-menu-icon {
  font-size: 20px;
  position: relative;
  float: left;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .tab-menu-icon {
    margin-top: 7px;
  }
}


/* Accordions */
.accordion .accordion-button{
  padding: 20px;
  border: 1px solid #ccc;
  border-bottom: none;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  color: #0071BC;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 0;
  display: block;
  text-align: left;
}
.accordion-item:first-of-type .accordion-button{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.accordion .accordion-button::before{
    content: url("../images/icon-q.svg");
    width: 56px;
    display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}
.accordion .accordion-button span{
    overflow: hidden;
    display: table-cell;
    vertical-align: middle;
}
.accordion .accordion-header .accordion-button.collapsed {
    border-radius: 20px;
    border: 1px solid #ccc;
}
.accordion-button:not(.collapsed){
    background-color: #fff;
}
.accordion .accordion-header {
  background: transparent;
  position: relative;
  cursor: pointer;

}
.accordion .accordion-header .accordion-button {
  color: #0071BC;
}
.accordion .accordion-header .accordion-button:after {
  text-transform: none;
  line-height: 31px;
  color: #fff !important;
  position: absolute;
  content: "－";
  right: 15px;
  top: 26px;
  background: #0071BC;
  width: 31px;
  height: 31px;
  border-radius: 100px;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
}
.accordion .accordion-header.collapsed .accordion-button {
  color: #0071BC !important;
}
.accordion .accordion-header .accordion-button.collapsed:after {
  text-transform: none;
  content: "＋";
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-collapse{
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #EAF9F9;
    font-size: 18px;
}
.accordion-item:last-of-type .accordion-collapse{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.accordion-collapse p:last-child{
    margin-bottom: 0;
}

/* Progress Bars */
.progress {
  height: 15px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}

.progress-bar {
  box-shadow: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
}
.progress-bar.progress-bar-default {
  background: #57cecd;
}
.progress-bar.progress-bar-success {
  background: #00e195;
}
.progress-bar.progress-bar-info {
  background: #0bbff2;
}
.progress-bar.progress-bar-warning {
  background: #ffd042;
}
.progress-bar.progress-bar-danger {
  background: #e02745;
}

/* Social Icons */
.social-icons {
  padding: 0;
}
.social-icons li {
  list-style: none;
  display: inline;
  display: inline-block;
}
.social-icons li a {
  height: 40px;
  width: 40px;
  border: 1px solid #ebebeb;
  display: table;
  text-align: center;
  color: #2e2e2e;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.social-icons li a:hover {
  background: #f86942;
  border: 1px solid #f86942 !important;
  color: #ffffff !important;
}
.social-icons li i {
  display: table-cell;
  vertical-align: middle;
  font-size: 18px;
}

/* Pricing Tables */
@media screen and (max-width: 992px) {
  .pricing-table-1 .pricing-table-item {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .pricing-table-1 .pricing-table-item {
    margin-bottom: 20px !important;
    float: left;
    width: 100%;
  }
}
.pricing-table-1 .pricing-table-item .pricing-table-item-body,
.pricing-table-1 .pricing-table-item .pricing-table-item-heading {
  text-align: center;
  float: left;
  width: 100%;
  padding: 1em 2em;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-heading {
  background: #57cecd;
  color: #ffffff;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-heading h3 {
  font-size: 70px;
  position: relative;
  display: inline-block;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-heading h3 sup {
  position: absolute;
  top: 2px;
  margin-left: -7px;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-heading h3 sup, .pricing-table-1 .pricing-table-item .pricing-table-item-heading h3 span {
  font-size: 14px;
  text-transform: uppercase;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-heading p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.pricing-table-1 .pricing-table-item.best-offer .pricing-table-item-heading {
  background: #57cecd;
  color: #ffffff;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-body {
  border: 2px solid #ccc;
  border-top: none;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-body ul {
  padding: 0;
  margin: 0;
}
.pricing-table-1 .pricing-table-item .pricing-table-item-body ul li {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.pricing-table-1 .pricing-table-item.best-offer .pricing-table-item-body {
  border: 2px solid #57cecd;
  border-top: none;
}

/* Nav Links */
.nav-links ul {
  padding: 0;
  margin: 0;
}
.nav-links ul li {
  padding: 0;
  margin: 0 0 .5em 0;
  list-style: none;
}
.nav-links ul li.active a {
  color: #2e2e2e;
  border-bottom: 2px solid #57cecd;
}


/* Image Alignment */
img.align-right {
  float: right;
  margin: 0 0 .5em 1em;
}
@media screen and (max-width: 480px) {
  img.align-right {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}
img.align-left {
  float: left;
  margin: 0 1em .5em 0;
}
@media screen and (max-width: 480px) {
  img.align-left {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}
img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a > img.align-right {
  float: right;
  margin: 0 0 .5em 1em;
}
@media screen and (max-width: 480px) {
  a > img.align-right {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}
a > img.align-left {
  float: left;
  margin: 0 1em .5em 0;
}
@media screen and (max-width: 480px) {
  a > img.align-left {
    width: 100%;
    margin: 0 0 .5em 0;
  }
}
a > img.align-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}


/*================*/
/*page
/*================*/
.page #content-main{
    padding-bottom: 5em;
    overflow-x: hidden;
}
.page.about #content-main{
    padding-bottom: 0;
}
.page #content-main a{
    text-decoration: none;
}

.page-title {
    position: relative;
}
.page-title .page-main{
    position: relative;
	background: #000 url("../images/common/title.webp") no-repeat center center / cover;
	min-height: 330px;
	display: flex;
	align-items: center;
	padding-left: 8%;
}
.page-title .page-main p{
    font-size: 29px;
    font-weight: bold;
	line-height: 1.6;
    color: #fff;
	display: block;
	position: relative;
	writing-mode: vertical-rl; 
}
.page-title .page-main p span{
    background: #2D4782;
	padding: 10px 0;
	margin: 5px;
	display: inline-block;
}
.page-title .page-main .rlogo{
    position: absolute;
	width: 200px;
	top: 110px;
	right: 0;
}
.page-title .page-main::before{
	content: "";
	width: 580px;
	height: 200px;
	background: #fff url("../images/common/h2.svg") no-repeat center bottom 30px;
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	clip-path: polygon(0 100% ,50% 0 , 100% 100%);
}
/*.data .page-main {
	background-image: url("../images/data/title.webp");
}
.recruit .page-main {
	background-image: url("../images/recruit/title.webp");
}
.contact .page-main ,
.thanks .page-main {
	background-image: url("../images/contact/title.webp");
}*/
.page-title .container{
    position: relative;
	padding: 0 0 65px;
	text-align: center;
}
.page-title h1.title,
.page-title div.title{
    position: relative;
    color : #2D4782;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}
.page-title p.etitle{
    font-size: 54px;
    font-family: "Outfit", sans-serif;
	line-height: 1;
	letter-spacing : 0.20em;
}
.breadcrumbs{
    font-size: 16px;
    padding: 20px 10px;
    position: relative;
    margin: 0;
}
.breadcrumbs i{
    color: #00A0E9;
    font-size: 12px;
}
.breadcrumbs img{
    margin: 0 20px;
}
.page .breadcrumbs ul{
    margin: 0;
	padding: 0;
}
.page .breadcrumbs ul li{
    display: inline-block;
	padding: 0px 20px;
}
.page .breadcrumbs a{
    color : #2D4782;
}
.page .breadcrumbs a:hover{
    color: #2e89db;
}
@media screen and (min-width: 1200px) {
.page #content-main .container{
    max-width: 1000px;
}
}
.page #content-main .down-menu + h2{
    margin-top: 0;
}
.page #content-main h2:not(:first-child),
.page #content-main h3:not(:first-child),
.page #content-main h4:not(:first-child){
    margin-top: 2em;
}
.page table{
    border-top: 1px solid #999999;
	width: 100%;
	margin: 0 0 1em;
}
.page table th:first-child{
	border-top: 1px solid #2D4782;
}
.page table th{
    vertical-align: text-top;
    width: 25%;
    font-weight: bold;
	border-bottom: 1px solid #2D4782;
	background : #E7EFF2;
}
.page th,.page td{
    padding: 0.8em 1em;
    border-bottom: 1px solid #999999;
}
.page table td ul{
    margin-left: 20px;
}
.page #content-main *{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.page #content-main img{
    max-width: 100%;
    height: auto;
}
.page #content-main section{
    padding-top: 5em;
    padding-bottom: 5em;
}
.page #content-main section:first-of-type{
    padding-top: 0;
}
.page #content-main section#group{
    padding-bottom: 0;
}
.page #content-main .container > .row{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
body.page #content-main h2{
    font-size: 32px;
	font-weight : bold;
    letter-spacing: 0.04em;
	color : #2D4782;
	background: url("../images/common/page-h2.svg") no-repeat left bottom;
	min-height: 47px;
	padding: 0 0 10px 55px;
	position: relative;
}
body.page #content-main h2::after{
    content: "";
	width: calc(100% - 35px);
	height: 1px;
	background: #2D4782;
	position: absolute;
	right: 0;
	bottom: 0;
}
body.thanks #content-main h2{
    background: none;
}
body.page #content-main h3{
    font-size: 26px;
	letter-spacing: 0.06em;
    padding: 10px 15px 15px;
    background: #F2F2F2;
	border-top: 3px solid #2D4782;
}
body.page #content-main h4{
	font-size: 22px;
	padding: 1em 0 0.6em 15px;
	border-bottom: 1px solid #B3B3B3;
	position: relative;
}
body.page #content-main h4::before{
	content: "";
	width: 4px;
	height: 26px;
	background : #2D4782;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 1em;
}

body.page #content-main h5{
    font-size: 20px;
    clear: both;
    padding: 10px 0;
    position: relative;
    color: #2D4782;
}
a.gaibu::after {
    content: url("../images/common/icon-gaibu.svg");
    display: inline-block;
    margin-left: 5px;
}

a[href$=".pdf"]::after {
    content: '\f1c1';
    font-family: 'Font Awesome 5 Free';
    display: inline-block;
    margin-left: 5px;
    color: #ed1c24;
    font-size: 21px;
}
.down-menu {
    text-align: center;
    position: static;
    padding: 1em 0 1em;
	background: #E7EFF2;
    transition: all 0.3s ease 0s;
	margin-top: 2em;
}
.down-menu.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
    z-index: 1;
    background: #fff;
    width: 100%;
}
@media screen and (max-width: 768px) {
.down-menu.m_fixed {
	top: 68px;
}
}
.page #content-main .down-menu ul{
    margin: 0;
    padding: 0;
}
.page #content-main .down-menu ul li{
    display: inline-block;
    padding-left: 0px;
    margin: 0 20px;
	background: none;
}
.page #content-main .down-menu ul li a{
    padding: 5px 30px 5px 25px;
    display: block;
    color: #004182;
    font-weight: bold;
    position: relative;
    text-decoration: none;
	background: url("../images/common/icon-down.svg") no-repeat right center;
}

.page #content-main .down-menu ul li .pc{
    display: inline-block;
}
@media screen and (max-width: 768px) {
.page #content-main .down-menu ul li .pc{
    display: none;
}
}
.count2{
  column-count: 2;
}
.page .read{
	background : #E7EFF2;
	padding: 20px 30px;
}
/*about*/
.page #content-main .concept{
	background : #2D4782 url("../images/about/concept.webp") no-repeat center center / cover;
	padding: 65px 0!important;
	color: #fff;
}
.page #content-main .concept h2{
	background : none;
	color: #fff;
	text-align: center;
	line-height: 1.7;
	padding: 0;
	margin-top: 30px;
}
.page #content-main .concept h2::after{
	content: none;
}
.page #content-main .concept h3{
	background : none;
	border: none;
	padding: 0;
	line-height: 1.7;
}
.company .sharp{
	padding: 40px 30px 10px; 
}
.history{
	background : #E7EFF2;
}
.history .container{
	background: #fff;
	padding: 3em;
	position: relative;
}
.history .container::after{
	content: "MAKITA";
	font-family: "Outfit", sans-serif;
	font-size: 101px;
	letter-spacing: 0.08em;
	line-height: 1;
	color: #91CFE8;
	writing-mode: vertical-rl;
	position: absolute;
	right: calc(100% + 50px);
	top: 20px;
}
.enkaku-waku{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
}
.enkaku-waku dt,
.enkaku-waku dd{
	padding: 10px 20px;
}
.enkaku-waku dt{
	color : #2D4782;
	font-weight: bold;
	width: calc(20% - 30px);
	border-right: 1px solid #B3B3B3;
	margin-right: 30px;
	position: relative;
}
.enkaku-waku dt::after{
	content: "";
	width: 15px;
	height: 15px;
	border: 4px solid #91CFE8;
	background: #fff;
	border-radius: 20px;
	position: absolute;
	top: 20px;
	right: -8px;
	margin: auto;
}
.enkaku-waku dd{
	width: 80%;
	margin-bottom: 0px;
}
.enkaku-waku dd:nth-child(4n+2){
	background : #E7EFF2;
}
.enkaku-waku dd ul{
	margin: 10px 0 0 5px!important;
}
/*roof*/
.patent{
	font-size : 18px;
	letter-spacing: 0.08em;
	color: #000;
	text-align: center;
	margin: 5px 0 15px;
	background : #fce600;
	padding: 5px 25px;
	display: inline-block;
	vertical-align: middle;
	clip-path: polygon(15px 0 , 100% 0, calc(100% - 15px) 100%, 0 100% );
}

/*solar*/
.solar-point{
	list-style: none;
	counter-reset: number;
	font-size: 18px;
}
.solar-point li{
position: relative;
  padding: 10px 10px 10px 70px;
  border-bottom: 1px solid #ccc;
}
.solar-point li::before{
	counter-increment: number;
	content: '0' counter(number);
	position: absolute;
	left: 10px;
	font-size: 32px;
	font-weight: bold;
	letter-spacing: 0.04em;
	color: #2D4782;
	line-height: 1;
}
/*CONTACT*/

.tel_box{
    border: 2px solid #2D4782;
    padding: 2.5em 3em;
    margin: 1em 0 2em;
    text-align: center;
}
body.roof .tel_box {
  background: #fff;
}
.tel_box .tel {
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}
.tel_box .tel span {
  font-size: 50px;
  margin-left: 10px;
}
body.roof .tel_box .tel span {
  font-size: 45px;
}
.tel_box .tel span::before{
  content: "";
  background: url("../images/common/icon-tel.svg") no-repeat center center / contain;
  display: inline-block;
  vertical-align: middle;
  width: 25px;
  height: 34px;
}
.tel_box .fax {
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 45px;
  margin-left: 10px;
}

.tel_box p:last-child {
  margin-bottom: 0;
}
.form-box{
    max-width: 800px;
    margin: auto;
}

.attention-mobile{
    padding: 20px;
    margin-bottom: 30px;
    background: #E7EFF2;
}
.attention-mobile p{
    margin: 0;
}

.privacy{
    overflow-y: scroll;
    height: 300px;
    border: 1px solid #c0cdbd;
    margin: 10px 0 30px;
    padding: 20px;
    background: #fff;
}
body.page #content-main .privacy h5{
    margin-top: 0;
    font-size: 20px;
}
form#mailformpro dl dd .privacy ul,
form#mailformpro dl dd .privacy ol{
    margin-left: 2em;
    margin-bottom: 1em;
}
form#mailformpro dl dd .privacy li{
    list-style: inherit;
}
form#mailformpro .doui label{
    display: block;
}
.any {
display: block;
  background-color: #666666;
  border: solid 2px #666666;
  padding: 0 5px;
  font-size: 12px;
  color: #FFF;
  float: left;
  margin: 5px 5px 0px 5px;
  background-size: 100% 100%;
}

.red{
    color: #c60b09;
}
.gray{
    color: #666666;
}
body.page .leftcolumn{
    width : 48%;
    float: left;
}
body.page .rightcolumn{
    width : 48%;
    float: right;
}

.page #content-main ul{
    margin: 10px 0 20px 10px;
    padding: 0;
    list-style: none;
    z-index: 1;
    position: relative;
}
.page #content-main td ul:last-child{
    margin-bottom: 0;
}
.page #content-main ul li{
    padding-left: 25px;
    margin-bottom: 5px;
    background: url("../images/common/icon-list.svg") no-repeat left 12px;
}
.page #content-main td ul,
.page #content-main td ul:last-child{
    margin-left: 0;
    margin-top: 0;
}
.page #content-main ol{
    padding-left: 25px;
}


.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 1190px) {
#primary-menu ul,
.pc{
    display: none;
}
.sp{
    display: block;
}
.mmenu{
  display: block;
}
#full-nav{
  display: block;
}
#full-nav.open #full-nav-list{
  display: block;
  overflow-y: scroll;
}
html {
height: -webkit-fill-available;
}
#full-nav.open #full-nav-list .nav-main{
  width: 100%;
  height: 100vh;
  min-height: 100vh;
 min-height: -webkit-fill-available;
}
#full-nav .nav-main div > ul,
#full-nav .nav-main .nav-main-menu{
  width: 100%;
  padding: 0;
  margin: 20px 5% 0;
}
#full-nav .nav-main .nav-main-menu{
  font-size: 16px;
  padding: 10px 10px 0;
}
#full-nav .nav-main .nav-main-menu:last-child{
  margin-left: 0;
}
#full-nav li ul li{
  margin: 0;
}
#full-nav li#menusp06{
  margin-top: 2em;
  text-align: center;
}
#full-nav li#menusp06 a{
  background: #2D4782;
  padding: 25px 60px 25px 40px;
  line-height: 1em;
  position: relative;
  color: #fff;
}
#full-nav li#menusp06 a:hover{
  background: #FCE600;
  color: #2D4782;
}
#full-nav .nav-main div > ul ul {
padding-left: 0;
background: #f2f2f2;
font-size: 16px;
}
#full-nav .nav-main div > ul ul a{
padding-left: 80px;
background: url("../images/common/icon-more.svg") no-repeat 40px center;
}
#header > .header-in{
	padding: 20px;
}
}
@media screen and (max-width: 1024px) and (min-width: 810px) {
    #header > .container{
        width: 95%;
		max-width: 95%;
    }
    .header-logo {
      width: 80%;
	  z-index: 1000;
    }
    #primary-menu li a{
        padding: 10px 15px;
    }
    .maintxt{
        width: auto;
    }
    body.page #content-main h3{
        font-size: 28px;
    }
    .home-service h3{
        top: 120px;
    }
    .home #content-main .home-recruit .midashi{
        background-size: contain;
        width: 350px;
        left: 0;
        right: 0;
    }
    .page #content-main .contact-box h4{
        font-size: 20px;
    }
    .contact-box .tel_mail .tel span {
        font-size: 38px;
    }
    #contact .tel {
        font-size: 40px;
    }
    #contact h2 {
      margin: 0;
    }
    .home-service .home-txt::after {
        left: 300px;
        right: inherit;
    }
    #footer .more.mail a{
        padding: 10px 50px 13px 50px;
    }
	#contact .contact-tm > *{
		padding: 40px;
	}
	#contact .contact-tm .tel-link{
		font-size: 35px;
	}
		#contact .contact-tm .more a{
		min-width: inherit;
		background-size: 30px;
		padding: 15px 50px 15px 30px;
	}

}
@media screen and (max-width: 820px) {
    #contact {
      padding: 80px 20px;
    }
    .description{
        margin-top: 15px;
    }
    .header-logo {
      width: 80%;
	  z-index: 1000;
    }
    /*module*/
    #content-main h2{
      font-size: 22px;
    }
    #contact h2{
      font-size: 24px;
    }
    /*home*/
    /*page*/
	.page-title .page-main::before{
		width: 80%;
		height: 120px;
	}
	.page-title .page-main .rlogo{
		width: 120px;
	}
    .page #content-main ul li {
        background-position: left 7px;
    }
    .page table{
        margin-bottom: 2rem;
    }
    .page table th, .page table td{
        padding: 0.7em;
    }
    iframe{
        width: 100%;
        height: 300px;
    }
    .waku-list{
        column-count: 2;
    }
    .count2{
      column-count: 1;
    }
    .page #content-main .flow_recruit ul{
      flex-wrap: wrap;
    }
    .page #content-main .flow_recruit ul > li{
      width: 25%;
    }
    .tel_box{
      padding: 1.5em 1em 2em;
    }
	body.roof .tel_box{
		padding: 1.5em 0 2em;
		
	}
    .tel_box .tel{
      font-size: 20px;
    }
    .tel_box .tel span{
      font-size: 40px;
    }

/*footer*/
	#contact .contact-tm > *{
		padding: 40px;
	}
	#contact .contact-tm .tel-link{
		font-size: 35px;
	}
	#contact .contact-tm .more a{
		min-width: inherit;
		background-size: 30px;
		padding: 15px 50px 15px 30px;
	}
	.footer-logo{
		margin-bottom: 3em;
	}
	#footer h2{
		font-size: 25px;
	}
	#footer h2 span{
		font-size: 30px;
		line-height: 1;
	}
	#footer .tel span{
		font-size: 30px;
	}
  
}
@media screen and (max-width: 480px) {
    #header .container > div{
        width: 80%;
		font-size: 18px;
    }
	.header-logo span{
      font-size: 12px;
    }

    .mmenu {
        top: 20px;
        right: 20px;
    }
	
    .mainimage p{
        right: 0;
    }
    .maintxt{
        padding-left: 0;
		width: 90%;
    }
    .maintxt h2{
        font-size: 30px;
    }
	.slide .img01 {
	  clip-path: polygon(0 0 , 100% 0, 100% 70%, 0 100% );
	  width: 100%;
	  height: 60%;
	  position: absolute;
	  left: 0;
	  top: 0;
	}
	.slide .img02 {
	  clip-path:  polygon(0 30% , 100% 0, 100% 100%, 0 100% );
	  width: 100%;
	  height: 60%;
	  position: absolute;
	  right: 0;
	  top: auto;
	  bottom: 0;
	}
	.slide img{
		height: 60vh;
	}
	.mainimage .rlogo{
		width: 120px;
	}
	.mainimage .llogo{
		width: 150px;
	}
	.home .sales{
		margin-top: 50px;
		padding: 15px;
	}
	.home-about{
		background-size: 220px;
	}
	.home-about .a_txt .makita{
		color: rgba(145, 207, 232, 0.39);
	}
    .page-title .container{
        display: block;
		margin-top: 20px;
    }
    .page-title h1.title span, .page-title div.title span {
        font-size: 1.3em;
        display: block;
    }
    .breadcrumbs{
        margin: 0;
    }
	.page .sales{
		width: 90%;
	}
    table th, table td{
        display: block;
    }
    .page #content-main th{
        width: 100%;
        border-bottom: none;
    }
    .page #content-main .container > .row{
        padding: 1rem 0;
    }
    .waku-list{
        column-count: 1;
    }
    .more,
    .home-service p.more a{
        display: block;
    }
    .fs-18 {
      font-size: 16px;
    }
    /*home*/
    .home #content-main h2 span,
	#contact h2 span{
      font-size: 40px;
    }
	.home-about .a_txt {
	  writing-mode: inherit;
	}
	.home-about h3{
		margin: -30px 0 0;
	}
	.home-business .senmon::after{
		width: 50%;
		height: 60px;
	}
	.home #content-main .home-business .senmon h2{
		font-size: 25px;
	}
	.home-works .works-in{
		flex-direction: column;
	}
	/*page*/
	.page-title h1.title, .page-title div.title{
		font-size: 25px;
	}
	.page-title p.etitle{
		font-size: 45px;
	}
	.page-title .page-main p{
		font-size: 25px;
	}
    body.page #content-main h2{
      font-size: 26px;
    }
    body.page #content-main h3{
      font-size: 22px;
    }
	.company_in{
		padding: 30px 0 30px 30px;
	}
	.history{
		padding: 3em 1em;
	}
	.history .container{
		padding: 2em 1em;
	}
    .enkaku-waku{
      padding: 2em 1em 2em 0;
    }
	.enkaku-waku dt{
		width: calc(100% - 30px);
		margin-left: auto;
		margin-right: 0;
		border-left: 1px solid #B3B3B3;
		border-right: none;
	}
	.enkaku-waku dt::after{
		left: -8px;
		right: auto;
	}
	.enkaku-waku dd{
		width: calc(100% - 30px);
		margin-left: 50px;
		position: relative;
	}
	.enkaku-waku dd::before{
		content: "";
		width: 1px;
		height: 100%;
		background: #B3B3B3;
		position: absolute;
		left: -20px;
		top: 0;
	}
    .box-read{
      padding: 1em !important;
    }
    .page #content-main .flow_recruit ul > li{
      width: 100%;
    }
    .page #content-main .flow_recruit ul{
      gap:30px;
    }
	.tel_box .tel span,
	body.roof .tel_box .tel span,
	.tel_box .fax{
      font-size: 35px;
    }
	.page #content-main .solar-point{
		padding-left: 0;
	}

    /*footer*/
	#contact .contact-tm{
		flex-direction: column;
		width: 100%;
	}
	#contact .contact-tm > *{
		width: 100%;
		padding: 0;
	}
	#contact .contact-tm .tel-link::before {
		width: 20px;
		height: 26px;
	}
	#contact .contact-tm .more a{
		font-size: 16px;
	}
	#footer .rlogo{
		bottom: 180px;
		width: 100px;
	}
	#footer h2{
		margin: 0 auto 30px;
		width: fit-content;
	}
	#footer h2 span{
		font-size: 24px;
	}
	#footer .address{
		text-align: center;
	}
	#footer .address a{
		color: #fff;
	}
	#footer .co-info h3{
		text-align: center;
		margin-top: 20px;
	}
	#footer .footer-co p{
		font-size: 25px;
	}
}
@media screen and (max-width: 320px) {
    #footer .tel{
        font-size: 30px;
    }
    #footer .tel span {
      font-size: 35px;
    }
    #footer .footer-menu{
        column-count: auto;
    }
}
@media print {
    body {
        min-width: 1263px !important;
    }
    /*.home-main,
    #header .container,
    #content-main section > *,
    #content-main .container,
    #footer */
    .container
    {
        min-width: 1200px !important;
    }
    .mmenu,
    .product-list-btn{
        position: absolute;
    }
    .product-list-btn{
        top: 180px;
    }
    #footer .pagetop{
        position: absolute!important;
    }
    .down-menu.m_fixed{
        position: relative;
    }
    .product-bg{
        background-attachment: inherit;
    }

    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
    .col-lg-3 {
        flex: 0 0 auto;
        width: 25%;
    }
    .to-animate, .footer-anm, .u, .l, .r, .r-animate{
        opacity: 1;
    }
    .col-md-12,
	.row-cols-lg-1 > *{
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 ,
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-md-9 ,
    .col-lg-9 {
        width: 75%;
    }
    .col-md-8 ,
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-md-7 ,
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-md-6 ,
    .col-lg-6 {
        width: 50%;
    }
    .col-md-5 ,
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-md-4,.col-lg-4,.row-cols-md-3 > *,
	.row-cols-lg-3 > *,
    .ome-business .col-md{
        width: 33.33333333%;
    }
    .col-md-3,
    .col-lg-3,
    .row-cols-md-4 > *{
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .order-md-3{
     order: 3 !important;
     }
    .order-md-2{
        order: 2!important;
    }
    .order-md-1 {
      order: 1 !important;
    }
}
.digicert img {
  margin: 0 0 0 0!important;
}

@media screen and (max-width: 480px) {
  .digicert img {
    margin: 0 auto 0 auto!important;
  }
}