@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.06em;
    font-weight: 500;
    color: #000000;
    overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
}

::-webkit-selection {
  color: #ffffff;
  background: #ff2e3e;
}

::-moz-selection {
  color: #ffffff;
  background: #ff2e3e;
}

::selection {
  color: #ffffff;
  background: #ff2e3e;
}

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: #00a359;
}

a:hover, a:focus, a:active {
  outline: none;
  color: #00773e;
  text-decoration: none;
}

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

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

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

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

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

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

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

ul, ol {
  padding-left: 15px;
  list-style: none;
  /*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;
}


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

.font-sans-serif {
  font-family: "Poppins", 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;
  }
}
/* Header */
#header {
    width: 100%;
    padding: 0;
	background: #fff;
}

#header > .container-fluid{
    display: flex;
    align-items: center;
	width: 90%;
    justify-content: space-between;
	margin: auto 110px auto auto;
	padding: 0;
	min-height: 95px;
}
.header-logo{
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 0;
	line-height: 1.2;
}
.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 a span span{
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	font-weight: 600;
	display: block;
	color: #ff2e3e;
	letter-spacing: 0;
}
#header .container-fluid div{
	display: flex;
	gap: 10px;
}
#header .container-fluid div p{
	margin: 0;
}
.description{
    font-size: 13px;
    color: #333;
	text-align: right;
}

#primary-menu {
    position: relative;
    list-style: none;
}
#primary-menu ul {
  list-style: none;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
#primary-menu li{
    display: inline-block;
    vertical-align: middle;
}
#primary-menu li a{
    text-decoration: none;
    color: #000;
    position: relative;
    display: block;
    padding: 10px 20px;
	text-align: center;
	font-size: 18px;
	line-height: 2em;
}
#primary-menu li a span{
	color: #284CB3;
	font-size: 15px;
    font-family: "Poppins", sans-serif;
	display: block;
}
#primary-menu li a:hover,body:not(.home) #primary-menu li.active a{
    /*background: rgba(0,65,130,0.2);*/
}
#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: #fef615;
    color: #003F64;
	font-size: 16px;
    padding: 25px 45px 25px 85px;
	line-height: 1em;
	position: relative;
	border-radius: 100px 0 0 100px;
}
#primary-menu li#menu05 a::before{
    content: url("../images/common/icon-mail.svg");
	position: absolute;
	left: 10px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 51px;
	height: 51px;
	background: none;
}
#primary-menu li#menu05 a::after{
    content: "";
	position: absolute;
	left: 55px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 1px;
	background: #004182;
	transform: rotate(0deg);
	transition: all .5s ease-in-out;
	color: inherit;
	border: none;
}
#primary-menu li#menu05 a:hover{
    background-color: #fef615;
    color: #004182
}
#primary-menu li#menu05 a:hover::after{
	width: 15px;
}
*/

.mmenu{
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: 1000;
    height: 95px;
    width: 95px;
    background: #262424;
    /*display: none;*/
}
.toggle-menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: inline-block;
    height: 95px;
    width: 95px;
  outline: none;
  padding: 0;
  pointer-events: initial;
  position: relative;
  vertical-align: middle;
  z-index: 1110;
}
.toggle-menu span {
display: inline-block;
width: 50px;
height: 2px;
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: 50px;
  border-radius: 5px;
  height: 2px;
  display: block;
  background: #fff;
  transform-origin: center;
  transition: 0.3s;
}
.toggle-menu span::after{
  bottom: -13px;
}
.toggle-menu span::before {
  top: -13px;
}
.toggle-menu.active span {
  background-color: inherit;

}
.toggle-menu.active span::before {
  box-shadow: none;
  /*transform: rotate(45deg) translate(10px, 10px);*/
  transform: translate(0, 13px) rotate(45deg);
  width: 50px;
  opacity: 1
}
.toggle-menu.active span::after {
box-shadow: none;
  /*transform: rotate(-45deg) translate(10px, -10px);*/
  transform: translate(0, -13px) rotate(-45deg);
  width: 50px;
  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:100%;
    background: #262424 url("../images/common/nav-bg.png") no-repeat right center / 60% 100%;
    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: 10% 0 10%;    
    column-count: 1;
    overflow: auto;
    width: 100%;
    height:100%;
	min-height: 100vh;
	min-height: -webkit-fill-available;
    -webkit-overflow-scrolling:touch;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
	gap: 0 40px;
    font-size: 25px;
}
#full-nav .nav-main div > ul {
    width: 35%;
    margin-right: 30px;
	margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
}
#full-nav .nav-main div > ul li{
    width: 50%;
}

#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;
	width: 50%;
  /*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 .nav-main .nav-main-menu li::before {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: block;
  position: absolute;
  left: 10px;
  top: 1.1em;
  content: "";
  background: #ea7f13;
}
#full-nav .nav-main .nav-main-menu li ul li::before {
  background: #999;
  left: 20px;
}
#full-nav li a{
  color: #fff;
  text-decoration: none;
  padding: 10px;
  display: block;
  letter-spacing: 0.1em;
  font-size: 36px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}
#full-nav .nav-main .nav-main-menu li a {
  padding: 10px 20px 10px 30px;
}
#full-nav .nav-main .nav-main-menu li ul li a {
  padding: 10px 20px 10px 40px;
  color: #666;
}
#full-nav li a span{
	font-size: 20px;
    font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	display: block;
    font-weight: 600;
	background: url("../images/common/icon-more.svg") no-repeat left center;
	padding-left: 20px;
}

#full-nav li a:hover,
#full-nav li.active a{
  color: #262424
}
#full-nav li a:hover span,
#full-nav li.active a span{
	background: url("../images/common/icon-more-b.svg") no-repeat left center;
}

#full-nav .nav-tit p{
	color: #fff;
	font-size: 13px;
  text-align: right;
}
/*
#content {
  padding: 7em 0;
}
@media screen and (max-width: 768px) {
  #content {
    margin-bottom: 4em;
  }
}*/
@media screen and (max-width: 1625px) {
	#primary-menu{
		margin-right: 70px;
	}
}
@media screen and (max-width: 1240px) {
	#primary-menu{
		display: none;
	}
}

#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;
}
.home #content-main{
	position: relative;
}
.mainimage{
    position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ff2e3e;
}
.mainimage::after{
	content: "";
	right: 0;
	top: 0;
	clip-path: border-box path('M69.61,0S-1.54,151.58.03,370.65c1.57,219.07,69.58,369.1,69.58,369.1l687.41-1.75V0H69.61Z');
	width: 38%;
	height: 100%;
	display: inline-block;
	position: absolute;
	background: #ff2e3e;
}
.mainimage .mainimg{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}
.slide{
    width: 100%;
    height: 730px;
    margin-bottom: 0px !important;
}
@media screen and (min-width: 1300px) {
	.slide{
		width: 75%;
	}
	.mainimage .container{
		max-width: 1500px;
	}

}
.slide .slick-list{
    background: #fff;
}
.slide img{
    width: 100%;
    height: 730px;
    object-fit: cover;
	font-family: 'object-fit: cover;';
}
@media screen and (min-width: 1024px) {
.slide img{
    /*height: 40vw;*/
    margin-left: auto;
}
}
@media screen and (min-width: 1300px) {
.slide img{
    /*height: 35vw;*/
    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;
	width: 100%;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	z-index: 1;
}
.maintxt .row{
	display: flex;
	align-items: end;
}
.maintxt h2{
	color: #fff;
	font-size: 45px;
	font-weight: bold;
	line-height: normal;
	letter-spacing: 0.06em;
}
.home-menu .more{
	font-size: 18px;
}
.home-menu .more a{
	background-color: #262424;
	background-image: url("../images/common/icon-tel.svg");
}

/* Dots */
.page #content-main ul.slick-dots{
	bottom: -50px;
    margin-bottom: 20px;
    z-index: 1;
    text-align: left;
    margin-left: 0;
	padding-left: 0;
  width: 100%;
}
.page #content-main ul.slick-dots li {
  margin: 0 4px;
  width: 10px;
  height: 10px;
	position: relative;
    display: inline-block;
    padding: 0;
    cursor: pointer;
}
.page #content-main ul.slick-dots li::before {
  content: none;
}
.page #content-main ul.slick-dots li button{
  width: 10px;
  height: 10px;
	border: 0;
      background: transparent;
      display: block;
      outline: none;
      line-height: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer;
}
.page #content-main ul.slick-dots li button::before {
  content: '';
  width: 10px;
  height: 10px;
  background: #E0E0E0;
	border-radius: 100px;
  opacity: 1;
	position: absolute;
  top: 0;
        left: 0;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
}
.page #content-main ul.slick-dots li button:hover:before,
.page #content-main ul.slick-dots li button:focus:before {
          opacity: 1;
}
.page #content-main ul.slick-dots li.slick-active button::before{
	background: #6583DC;
	color: black;
	opacity: 0.75;
}

.slick-num{
    color: #fff;
    position: absolute;
    bottom: 0;
    left: -5vw;
    text-align: center;
}
.slick-num span{
    display: block;
}
#content-main h2{
    font-size: 38px;
    margin: 0 0 30px 0;
}
.home #content-main h2{
    font-size: 20px;
	font-weight: bold;
    line-height: 1.3;
    position: relative;
	color: #ff2e3e;
}
.home #content-main h2 span{
    font-size: 70px;
    letter-spacing: 0;
    color: #262424;
    line-height: 1.3;
    font-family: "Poppins", sans-serif;
    display: block;
    position: relative;
	padding-left: 5px;
}
.home #content-main h3{
    font-size: 34px;
    font-weight: 700;
    line-height: 1.6;
	color: #262424;
}
.more{
    display: inline-block;
    font-weight: bold;
    margin-top: 2em;
	position: relative;
}
.more a{
    color: #fff;
    padding: 12px 40px;
    transition: all .5s ease-in-out;
    position: relative;
    text-decoration: none;
    display: block;
	text-align: center;
	background: #00a359 url("../images/common/icon-more.svg") no-repeat center right 20px;
	min-width: 240px;
	border-radius: 100px;
}
.more a:hover{
    background-position: center right 15px;
	background-color: #262424;
}
.page-link{
	margin-bottom: 50px;
}
.page #content-main .page-link ul{
	display: flex;
	flex-wrap:wrap;
	gap:0 15px;
	margin: 0px;
}
.page #content-main .page-link ul li{
	background: none;
	padding: 0;
	flex: 1;
	text-align: center;
	position: relative;
}
.page-link ul li a{
	padding: 20px;
	/*border-bottom: 1px solid #666;*/
	position: relative;
	color: #0a132d;
	width: 100%;
	display: block;
	background-color:#EBF0F2;
}
.page-link ul li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	top: 0;
	margin: auto 0;
	left: 10%;
	transform: translateX(-50%);
	width: 6px;
	height: 6px;
	background-color: rgba(40,76,179,1);
	border-radius: 50%;
	transition: 0.3s;
}

.page-link ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	top: 0;
	margin: auto 0;
	left: 10%;
	transform: translateX(-50%) scaleX(0);
	width: 12px;
	height: 12px;
	background-color: rgba(40,76,179,0.5);
	border-radius: 50%;
	transition: transform 0.3s;
}

.page-link ul li a:hover::after {
	transform: translateX(-50%) scaleX(1);
}

.page-link ul li a:hover{
	color: #284CB3;	
	background-color:#D6E0E1;
}
.home-about{
    padding: 5rem 0 8em;
    position: relative;
	background: #f1f2f4 url("../images/index/about-bg.jpg") no-repeat right top / cover;
}
.home-about .container{
    position: relative;
}
.home-about .row{
	padding-top: 5em;
}
.home-about .a_txt{
	margin: auto;
}
.home-about h2{
    position: relative;
    margin-right: auto;
}
.home-about h2 span::after,
.about .page-title p.subtitle::after{
    content: "";
	background: url("../images/index/icon-about.svg") no-repeat center center / contain;
	width: 72px;
	height: 72px;
	display: inline-block;
	margin-left: 20px;
}
.home-service{
    padding: 0;
    position: relative;
}
.home-service::before{
    content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ff2e3e;
	transform: translate(-20%, 0);
	clip-path: border-box path('M922.41,833.48s76.72-163.73,75.16-410.85C996,175.52,922.41,0,922.41,0H0v833.48h922.41Z');
}
.home-service::after{
    content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 60%;
	height: 100%;
	background: url("../images/index/business-bg.jpg") no-repeat top center / cover;
	z-index: -1;
}

.home-service .container{
	position: relative;
	z-index: 1;
}
.home-service .row{
	padding: 7em 0 6em;
}
.home-service .s_txt{
	max-width: 480px;
	margin: auto;
	color: #fff;
}
.home #content-main .home-service .s_txt h2,
.home #content-main .home-service .s_txt h2 span{
	color: #fff;
}
.home-service h2 span::after{
    content: "";
	background: url("../images/index/icon-service.svg") no-repeat center center / contain;
	width: 63px;
	height: 66px;
	display: inline-block;
	margin-left: 20px;
}

.home-service ul{
	border: 1px solid #fff;
	padding: 20px 15px 15px 20px;
	font-size: 20px;
}
.home-service ul li{
	background: url("../images/common/icon-more.svg") no-repeat left 15px;
	padding-left: 20px;
	margin-bottom: 10px;
}
.home-service .more a{
	background-color: #fff;
	background-image: url("../images/common/icon-more-r.svg");
	color: #000;
}
.home-service .more a:hover{
	background-color: #262424;
	background-image: url("../images/common/icon-more.svg");
	color: #fff;
}
.home-recruit{
	background: #f1f2f4 url("../images/index/recruit-bg.jpg") no-repeat center left / cover;
	padding: 5em 0;
}
.home-recruit h2 span::after,
.recruit .page-title p.subtitle::after{
    content: "";
	background: url("../images/index/icon-recruit.svg") no-repeat center center / contain;
	width: 78px;
	height: 61px;
	display: inline-block;
	margin-left: 20px;
}
.home-recruit .img{
    text-align: right;
}
@media screen and (min-width: 1300px) {
	.home-about .container,
	.home-service .container,
	.home-recruit .container{
		max-width: 1500px;
	}
	.home-service::before{
		transform: translate(0, 0);
	}
	.home-service .s_txt{
		margin: 0;
	}
}

#footer {
    clear: both;
    position: relative;
    width: 100%;
    padding: 5em 0 0;
    color: #fff;
    letter-spacing: 0.08em;
	border-top: 1px solid #ccc;
	background: #262424;
}
#footer::before {
    content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 38%;
	height: 100%;
	background: #ff2e3e;
	clip-path: border-box path('M75.18,0S-1.54,164.02.02,413.1c1.57,249.08,75.16,426,75.16,426h658.5s0-839.1,0-839.1H75.18Z');
}


#footer .container{
	position: relative;
	max-width: 1500px;
	width: 95%;
}
.footer-contact{
	display: flex;
	gap: 50px;
}
#footer h2 span{
	font-size: 72px;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	margin-bottom: 20px;
	display: block;
}
#footer h2{
    letter-spacing: 0.06em;
    font-size: 20px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 1em;
}
.footer-contact > div{
	min-width: 300px;
}
#footer .more{
	display: block;
}
#footer .more a{
	background-color: #339609;
}
.footer-logo{
	margin: 3em 0;
}
#footer .footer-logo a{
    display: flex;
	align-items: center;
	gap: 15px;
	text-decoration: none;
	color: #fff;
	font-size: 27px;
	line-height: initial;
}
#footer .footer-logo a span span{
    display: block;
	font-family: "Poppins", sans-serif;
	font-size: 12px;
	color: #ff2e3e;
}
#footer .address{
	padding: 2em 0;
	border-top: 1px solid #666666;
}
.home-menu,
#footer .footer-menu{
    margin-left: auto;
	max-width: 230px;
}
.home-menu ul,
#footer .footer-menu ul{
    margin: 0;
	padding: 0;
	list-style: none;
}
.home-menu ul li,
#footer .footer-menu li{
	padding: 0;
	font-size: 20px;
	margin-bottom: 20px;
}
.home-menu ul li a,
#footer .footer-menu a{
    text-decoration: none;
    display: block;
    position: relative;
    padding: 10px;
	color: #fff;
	font-family: "Poppins", sans-serif;
    font-size: 36px;
	line-height: 1.2;
}
.home-menu ul a span,
#footer .footer-menu a span{
	font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 20px;
	display: block;
	background: url("../images/common/icon-more.svg") no-repeat left center;
	padding-left: 20px;
	transition: all 0.3s ease;
}
.home-menu ul li a:hover,
#footer .footer-menu a:hover{
    color: #262424;
}
.home-menu ul li a:hover span,
#footer .footer-menu a:hover span{
	background-image: url("../images/common/icon-more-b.svg");
}
#footer .copyright {
    font-size: 12px;
    margin: 3em 0 0;
    color: #999999;
}
#footer .col-md-7 {
	background: url("../images/common/footer-bg.svg") no-repeat left bottom / contain;
	padding-bottom: 200px;
}
#footer .pagetop {
    right: 0;
    bottom: 30px;
    z-index: 100;
	position: fixed;
}
#footer .pagetop a{
	color: #fff;
	font-size: 20px;
	text-decoration: none;
	padding: 10px 20px 15px;
	border-radius: 100px 0 0 100px;
	background: #ff2e3e;
}
#footer .pagetop a img{
	margin-right: 10px;
}

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

.js .to-animate,
.js .footer-anm,
.js .u,
.js .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;
	background-color: #F7F8F9;
}
.page #content-main a{
    text-decoration: none;
}

.page-title {
    position: relative;
    margin-bottom: 10px;
	min-height: 320px;
    display: flex;
    justify-content: space-between;
    align-items: center;
	background: #f1f2f4 url("../images/common/page-title.png") no-repeat center center / cover;
}
.page-title .container{
    position: relative;
}
.page-title h1.title,
.page-title div.title{
    position: relative;
    color: #ff2e3e;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.06em;
    display: inline-block;
    margin: 0;
    line-height: 1.2;
}
.page-title p.subtitle{
    font-size: 72px;
    font-weight: 600;
	line-height: 1;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0;
	color: #262424;
    margin-top: 10px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
	display: block;
}
.service .page-title p.subtitle::after{
    content: "";
	background: url("../images/common/icon-service.svg") no-repeat center center / contain;
	width: 68px;
	height: 71px;
	display: inline-block;
	margin-left: 20px;
}
.contact .page-title p.subtitle::after{
    content: "";
	background: url("../images/common/icon-contact.svg") no-repeat center center / contain;
	width: 62px;
	height: 73px;
	display: inline-block;
	margin-left: 20px;
}
.page-title .co{
    position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

@media (min-width: 1300px) {
  .page-title .container {
    max-width: 1500px;
  }
}

.breadcrumbs{
    padding: 5px 10px;
    position: relative;
    margin: 20px 0 30px;
    color: #000;
}
.breadcrumbs i{
    color: #00A0E9;
    font-size: 12px;
}
.breadcrumbs img{
    margin: 0 10px;
}
.page #content-main .breadcrumbs ul{
    margin: 0;
	padding: 0;
}
.page #content-main .breadcrumbs ul li{
    display: inline-block;
	border-left: 1px solid #999;
	padding: 0px 20px;
	background: none;
}
.page #content-main .breadcrumbs ul li:last-child{
	border-right: 1px solid #999;
}
.breadcrumbs a{
    color: #000;
}
.page #content-main .down-menu + h2{
    margin-top: 0;
}
.page #content-main h3:not(:first-child),
.page #content-main h4:not(:first-child){
    margin-top: 2em;
}
.page table{
	width: 100%;
	margin-bottom: 50px;
}
.page table th{
    vertical-align: text-top;
    font-weight: bold;
	border-bottom: 1px solid #ff2e3e;
}
.page th,.page td{
    padding: 1em 2em;
	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 .container > .row{
    padding-top: 1rem;
    padding-bottom: 1rem;
	margin-top: 0;
	margin-bottom: 0;
}
body.page #content-main h2{
    font-size: 46px;
	color: #000;
    letter-spacing: 0;
	position: relative;
}
body.page #content-main h2 span{
	font-family: "Poppins", sans-serif;
    font-size: 24px;
	color: #ff2e3e;
	display: block;
	margin-bottom: 10px;
}
body.page #content-main h2:nth-of-type(even) span{
	color: #00a359;
}

body.page #content-main h3{
    font-size: 26px;
	letter-spacing: 0.06em;
    padding: 10px 20px 15px 50px;
    background: #ff2e3e url("../images/common/h3.svg") no-repeat left 20px center;
	color: #fff;
}
body.page #content-main h4{
    color: #00a359;
    font-weight: 700;
	line-height: 1.4em;
}

body.page #content-main h5{
    font-size: 20px;
    clear: both;
    padding: 10px 0 10px 35px;
    position: relative;
	background:url("../images/common/h3.svg") no-repeat left 23px;
}
body.page #content-main .more{
    margin-top: 1em;
}
body.page #content-main .more.w100{
    display: block;
}

a.gaibu::after {
    content: url("../images/common/icon-gaibu.svg");
    display: inline-block;
    margin-left: 5px;
}

/*a[href$=".pdf"]::after {
    content:"\e415";
    font-family: 'Material Symbols Outlined';
    display: inline-block;
    margin-left: 5px;
    color: #ed1c24;
    font-size: 21px;
}*/
.down-menu {
    text-align: center;
    position: static;
    padding: 1em 0 1em;
    transition: all 0.3s ease 0s;
}
.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: 15px 40px 15px 25px;
    display: block;
    color: #004182;
    font-weight: bold;
    position: relative;
    text-decoration: none;
	background: url("../images/common/icon-down.svg") no-repeat right 17px;
}

.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;
}
}
.waku{
    background: #fff;
	padding: 1em;
	margin-bottom: 1em;
}
.waku2{
	padding: 1.8em;
	border: 1px solid #262424;
	height: 100%;
}
body.page #content-main .waku2 p{
	margin-bottom: 0px;
}
body.page #content-main .waku2 h4{
	font-size: 20px;
}
.fukuri .col-md-4{
	margin-bottom: 20px;
}

/*about*/
.page table.enkaku tr{
	background: none;
}
table.enkaku th{
	border-bottom: 1px solid #284CB3;
}
table.enkaku th::before{
	content: "";
	background: url("../images/common/icon-enkaku.svg") no-repeat center center /contain;
	width: 24px;
	height: 10px;
	display: inline-block;
	margin-right: 15px;
}
table.enkaku td{
	border-bottom: 1px solid #B3B3B3;
}
iframe{
	margin-bottom: 50px;
}

/*service*/
.page #content-main ul.point{
	margin-left: 0px;
	margin-top: 30px;
}

.page #content-main ul.point li{
	border-bottom: 1px solid #00A359;
	padding: 10px 10px 10px 40px;
	margin-bottom: 15px;
	background: url("../images/common/icon-list.svg") no-repeat 15px 20px #fff;
}

/*RECRUIT*/


/*CONTACT*/

.tel_box{
	border: 1px solid #262424;
    padding: 2em;
    margin: 1em 0 2em;
}
.page #content-main .tel_box h3{
}
.tel_box .tel {
  font-family: "Poppins", sans-serif;
  font-size: 68px;
	font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}
.shisetsu-info{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0px;
}
.shisetsu-info dt{
	width: 30%;
	padding-right: 1em;
}
.shisetsu-info dt span{
	display: block;
	text-align: center;
	padding: 1px 5px;
	border: 1px solid #262424;
}
.shisetsu-info dd{
	width: 70%;
	padding-left: 1em;
	margin: 0;
}
.shisetsu-info dd p{
	margin-bottom: 10px;
}

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

.telin .shisetsu-info{
	width: 53%;
}

.form-box{
    /*max-width: 800px;*/
    margin: auto;
}

.attention-mobile{
    padding: 20px;
    margin-bottom: 30px;
    background: #EBF0F2;
}
.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-bottom: 5px;
    /*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;
}

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


.pc{
    display: block;
}
.sp{
    display: none;
}
@media screen and (max-width: 1024px) and (min-width: 811px) {
    #header > .container-fluid{
        width: 95%;
    }
    #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;
    }
}
/*スマホ*/
@media screen and (max-width: 810px) {
    .pc{
        display: none;
    }
	html {
      height: -webkit-fill-available;
    }
	.row > *{
		margin: 0;
	}
	
	/*flex解除*/
    .footer-contact,
	#header > .container-fluid,
	#full-nav .nav-main > div,
	.telin{
        display: block;
    }
	
	/*header*/
	#header > .container-fluid{
		margin: 0;
		width: 100%;
		padding: 10px;
	}
	.header-logo a{
		align-items: flex-start;
	}
	.header-logo a span span{
		font-size: 10px;
	}
    .header-logo {
		padding-right: 50px;
		font-size: 20px;
		margin-bottom: 20px;
    }
	#header .container-fluid div{
		gap:5px;
		justify-content:flex-end;
	}
	#header .container-fluid div p img{
		width: 80px;
	}
	.description {
  font-size: 12px;
		letter-spacing: normal;
	}
	.toggle-menu {
  		height: 60px;
  		width: 60px;
	}
	.mmenu{
  		height: 60px;
  		width: 60px;
	}
	#full-nav{
        display: block;
    }
    #full-nav.open #full-nav-list{
        display: block;
        overflow-y: scroll;
    }
	#full-nav .nav-main div > ul{
		width: 100%;
	}
	#full-nav{
		background: linear-gradient(180deg, #262424 0%, #262424 50%, #FF2E3E 50%, #FF2E3E 100%);
	}
    #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: 0;
    }
	#full-nav .nav-main div > ul{
		background: url("../images/common/sp_bgred_s.png") no-repeat center top / cover;
		padding: 50px 30px 0 30px;
		height: auto;
	}
	#full-nav .nav-main > div{
		padding: 20% 0 0 0;
		align-items: flex-start;
		gap: 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 a{
        padding: 20px 15px 20px 0;
		font-size: 30px;
		position: relative;
    }
	
	#full-nav li a::after{
		content: "";
		width: 50px;
		height: 1px;
		border-bottom: 1px solid #ccc;
		position: absolute;
		left: 0px;
		bottom: 0;
	}
	#full-nav li a span{
		font-size: 16px;
	}
	#full-nav li.active a span{
		
	}
	#full-nav .nav-tit{
		margin-top: 20px;
		width: 100%;
		padding: 0 20px;
		margin-bottom: 50px;
	}
    #full-nav .nav-main .nav-main-menu li a {
      padding: 15px 20px 15px 30px;
    }
    #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;
    }
	#full-nav .nav-tit p{
		text-align: left;
	}
	.toggle-menu span{
		width: 30px;
	}
	.toggle-menu span::after, .toggle-menu span::before,
	.toggle-menu.active span::before,
	.toggle-menu.active span::after{
		width: 30px;
	}
	
	/*footer*/
	#footer .container{
		width: 100%;
		padding: 0;
	}
	#footer .footer-logo a{
		font-size: 22px;
		letter-spacing: normal;
	}
	#footer .footer-logo a span span{
		font-size: 10px;
	}
    #footer h2{
        line-height: inherit;
        text-align: center;
    }
    #footer h3{
        margin-left: 0;
    }
	#footer .address{
		font-size: 14px;
		margin-bottom: 0px;
	}
    #footer .footer-menu{
        display: block;
        margin: 2em 0;
		max-width:inherit;
    }
	#footer .footer-menu ul{
		width: 100%;
		display: flex;
		flex-wrap:wrap;
		justify-content:center;
	}
	#footer .footer-menu ul li{
		width: 45%;
	}
	#footer h2 span{
		font-size: 52px;
		text-align: center;
		margin-bottom: 10px;
	}
	#footer .copyright{
		margin: 0px;
	}
	#footer .col-md-7{
		padding-bottom: 120px;
	}
	#footer .pagetop a{
		font-size: 18px;
	}
	#footer::before {
		display: none;
}
	#footer .row{
		margin: 0px;
	}
	#footer .row .smbg{
		background: url("../images/common/sp_bgred_top.png") no-repeat center bottom;
		background-size: cover;
		width: 100%;
		margin-bottom: 30px;
	}
	
	#footer .row .smpd{
		padding: 0 20px 100px 20px;
	}
	
    
    /*module*/
    #content-main h2{
      font-size: 22px;
    }
    #contact h2{
      font-size: 28px;
      width: 100%;
      margin-bottom: 30px;
    }
    .more a {
        padding: 15px 40px 20px 20px;
		background-position: center right 15px;
    }
    body.page #content-main .more a {
        padding: 13px 40px 15px 10px;
    }
	.maintxt .row{
		display: block;
	}
	.home-menu{
		display: none;
		margin: 0;
		max-width: 100%;
	}
	.home-menu ul{
		width: 100%;
		display: flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}
	.home-menu ul li{
		width: 45%;
	}
	
    /*home*/
	.slide{
		height: 600px;
	}
	.slide img{
		height: 600px;
	}
	.mainimg{
	}
	.mainimage::after{
		clip-path: none;
		background: url("../images/common/sp_bgred_bottom.png") no-repeat center top / cover;
		width: 100%;
		height: 180px;
		top: auto;
		bottom: 0;
	}
	.maintxt{
		top: 40%;
	}
    .maintxt h2{
        font-size: 36px;
        line-height: 1.4;
		margin-bottom: 50px;
    }
	.home #content-main h2{
		font-size: 28px;
	}
	.home-service::before{
		transform: none;
		background: linear-gradient(180deg, #FF2E3E 0%, #FF2E3E 80%, rgba(255,255,255,0.00) 80%, rgba(255,255,255,0.00) 100%) , url("../images/common/sp_bgred_top.png") no-repeat center bottom / contain;
		clip-path:none;
		height: 65%;
		
	}
	.home-service::after{
		position: relative;
		display: block;
		width: 100%;
		height: 500px;
	}
	.home-about{
		padding-top: 0px;
		padding-bottom: 80px;
	}
	.home #content-main h2 span{
		font-size: 54px;
	}
	.home-about h2 span::after,
	.home-service h2 span::after,
	.home-recruit h2 span::after{
		height: 60px;
		width: 60px;
	}
	.home-service .row{
		padding: 4.6em 0 3em 0; 
	}
	.home-about .a_txt{
		padding-top: 30px;
	}
    .home-about .more{
        margin-top: 0;
    }
	.home-about .more{
		float: none;
	}
    .home-service p.more a span{
        display: block;
        margin-right: 0;
    }
    .bottomcont-bg .recruit .read{
        font-size: 1.2em;
    }
	
    /*page*/
	.page-title{
		background: url("../images/common/sp_bgred.png") no-repeat center bottom -40px  #f4f4f6;
		background-size: contain;
		padding: 50px 0 60px;
	}
	.page-title .container{
		padding: 0 20px;
	}
	.page-title p.subtitle{
		font-size: 64px;
		margin: 0 0 100px 0;
	}
	.page-title .co{
		position: relative;
	}
    body.page #content-main h2{
        font-size: 26px;
		padding: 15px 20px 0 0;
		line-height: 1.4em;
    }
	body.page #content-main h2 span{
		font-size: 18px;
		margin-bottom: 0px;
	}
    body.page #content-main h3{
        font-size: 20px;
		padding: 5px 20px 10px 50px;
    }
    body.page #content-main h4{
        font-size: 18px;
    }
    .page #content-main ul li {
        background-position: left 9px;
    }
    .page .more{
        text-align: center;
    }
    .page table{
        margin-bottom: 2rem;
    }
    .page table th, .page table td{
        padding: 0.7em;
    }
    iframe{
        width: 100%;
        height: 300px;
    }
    .waku-list{
        column-count: 2;
    }
	.page #content-main .page-link ul,
	.page #content-main ul.maker-list{
		display: block;
	}
	.page #content-main ul.maker-list li{
		width: 100%;
		margin-bottom: 10px;
	}
	body.page #content-main .privacy h5{
		font-size: 18px;
	}
	.mfp_element_submit{
		padding: 20px 90px;
	}
	.mfp_col10{
		padding: 0 !important;
	}
	form#mailformpro label{
		margin: 5px 0px;
	}
	.check span::before {
  		top: 5px !important;
	}
	.check .mfp_checked span::after{
  		top: 5px !important;
	}
	.radio span::before {
  		top: 5px !important;
	}
	.telin .shisetsu-info{
		width: 100%;
	}
	.shisetsu-info dd{
		padding-left: 0px;
	}
	.tel_box .tel{
		text-align: center;
	}
	.tel_box .tel span{
		font-size: 44px !important;
	}
	.shisetsu-info{
		margin-bottom: 20px;
	}

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

    .mmenu {
        top: 0;
        right: 0;
    }
    .mainimage{
        margin: 0 auto;
		background-size: 100%;
		background-position: center top 80px;
    }
    .mainimage .s img{
        height: 60vh;
        object-fit: cover;
    }
    .mainimage p{
        right: 0;
    }
    .maintxt{
        padding-left: 0;
    }
    .maintxt h2 span {
        font-size: 40px;
    }
    .mainimage ul{
        left: 5%;
        top: 90%;
    }
	.pagemain{
		height: 150px;
		margin-left:15px;
	}
	.page-title{
		min-height: inherit;
	}
    .page-title .container{
        display: block;
    }
	.page-title h1.title{
		font-size: 30px;
		padding: 0;
	}
    .page-title h1.title span, .page-title div.title span {
        font-size: 2em;
        display: block;
		margin: 0 0 3px 0;
		line-height: 1em;
    }
    .breadcrumbs{
		padding: 15px 0;
        margin: 0;
    }
    table th, table td{
        display: block;
    }
    .page #content-main th{
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
		color: #ff2e3e;
    }
    .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{
		/*overflow: hidden;*/
	}
    .home-service .s_txt{
        padding-top: 0;
		margin-bottom: 40px;
    }
    .home-service h3 span{
        font-size: 14px;
    }
    .home-recruit {
        padding: 80px 0 80px 0;
    }
    .home-recruit .container{
    }
    .home #content-main .home-recruit .midashi {
        background-size: contain;
        height: 300px;
        width: 90%;
        left: 0;
        right: 0;
        top: -30px;
    }
    .home #content-main .home-recruit h3{
        font-size: 20px;
    }
    /*business*/
    
    /*recruit*/
    .page #content-main .container > .row.jinzai{
        padding-bottom: 100%;
        background-position: right bottom 20px;
        background-size: contain;
    }
    .page #content-main .w_item h3{
        margin-bottom: 30px;
    }
	/*contact*/
	.page #content-main .tel_box h3{
		margin-bottom: 0px;
	}
	.tel_box .tel span{
		font-size:34px; 
		letter-spacing: normal;
	}
    /*footer*/
	.maker-bana{
		padding: 3em 0 2em;
	}
    .bottomcont-bg .contact a{
        color: #fff;
    }
    .bottomcont-bg .recruit .s_txt{
        padding-left: 2em;
        padding-right: 2em;
    }
    #footer{
        padding: 0 0 6em;
    }
    #footer h2,
    #footer h3,
    #footer p{
        /*text-align: center;*/
    }
	#footer h2{
		font-size: 26px;
	}
    #footer h3 {
      margin: 20px 0;
      padding: 0;
    }
    #footer h3 span{
        font-size: 40px;
    }
	#footer .tel,
	#footer p.smc{
		text-align: center;
	}
	span.tel-link a{
		text-decoration: none;
		color: #000;
	}
    #footer .footer-menu{
    }
    #footer .footer-bottom{
        padding: 20px 10px;
    }
	#footer .pagetop{
	}
	/*contents*/
	.tel_box,
	.waku{
		padding: 20px;
	}
	h2 span.free{
		text-align: center;
		font-size: 14px;
		padding: 3px 5px;
	}
	.page #content-main .col-md-6 img{
		margin-bottom: 20px;
	}
	
}

@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%;
    }
    .js .to-animate, .js .footer-anm, .js .u, .js .r-animate{
        opacity: 1;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4,.row-cols-md-3 > *,
    .ome-business .col-md{
        width: 33.33333333%;
    }
    .col-md-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;
    }
}