@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;
    font-weight: 400;
    color: #21302b;
    overflow-x: hidden;    
	background: #f2f2e8 url("../images/common/header-bg.png") no-repeat center top;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
    line-height: 1.5;
  }
}

::-webkit-selection {
  color: #ffffff;
  background: #1d9a00;
}

::-moz-selection {
  color: #ffffff;
  background: #1d9a00;
}

::selection {
  color: #ffffff;
  background: #1d9a00;
}

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

a:hover, a:focus, a:active {
  outline: none;
  color: #2e2e2e;
  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-family: 'Zen Old Mincho' , "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

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

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

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

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

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

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;
}
.font-serif {
  font-family: "Crimson Text", serif;
}

.font-sans-serif {
  font-family: "Roboto", 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;
  }
}

.container {
}

/* Header */
#header {
    width: 100%;
    padding: 2rem 0;
}

#header > .container-fluid{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    width: 90%;
    justify-content: space-between;
}

.description{
    font-size: 13px;
    color: #333;
}
@media screen and (max-width: 1300px) {
    .description{
        max-width: 450px;
    }
}
.header-logo{
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.2em;
    line-height: 1.9;
    margin-bottom: 0;
}
.header-logo span{
    font-size: 25px;
}
.header-logo a{
  border-bottom: none !important;
  color: #fff;
  text-decoration: none;
}
.header-logo a:hover {
  opacity: .7;
}

#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-family: 'Zen Old Mincho', serif;
	line-height: 2em;
}
#primary-menu li a span{
	color: #1d9b00;
	font-size: 18px;
    font-family: 'Jost', sans-serif;
	display: block;
}
#primary-menu li a:hover,body:not(.home) #primary-menu li.active a{
    background: rgba(29,155,0,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 span{
	font-size: 18px;
	letter-spacing: 0.1em;
}
#primary-menu li#menu05 a{
	background: url("../images/common/shop_ico.svg") no-repeat 90% center;
    color: #272d2b;
	font-size: 15px;
    padding: 15px 60px 15px 40px;
	line-height: 1em;
	position: relative;
}
#primary-menu li#menu05 a:hover{
    background: rgba(29,155,0,0.2) url("../images/common/shop_ico.svg") no-repeat 92% center;
}
#primary-menu li#menu05 a::before, #primary-menu li#menu05 a::after {
	content: '';
	width: 90%;
	height: 50%;
	position: absolute;
}
#primary-menu li#menu05 a::before {
	border-left: solid 1px #1d9b00;
	border-top: solid 1px #1d9b00;
	top: 0;
	left: 0;
}

#primary-menu li#menu05 a::after {
	border-right: solid 1px #1d9b00;
	border-bottom: solid 1px #1d9b00;
	bottom: 0;
	right: 0;
}

.mmenu{
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 1000;
    height: 60px;
    width: 60px;
    background: #1d9a00;
    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;
    font-family: 'Zen Old Mincho', serif;
    -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;
    background: #000 url("../images/common/bg_sp-menu.jpg") no-repeat center center / cover;
}
#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: 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{
    background: url("../images/common/line_yoko.svg") no-repeat -30px center;
}
/*
#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;
}
#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{
	color: #1d9b00;
	font-size: 22px;
    font-family: 'Jost', sans-serif;
	display: block;
    font-weight: 600;
}

/*#full-nav li a:hover,
#full-nav li.active a{
  color: #2e9645;
}*/

#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: 90%;
	margin: 0 auto 6em;
}
.mainimage .s{
    display: block;
}
.mainimage .w{
    display: none;
}
@media screen and (min-width: 1300px) {
.mainimage .s{
    display: none;
}
.mainimage .w{
    display: block;
}
}

.slide{
    /*width: 93vw;*/
    margin: auto;
    width: 500px;
    height: 500px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 0px !important;
    z-index: 3;
}
.slide .slick-list{
    background: #000;
}
.slide img{
    width: 100%;
    height: 500px;
    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;
}
.mainimage p{
    position: absolute;
    right: -30px;
	top: 0;
	bottom: 0;
    margin: auto;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.mainimage p span{
    position: relative;
}
.mainimage p span::before,
.mainimage p span::after{
    content: "";
    position: absolute;
    width: 1px;
    height: 30px;
    background: #000;
    left: 30%;
}
.mainimage p span::before{
    bottom: 100%;
    margin-bottom: 30px;
}
.mainimage p span::after{
    top: 100%;
    margin-top: 30px;
}

.maintxt{
    position: absolute;
    left: 0;
    right: 0;
	top: 0;
	bottom: 0;
    margin: auto;
    z-index: 3;
    display: flex;
    width: 80%;
    mix-blend-mode: overlay;
    align-items: center;
    justify-content: center;
}
.maintxt h2{
    font-size: 78px;
    font-weight: 500;
    font-family: 'Jost', sans-serif;
    line-height: 83px;
    letter-spacing: 0.04em;
    color: #fff;
    margin: -1.7em 0 0;
}
.maintxt h2 span{
    font-size: 128px;
    display: block;
    letter-spacing: 0.04em;
    line-height: 1;
}
.mainimage ul{
    padding: 0;
    position: absolute;
    top: 38%;
    left: 60%;
    font-family: 'Zen Old Mincho', serif;
}
.mainimage ul li{
    display: inline-block;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin: 5px;
    background: #000000;
    transform: skewX(-15deg);
    position: relative;
}
.mainimage ul li div{
    width: 100%;
    height: 100%;
    position: relative;
    padding: 0px 20px;
}
.mainimage ul li span{
    transform: skewX(15deg);
    display: block;
}

.mainimage ul li::before,
.mainimage ul li::after,
.mainimage ul li div::before,
.mainimage ul li div::after{
  position: absolute;
  content: "";
  display: block;
  left: 5px;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 100px;
}
.mainimage ul li div::before,
.mainimage ul li div::after{
  right: 5px;
  left: auto;
}
.mainimage ul li::before,
.mainimage ul li div::before{
  top: 5px;
}
.mainimage ul li::after,
.mainimage ul li div::after{
  bottom: 5px;
}

.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;
    line-height: 1.3;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.08em;
	font-family: 'Zen Old Mincho', serif;
}
.home #content-main h2 span{
    font-size: 52px;
    font-weight: 500;
    letter-spacing: 0;
    color: #23883c;
    line-height: 1.3;
    font-family: 'Jost', sans-serif;
    display: block;
    position: relative;
}
.home #content-main h3{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.6;
    color: #23883c;
}
.home #content-main section{
    overflow: hidden;
}
.home-about{
    padding: 5rem 0;
    position: relative;
	color: #fff;
}
.home-about::before{
    content: "";
	position: absolute;
    width: 90%;
    height: 470px;
    background: url("../images/common/bg_blue.jpg") no-repeat left top /cover;
    top: 0;
    bottom: 0;
    left: 0;
}
@media screen and (min-width: 1300px) {
    .home-about::before{
        width: 80%;
    }
}
.home-about .a_txt{
    width: 90%;
    color: #fff;
    position: relative;
    margin-right: auto;
}
.home-about h2{
    width: 90%;
    color: #fff;
    position: relative;
    margin-right: auto;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
}
.home-about h2::before{
    content: "";
    position: absolute;
    top: 100%;
    right: 100%;
    width: 100px;
    height: 1px;
    background: #fff;
}
.home-about h2::after{
    content: url("../images/index/h3.svg");
    position: absolute;
    top: 100%;
    left: 99.98%;
    transform: scale(-1, 1);
}

.home-about h2,
.home #content-main .home-about h2 span,
.home-business h2,
.home #content-main .home-business h2 span{
	color: #ffffff;
}


.home-business{
    padding: 0;
    position: relative;
    counter-reset: item;
}
.home-business h2{
    text-align: center;
}
.home-business .business-bg{
	position: relative;
    padding: 5em 0;
}
.home-business .business-bg::before{
    content: "";
	position: absolute;
    height: 100%;
    width: 90%;
    background: url("../images/index/business-bg.jpg") no-repeat top left / cover;
    top: 0;
    right: 0;
}
@media screen and (min-width: 1300px) {
    .home-business .business-bg::before{
        width: 80%;
    }
}
.home-business .b_txt{
    width: 90%;
    color: #fff;
    position: relative;
    padding-top: 3em;
    padding-bottom: 3em;
    margin-left: auto;
}
.home #content-main .home-business h3{
    padding: 25px 0;
	color: #fff;
    border-bottom: 1px solid #fff;
    position: relative;
    
}
.home-business h3::before{
    content: url("../images/index/h3.svg");
    position: absolute;
    top: 100%;
    right: 99.98%;
}
.home-business h3::after{
    counter-increment: item;
    content: '0'counter(item);
    font-size: 52px;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 0;
    line-height: .69;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 0;
}
.home-business p{
	margin: 1rem 0;
}
.home-business p.read{
    margin-top: 4em;
}
.home-business p.more{
    display: block;
    text-align: center;
}
.home-business p.more a{
    display: block;
	background-color: #000;
    color: #fff;
	padding: 13px 0px 15px 0px;
}
.home-business p.more a:hover{
    background-color: rgba(0,0,0,0.63);
    color: #fff;
}
.home-business p.more a::before,
.home-business p.more a::after{
	display: none;
}
.home-business p.more a span{
	font-size: 1.625em;
	font-family: 'Jost', sans-serif;
	font-weight: 500;
	letter-spacing: 0.1em;
	display: inline-block;
	margin-right: 10px;
	vertical-align: bottom;
	line-height: 1;
}
.home-jigyou{
    background: #ededed;
    padding: 3em 0;
}
.home #content-main .home-jigyou h3{
    color: #272d2b;
    text-align: center;
    font-size: 22px;
}
.home .home-jigyou ul li{
    display: inline-block;
    margin-right: 2em;
}
.home-recruit{
    padding: 7rem 0;
    position: relative;
    background: url("../images/index/recruit_bg.jpg") no-repeat center right /contain;
}
.home-recruit .container{
    background: #fff url("../images/index/recruit.jpg") no-repeat left center /contain;
    min-height: 325px;
}
.home-recruit .row{
    min-height: 325px;
}
.home #content-main .home-recruit .midashi{
    background: url("../images/common/recruit_bg.svg") no-repeat center center;
    position: absolute;
    height: 400px;
    width: 400px;
    margin: auto;
    top: 0;
    bottom: 0;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.home #content-main .home-recruit h2{
    color: #fff;
    margin: 0;
}
.home #content-main .home-recruit h2 span{
    color: #fff;
}
.home #content-main .home-recruit h2 span::before{
    content: none;
}
.home-recruit .r_txt{
    align-items: center;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
}
.home #content-main .home-recruit h3{
    color: #21302b;
    font-weight: 500;
    font-size: 20px;
}



.bottomcont-bg{
    margin-top: 8em;
	text-align: center;
	color: #fff;
}
.page .bottomcont-bg{
    margin-top: 0;
}
.bottomcont-bg .contact{
	background: url("../images/common/contact_bg.jpg") no-repeat center center / cover;
}
.bottomcont-bg .recruit{
	background: url("../images/common/recruit_bg.jpg") no-repeat center center / cover;
}
.bottomcont-bg .contact,
.bottomcont-bg .recruit{
    position: relative;
}
.bottomcont-bg .contact .b_txt,
.bottomcont-bg .recruit .b_txt{
	padding: 50px 0;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.bottomcont-bg .contact h2,
.bottomcont-bg .recruit h2{
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.06em;
    font-size: 2.875em;
    display: block;
}
.bottomcont-bg .contact .tit{
    letter-spacing: 0.04em;
    font-size: 1.375em;
}
.bottomcont-bg .contact .tit span{
    position: relative;
    font-family: 'Zen Old Mincho' , "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.bottomcont-bg .contact .tit span::before,
.bottomcont-bg .contact .tit span::after{
    content: "";
    width: 32px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 50%;
}
.bottomcont-bg .contact .tit span::before{
    margin-right: 20px;
    right: 100%;
}
.bottomcont-bg .contact .tit span::after{
    margin-left: 20px;
    left: 100%;
}
.bottomcont-bg .contact .tel{
	font-size: 2.9375em;
    letter-spacing: 0.04em;
    line-height: 1;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}
.bottomcont-bg .recruit .read{
	font-size: 1.5em;
    line-height: 1.6;
    font-family: 'Zen Old Mincho' , "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.bottomcont-bg .contact .more{
	margin: auto 0 0;
}
.bottomcont-bg .recruit .more{
	margin: 0;
}
.bottomcont-bg .contact::before,
.bottomcont-bg .contact::after,
.bottomcont-bg .recruit::before,
.bottomcont-bg .recruit::after,
.bottomcont-bg .contact .b_txt::before,
.bottomcont-bg .contact .b_txt::after,
.bottomcont-bg .recruit .b_txt::before,
.bottomcont-bg .recruit .b_txt::after{
  position: absolute;
  content: "";
  display: block;
  left: 15px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 100px;
}
.bottomcont-bg .contact .b_txt::before,
.bottomcont-bg .contact .b_txt::after,
.bottomcont-bg .recruit .b_txt::before,
.bottomcont-bg .recruit .b_txt::after{
  right: 15px;
  left: auto;
}
.bottomcont-bg .contact::before,
.bottomcont-bg .recruit::before,
.bottomcont-bg .contact .b_txt::before,
.bottomcont-bg .recruit .b_txt::before{
  top: 15px;
}
.bottomcont-bg .contact::after,
.bottomcont-bg .recruit::after,
.bottomcont-bg .contact .b_txt::after,
.bottomcont-bg .recruit .b_txt::after{
  bottom: 15px;
}
#footer {
    clear: both;
    position: relative;
    width: 100%;
    padding: 50px 0;
    background: url("../images/common/footer_bg.jpg") no-repeat center center;
    color: #000;
    letter-spacing: 0.08em;
    text-align: center;
}
#footer a{
}
#footer .container{
	position: relative;
}
#footer h2{
    letter-spacing: 0.18em;
    font-size: 26px;
}
#footer h2 a{
    text-decoration: none;
}
#footer h2 a > img{
    display: inline-block;
    vertical-align: middle;
}
#footer h2 span{
    font-size: 23px;
}
#footer h3 {
    color: #38384c;
    text-align: center;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 42px;
}
#footer .container{
}
#footer h3{
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    text-align: right;
    line-height: 1;
    padding-right: 40px;
    margin-left: auto;
}
#footer h3 span{
    display: block;
    font-size: 50px;
    font-family: 'Jost', sans-serif;
    color: #2e9645;
    margin-bottom: 10px;
}
#footer .tel{
    font-family: 'Jost', sans-serif;
    font-size: 34px;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 10px;
}
#footer .tel span{
    font-size: 40px;
    margin-left: 10px;
}
#footer .more.mail{
    margin-top: 0;
}
#footer .more a{
    border-color: #fff;
}
#footer .more a:hover{
    background-color: #fff;
    color: #2e9645;
}
#footer .footer-menu{
    display:flex;
    padding: 0;
    margin: 3em 0 0;
}
#footer .footer-menu li{
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
#footer .footer-menu a{
    text-decoration: none;
    display: block;
    position: relative;
    padding: 10px 20px;
}
#footer .footer-menu li a::before{
    content: "";
    width: 8px;
  height: 8px;
  line-height: 8px;
  background-color: #2e9645;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
#footer .footer-menu a:hover{
    color: #2e9645;
}
#footer .footer-bottom{
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #fff;
    padding: 20px 0;
}
#footer .g_map{
    margin: 0;
}
#footer .g_map a{
    font-size: 16px;
    padding: 0px 35px 3px 35px;
    font-family: 'Jost', sans-serif;
}
#footer .copyright {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #324851;
    font-family: 'Jost', sans-serif;
}
#footer .pagetop {
    right: 0px;
    bottom: 0px;
    z-index: 100;
}
#footer .pagetop a{
    background: #1d9b00;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.more{
    display: inline-block;
    font-weight: 500;
    margin-top: 2em;
	position: relative;
    font-family: 'Zen Old Mincho' , "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
.more a{
    color: #fff;
	text-align: center;
    padding: 13px 80px 15px 70px;
    transition: all .5s ease-in-out;
    position: relative;
    text-decoration: none;
    display: block;
    background: url("../images/common/more_ic.svg") no-repeat 94% center;
    }

.more a:hover{
    color: #fff;
    background-color: rgba(0,0,0,0.63);
}
.more a::after,
.more a::before{
	content: '';
	width: 90%;
	height: 50%;
	position: absolute;
}
.more a::before {
	border-left: solid 1px #fff;
	border-top: solid 1px #fff;
	top: 0;
	left: 0;
}
.more a::after {
	border-right: solid 1px #fff;
	border-bottom: solid 1px #fff;
	bottom: 0;
	right: 0;
}

.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;
}
.page #content-main a{
    text-decoration: none;
}

.page-title {
    position: relative;
    margin-bottom: 50px;
}
.page-title .container{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 20px;
    border-bottom: 1px solid #324851;
}
.page-title .container::after{
    position: absolute;
    content: url("../images/common/page-title.svg");
    left: 100%;
    top: 100%;
}
.page-title h1.title,
.page-title div.title{
    position: relative;
    color: #324851;
    margin-bottom: 0;
    font-size: 1.25em;
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-block;
    margin: 0;
    padding: 1.5em 2em 5px 0;
    line-height: 1.2;
}
.page-title h1.title span,
.page-title div.title span{
    font-size: 3.25em;
    font-weight: 500;
    color: #1d9a00;
    font-family: 'Jost', sans-serif;
    letter-spacing: 0;
    margin-top: 10px;
    margin-right: 20px;
    position: relative;
    z-index: 1;
}
.breadcrumbs{
    font-size: 14px;
    padding: 5px 10px;
    position: relative;
    margin: 20px 0 30px;
    color: #000000;
    text-align: right;
}
.breadcrumbs i{
    color: #2e9645;
    font-size: 12px;
}
.breadcrumbs img{
    margin: 0 10px;
}
.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{
    border-top: 1px solid #c0cdbd;
}
.page table th{
    vertical-align: text-top;
    width: 25%;
    font-weight: 500;
}
.page th,.page td{
    padding: 1.5em 1.5em;
    border-bottom: 1px solid #c0cdbd;
}
.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 .container > .row{
    padding-top: 1rem;
    padding-bottom: 1rem;
}
body.page #content-main h2{
    font-size: 28px;
    letter-spacing: 0.06em;
}
body.page #content-main h2 span{
    font-size: 20px;
    font-family: 'Jost', sans-serif;
    display: block;
    color: #1d9a00;
}
body.page #content-main h3{
    font-size: 20px;
    padding: 5px 20px;
    border-left: 1px solid #1d9a00;
}
body.page #content-main h4{
    color: #2e9045;
    font-weight: 700;
}

body.page #content-main h5{
    font-size: 26px;
    clear: both;
    padding: 10px 0;
    position: relative;
    color: #1d9a00;
}
body.page #content-main .more{
    margin-top: 1em;
}
body.page #content-main .more a{
    background-color: #000;
}
body.page #content-main .more.w100{
    display: block;
}
body.page #content-main .more a::before, body.page #content-main .more a::after {
    content: none;
}
body.page #content-main .more a:hover{
    background-color: #0a3700;
}

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;
}*/

/*about*/
.ceo{
    text-align: right;
}
.ceo span{
    font-size: 26px;
    margin-left: 15px;
}
/*business*/
body.page #content-main .shop-link{
    display: block;
}
body.page #content-main .shop-link a{
    padding: 50px 80px 50px 70px;
}



body.page #content-main .shop-link a::after{
    content: url("../images/common/shop_ico_w.svg");
    width: auto;
    height: auto;
    border: none;
    bottom: auto;
    right: auto;
    margin-left: 10px;
}
body.page #content-main .shop-link a span {
    font-size: 1.625em;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-right: 10px;
    vertical-align: bottom;
    line-height: 1;
}

.waku{
    border: 1px solid #2e9045;
}
.waku h4{
    background: #d8eddd;
    padding: 10px 20px 15px;
}
.page #content-main .waku ul{
    padding-left: 20px;
    padding-right: 20px;
}
.contact-bg{
    background: linear-gradient(180deg, #fff 0%, #fff 40%, #2e9045 40%, #2e9045 100%);
    padding: 3em 0;
}
.contact-box{
    background: #fff url("../images/common/clover_contact.svg") no-repeat right -15px top -15px;
    border: 1px solid #2e9045;
}
.page #content-main .contact-box img{
    object-fit: cover;
    height: 100%;
}
.contact-box .txt{
    padding: 30px;
}
.page #content-main .contact-box h4{
    color: #21302b;
    font-size: 22px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 10px;
}
.page #content-main .contact-box h4::after{
    content:"";
    display:block;
    width:80px;
    height:6px;
    background-color:#efc0c6;
    position:absolute;
    bottom:0;
    left:0;
}
.contact-box .tel_mail{
    display: flex;
    align-items: center;
}
.contact-box .tel_mail .tel{
    font-family: 'Jost', sans-serif;
    font-size: 34px;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0px;
    margin-right: 20px;
}
.contact-box .tel_mail .tel span{
    font-size: 41px;
    margin-left: 10px;
}
.contact-box .tel_mail .more{
    margin: 0;
}
.contact-box .tel_mail .more a{
    padding: 8px 30px 11px 30px;
}
.column2{
    column-count: 2;
}
.gray-bg{
    background: #e7e7e7;
    padding: 5em 0;
    margin: 5em 0 3em;
}
.e_item{
    border: 2px solid #2e9045;
    padding: 40px 40px 20px;
    background: #fff url("../images/common/clover_contact.svg") no-repeat right -20px top -20px;
    display: flex;
    flex-flow: column;
    height: 100%;
}
.page #content-main .e_item h2{
    text-align: center;
    font-size: 22px;
    background: none;
    border-bottom: none;
    padding: 0 0 20px;
}
.page #content-main .e_item h2::after{
    content:"";
    display:block;
    width:80px;
    height:6px;
    background-color:#efc0c6;
    position:absolute;
    bottom:0;
    left:0;
    right: 0;
    margin: auto;
}
.e_item p.img{
    margin-top: auto;
}
.waku-list{
    column-count: 3;
}
body.page #content-main .waku-list li{
    border: 1px solid #1d9a00;
    padding: 10px 20px 10px 40px;
    background-position: 18px 22px;
    margin-bottom: 10px;
}

/*recruit*/
.jinzai{
    background: url("../images/recruit/jinzai.jpg") no-repeat right top;
    min-height: 440px;
}
.page #content-main .jinzai ul li{
    border-bottom: 2px solid #efc0c6;
    font-size: 17px;
    font-weight: bold;
    background: url("../images/common/icon_list02.svg") no-repeat left 13px;
    padding: 5px 5px 5px 30px;
}
.job_item{
    background: #d8eddd;
    margin-bottom: 2em;
	overflow: hidden;
}
.bn .job_item{
    height: 100%;
}
.job_item .txt{
    padding: 10px 30px 30px;
}
.w_item{
    border: 2px solid #2e9045;
    padding: 3em;
    margin: 1em 0 2em;
    background: #fff url("../images/common/clover_contact.svg") no-repeat right -20px top -20px;
}
.page #content-main .w_item h3{
    background: none;
    text-align: center;
    padding: 10px 10px 20px;
    color: #21302b;
    font-size: 22px;
    border: none;
    position: relative;
}
.page #content-main .w_item h3::after {
  content: "";
  display: block;
  width: 80px;
  height: 6px;
  background-color: #efc0c6;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.w_item > div:last-child *:last-child{
    margin-bottom: 0px;
}
.job_cate{
    margin: 0 0 1em;
}
.page #content-main .job_cate ul{
    display: inline-block;
    margin: 0;
    padding: 0;
}
.page #content-main .job_cate ul li{
    padding: 5px 20px;
    border: 1px solid #2e9045;
    display: inline-block;
    margin-right: 10px;
    background: none;
}
.page #content-main .job_cate ul.genre li{
    background: #2e9045;
    color: #fff;
}
.page #content-main .job_cate ul.status li{
    border-color: #21302b;
}
.page.recruit .contact-bg{
    padding-top: 1em;
}
.page.recruit #content-main .tel{
    font-family: 'Jost', sans-serif;
    font-size: 2.9375em;
}
/*CONTACT*/

.tel_box{
    border: 2px solid #2e9045;
    padding: 2em 3em;
    margin: 1em 0 2em;
    text-align: center;
}
.page #content-main .tel_box h3{
    background: none;
    padding: 10px 10px 20px;
    color: #2e9045;
    font-size: 22px;
    font-weight: 700;
    border: none;
    position: relative;
}
.tel_box .tel {
  font-family: 'Jost', sans-serif;
  font-size: 25px;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 10px;
}
.tel_box .tel span {
  font-size: 40px;
  margin-left: 10px;
}
.form-box{
    max-width: 800px;
    margin: auto;
}

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

.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: 20px;
    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-business 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-business .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;
    }
    .sp{
        display: block;
    }
    #contact {
      padding: 80px 20px;
    }
    .description{
        margin-top: 15px;
    }
    .header-logo {
      width: 80%;
    }
    .mmenu{
        display: block;
    }
    .lock .mmenu{
        background: inherit;
    }
    #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 a{
        padding: 25px 15px;
    }
    #full-nav li#menusp05{
        margin-top: 2em;
        text-align: center;
    }
    #full-nav li#menusp05 a{
        background: url("../images/common/shop_ico_w.svg") no-repeat 90% center;
        padding: 25px 60px 25px 40px;
        line-height: 1em;
        position: relative;
    }
    #full-nav li#menusp05 a:hover{
        background-color: rgba(29,155,0,0.2);
        background-position: 92% center;
    }
    #full-nav li#menusp05 a::before, #full-nav li#menusp05 a::after {
        content: '';
        width: 90%;
        height: 50%;
        position: absolute;
    }
    #full-nav li#menusp05 a::before {
        border-left: solid 1px #fff;
        border-top: solid 1px #fff;
        top: 0;
        left: 0;
    }

    #full-nav li#menusp05 a::after {
        border-right: solid 1px #fff;
        border-bottom: solid 1px #fff;
        bottom: 0;
        right: 0;
    }
    #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-main .nav-main-menu li::before{
        top: 1.5em;
    }
    #full-nav .nav-main .nav-main-menu ul li ul li::before{
        top: 1.3em;
    }
    /*module*/
    #content-main h2{
      font-size: 22px;
    }
    #contact h2{
      font-size: 28px;
      width: 100%;
      margin-bottom: 30px;
    }
    .more a {
        padding: 13px 60px 15px 50px;
    }
    body.page #content-main .more a {
        padding: 13px 40px 15px 10px;
    }
    /*home*/
    .maintxt{
        width: auto;
    }
    .maintxt h2 {
        font-size: 62px;
    }
    .maintxt h2 span{
        font-size: 100px;
    }
    .home-about .more{
        margin-top: 0;
    }
    .home-business p.more a span{
        display: block;
        margin-right: 0;
    }
    .bottomcont-bg .recruit .read{
        font-size: 1.2em;
    }
    /*page*/
    body.page #content-main h2{
        font-size: 22px;
    }
    body.page #content-main h3{
        font-size: 20px;
    }
    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;
    }

/*footer*/
    #footer h2{
        line-height: inherit;
        text-align: center;
    }
    #footer h3{
        margin-left: 0;
    }
    #footer p{
        text-align: center;
    }
    #footer .footer-menu{
        display: block;
        margin: 2em 1em 0;
    }

}
@media screen and (max-width: 480px) {
    #header > .container-fluid{
        width: auto;
    }
    #header .container-fluid > div{
        width: 80%;
    }
    .mmenu {
        top: 25px;
        right: 20px;
    }
    .mainimage{
        margin: 2em auto 4em;
    }
    .mainimage .s img{
        height: 60vh;
        object-fit: cover;
    }
    .mainimage p{
        right: 0;
    }
    .maintxt{
        padding-left: 0;
    }
    .maintxt h2{
        font-size: 25px;
        line-height: 1;
    }
    .maintxt h2 span {
        font-size: 40px;
    }
    .mainimage ul{
        left: 5%;
        top: 90%;
    }
    .slide{
        width: 90%;
        height: auto;
    }
    .slide img{
        height: auto;
    }
    .page-title .container{
        display: block;
    }
    .page-title h1.title span, .page-title div.title span {
        font-size: 2em;
        display: block;
    }
    .breadcrumbs{
        margin: 0;
    }
    table th, table td{
        display: block;
    }
    .page #content-main th{
        width: 100%;
        border-bottom: none;
        padding-bottom: 0;
    }
    .page #content-main .container > .row{
        padding: 1rem 0;
    }
    .waku-list{
        column-count: 1;
    }
    .more,
    .home-business p.more a{
        display: block;
    }
    .fs-18 {
      font-size: 16px;
    }
    /*home*/
    .home-business .b_txt{
        width: 80%;
        padding-top: 0;
    }
    .home-business h3 span{
        font-size: 14px;
    }
    .home-business p.read {
        margin-top: 2em;
    }
    .home-recruit {
        padding: 3rem 0;
    }
    .home-recruit .container{
        background-position: left top;
        padding-top: 100%;
    }
    .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*/
    body.page #content-main .shop-link a{
        text-align: left;
        padding-left: 20px;
    }
    body.page #content-main .shop-link a span{
        display: block;
        font-size: 1.5em;
    }
    body.page #content-main .shop-link a span::after {
        content: url("../images/common/shop_ico_w.svg");
        width: auto;
        height: auto;
        border: none;
        bottom: auto;
        right: auto;
        margin-left: 10px;
    }
    body.page #content-main .shop-link a::after{
        content: none;
    }
    /*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;
    }
    /*footer*/
    .bottomcont-bg .contact a{
        color: #fff;
    }
    .bottomcont-bg .recruit .b_txt{
        padding-left: 2em;
        padding-right: 2em;
    }
    #footer{
        padding: 7.5em 0 4em;
    }
    .page #footer {
        padding-bottom: 5em;
    }
    #footer h2,
    #footer h3,
    #footer p{
        text-align: center;
    }
    #footer h3 {
      margin: 20px 0;
      padding: 0;
    }
    #footer h3 span{
        font-size: 40px;
    }
    #footer .footer-menu{
        column-count: 2;
    }
    #footer .footer-bottom{
        padding: 20px 10px;
    }
}
@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: 1140px !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;
    }
}
.digicert img {
  margin: 0 0 0 0!important;
}

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