@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}

#top {
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  clear: both;
  position: relative;
}

#main {
    background-color:#fff;
}

.sp {
	display: none;
}
.area {
	padding: 70px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ttl01 {
	text-align: center;
}
.ttl01 img {
    max-width: 206px;
}
.ttl_txt {
    text-align: center;
    margin: 0 0 80px;
    position: relative;
}
.ttl_txt::after {
    content: "";
    position: absolute;
    display: block;
    width: 216px;
    height: 29px;
    top: 60px;
    right: 50%;
    transform: translate(50%, 0);
}

.ttl_txt.white {
    color: #fff;
}

.logo {
   margin-left:20px;
}

.logo img {
	max-width: 184px;
}
.sub_ttl {
    text-align: center;
    font-size: 2em;
    margin: 0 0 30px
    
}
.sub_ttl span {
    display: block;
    font-size: 40%;
    margin: 20px 0;
}


@media screen and (max-width:1096px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 50px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		margin: 0;
	}
	.logo img {
		max-width: 120px;
		margin-left:10px;
	}
    .ttl_txt::after {
        top: 60px;
    }
    .ttl01 img {
        max-width: 160px;
    }
    .sub_ttl {
        font-size: 220%;
    }
    .sub_ttl span {
        font-size: 40%;
        margin: 10px 0;
    }


}

/* class
-------------------------------------------------------*/
.textL {text-align:left;}
.textR {text-align:right;}
.textJ {text-align:justify;}
.textC {text-align:center;}
.mg-b1em {margin-bottom:1em;}

/* font
-------------------------------------------------------*/
.Kleeone {
    font-family: 'Klee One', cursive;
}
.Monstserrat {
    font-family: 'Montserrat', sans-serif;
}


/* ローディング画面
-------------------------------------------------------*/
#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: #ffffff;
	z-index: 1000;
	text-align:center;
	color:#fff;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/*画面遷移アニメーション*/
.splashbg{
    display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg{
    display: block;
    content: "";
    position:fixed;
	z-index: 1000;
    width: 100%;
    height: 100vh;
    top: 0;
	left: 0;
    transform: scaleX(0);
    background-color: #eb6100;/*伸びる背景色の設定*/
 	animation-name:PageAnime;
	animation-duration:1.2s;
	animation-timing-function:ease-in-out;
	animation-fill-mode:forwards;
}

/*画面遷移の後現れるコンテンツ設定*/
#wrapper{
	opacity: 0;/*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #wrapper{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay: 0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnime{
	0% {
		transform-origin:left;
		transform:scaleX(0);
	}
	50% {
		transform-origin:left;
		transform:scaleX(1);
	}
	50.001% {
		transform-origin:right;
	}
	100% {
		transform-origin:right;
		transform:scaleX(0);
	}
}

@keyframes PageAnimeAppear{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/* swiper
-------------------------------------------------------*/
.swiper {
  height: 100vh;
}

.s-right-wrap {
  margin: 0 auto;
}

.s-right-text {
  position: absolute;
  top: 71%;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 3vw;
  z-index:999;
  text-shadow: 1px 2px 3px #000;
  letter-spacing: 0.2em;
  font-family: 'Kosugi Maru',sans-serif;

}

.video {
  position: absolute;
  height:100vh;
  object-fit: cover;
}

.swiper-slide-active .s-right-text {
  animation: slideFromRight 1.5s ease 0s 1 normal;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoom-in 12s linear 0s 1 normal both;  
}

@keyframes slideFromRight {
  0%, 25% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}

@media screen and (max-width:768px) {
.s-right-text {
  font-size: 8vw;
  top: 61%;
  }
}

/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
    padding: 0px 0px 0px;
    position: fixed;
    width: 100%;
    z-index: 10;
    top:0;
}

.header-change {
    background-color: #fff;
    transition: 0.2s;
}


.header-change-op {
    background-color: rgba(255, 255, 255, 0.7);
    transition: 0.2s;
}



#header.bb {
    border-bottom: 1px solid #eeeeee;
}
#header .wrap {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	padding:0%;
	height:70px;
}
#header .wrap ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	position: relative;

}

#header .wrap ul li {
    font-size: 95%;
    line-height:70px;
    position:relative;
}

#header .wrap ul li a{
    display: block;
    height: 100%;
    width: 100%;
}

#header .wrap ul li.has-child::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 33px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #6A3906;
  border-right: 2px solid #6A3906;
  transform: rotate(135deg);
}

#header .wrap ul li:not(:last-child) {
    margin: 0 60px 0 0;
}

#nav_pc {
    position: absolute;
    right: 25px;
}

#header .wrap ul li ul{
	position: absolute;
	top:70px;
	background-color:#fff;
    transform:scaleY(0);
    transform-origin: center top;
    transition: all .5s;
	line-height:50px;
	display:flex;
    flex-flow: column;
    align-items: flex-start;
    margin: 0 -7px;
    padding: 0px 20px 0px 15px;

}

/*hoverしたら表示*/
#header .wrap li:hover > ul,
#header .wrap li ul li:hover > ul,
#header .wrap li:active > ul,
#header .wrap li ul li:active > ul{
    transform:scaleY(1);

}


#header .wrap ul li ul li{
    margin:0;
    width:120px;

}

#header .wrap ul li ul li:not(:last-child) {
    margin:0;
}

@media screen and (max-width:1096px) {
	#header {
		text-align: center;

	}
	#header .wrap {
		width: 100%;
	}
	
	#header .logo {
       height:100%;
       margin-left:50px;
       border-left:1px solid #dcdcdc;
       display: flex;
       align-items: center;
}

}


/* sp_nav
-------------------------------------------------------*/
@media screen and (max-width:1096px) {
/* toggle_menu */

#header #btn_nav {
position: fixed;
top: 20px;
left: 10px;
z-index: 999;
cursor: pointer;
display: flex;
flex-flow: column;
justify-content: space-between;
height: 18px;
padding: 0 0 15px;
}

#header #btn_nav span {
display: inline-block;
background: #333;
width: 25px;
height: 3px;
transition: .7s;
position: relative;
}

#header #btn_nav.active span {
background: #fff;
transform: translateY(8px) rotate(225deg);
}

#header #btn_nav.active span:nth-child(2) {
transform: scaleX(0);
}

#header #btn_nav.active span:last-child {
transform: translateY(-8px) rotate(-225deg);
}

#header #btn_nav::after {
content: "MENU";
position: absolute;
bottom: 0;
left: 50%;
transform: translate(-50%,0);
font-size: 75%;
color: #333;
transition: .5s;
}

#header #btn_nav.active::after {
content: "CLOSE";
color: #fff;
}

#header #nav_sp ul,
#header #nav_sp ul::after {
position: fixed;
top: 0;
height: 100vh;
width: 100%;

}

#header #nav_sp ul {
display: flex;
flex-flow: column;
justify-content:flex-start;
overflow: auto;
text-align: center;
background: rgba(0,0,0,0.6);
right: -100%;
z-index: 11;
transition: 0.4s;
transition-delay: 0.4s;

}

#header #nav_sp ul::after {
content: "";
background: rgba(0,0,0,0.5);
left: -100%;
z-index: -1;
transition: 0.7s;
transition-delay: 0.7s;


}

#header #nav_sp ul.active {
right: 0;

}
#header #nav_sp ul.active::after {
left: 0;

}

#header #nav_sp ul li:first-child {
border-top: 1px solid #666;
}

#header #nav_sp ul li {
border-bottom: 1px solid #666;
margin:0;
width:70%;
font-size:1.0em;
height: 60px;
position:relative;

}

#header #nav_sp ul li a {
display: block;
color: #fff;


}

#header #nav_sp ul li.has-child::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 33px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}


#header #nav_sp ul li.child{
  font-size:0.9em;

}

}
/* tel
-------------------------------------------------------*/
.tel {
  width:280px;
  height:91px;
  color:#333;
  position:fixed;
  top:90px;
  right:0px;
  z-index:10;

}

.top-Box {
  padding-top:3px;
  font-size:13px;
  font-weight:bold;
  margin-left:70px;
  margin-top:6px;
    
}

.left-Box {
  margin-top: 6px;
  float: left;
  font-size: 30px;
  margin-left: 15px;
}

.left-Box::before {
    content: "\f095";
    font-family: FontAwesome;
    padding-right: 10px;
}

.right-Box {
  padding-top:8px;
  font-size:25px;
  font-weight:bold;
  float:left;
  font-family: 'Roboto', sans-serif;
}

.under-Box {
  text-align:center;
  clear:both;
     
}

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

.tel {
   top: 0;
}

.top-Box {
   font-weight: normal;
   margin-left:0;
}
    
}

@media screen and (max-width:480px) {
.tel {
  width:auto;
  height:auto;
  color:#fff;
  background: #eb6100;
  border-radius: 3px;
  margin:10px 3px;
}

.top-Box {
   margin:0;
   margin-left:10px;
}

.right-Box {
  font-size: 16px;
}

.left-Box {
  font-size: 16px;

}

}

/* キャプション
-------------------------------------------------------*/
.caption-box {
    width: 100%;
    position:absolute;
    top:50%;

}

.caption-box-img{
   text-align:center;
  /* background-color: rgba(255, 255, 255, 0.7); */
   width: 380px;
   display: block;
   margin: 0px auto;
   padding: 35px 25px 25px 25px;
}

.caption-box img{
    width:300px;
}

.caption-box p{
  text-align: center;
  font-size: 3em;
  color: #fff;

}


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

.caption-box-img {
  width: 230px;
}
.caption-box img {
  width: 230px;
}

}

/* スクロールボタン
-------------------------------------------------------*/
.scroll-box {
    width: 100%;
    position:absolute;
    bottom:0;
    height: 100px;
    text-align: center;
    font-size: 1.5em;
}

.scroll-box p{
    font-family: 'Roboto+Condensed';
    color: #fff;
    padding: 0;
    margin: 0;

}

.scroll {
    width: 1px;
    height: 50px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    overflow: hidden;
}

.scroll::after {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #fff;
    -webkit-animation: scroll 1s linear 0s infinite;
    -moz-animation: scroll 1s linear 0s infinite;
    animation: scroll 1s linear 0s infinite;
}

@keyframes scroll {

0% {
    -webkit-transform: translate3d(0%, -100%, 0);
    -ms-transform: translate3d(0%, -100%, 0);
    transform: translate3d(0%, -100%, 0);
}
100% {
    -webkit-transform: translate3d(0%, 100%, 0);
    -ms-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
}
}

@-webkit-keyframes scroll {
0% {
    -webkit-transform: translate3d(0%, -100%, 0);
    -ms-transform: translate3d(0%, -100%, 0);
    transform: translate3d(0%, -100%, 0);
}
100% {
    -webkit-transform: translate3d(0%, 100%, 0);
    -ms-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
}
}
@-moz-keyframes scroll {
0% {
    -webkit-transform: translate3d(0%, -100%, 0);
    -ms-transform: translate3d(0%, -100%, 0);
    transform: translate3d(0%, -100%, 0);
}
100% {
    -webkit-transform: translate3d(0%, 100%, 0);
    -ms-transform: translate3d(0%, 100%, 0);
    transform: translate3d(0%, 100%, 0);
}
}

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

.scroll-box p{
    display:none;
}
}

/* 　スクロール見出し */
.scroll-area {
	position:relative;
	padding:16px 0;
	background: -moz-linear-gradient(top, #F0F0F0, #FFF);
    background: -webkit-linear-gradient(top, #F0F0F0, #FFF);
    background: linear-gradient(to bottom, #F0F0F0, #FFF);
}
.scroll-area p{
    margin:1%;
}
.scroll-area-box {
	position: relative;
	width:100%;
	font-weight:bold;
	animation:scroll-area 12s linear infinite;
	z-index: 2;
}

@keyframes scroll-area{
	0% { transform:translateX(1900px); }
	100% { transform:translateX(-1900px); }
}

.scroll-area-box p.scroll-area-first {
	font-size:2.5rem;
	font-family: 'Klee One', cursive;
	font-weight:700;
	color:#AEABAB;
	white-space: nowrap;
	
}


.scroll-area-box p.scroll-area-second {
	font-size:6rem;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	color:#AEABAB;
	white-space: nowrap;
	
}

.scroll-area-box p.scroll-area-third {
	font-size:4.5rem;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	color:#E5E5E5;
	white-space: nowrap;
	text-align:center;
	
}

.scroll-area .scroll-area-inner {
	position:absolute;
	top:-80px;
	right:0px;
	width: 40%;
	height: 450px;
	background: rgba(28,28,28,0.9);
	font-size:1.2em;
	color:#FFF;
	padding:6%;
	box-sizing: border-box;
	z-index:3;
}

.scroll-area .scroll-area-line {
	position:absolute;
	top:-30px;
	right:2%;
	width: 35%;
	height: 350px;
	z-index:3;
	border:1px solid #fff;
}


.scroll-area .scroll-area-back {
	position:absolute;
	top:-80px;
	right:0px;
	width: 40%;
	height: 450px;
	background: #1C1C1C;
	z-index:1;
}

.scroll-area .scroll-area-inner .strong {
	font-size:2rem;
}

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

.scroll-area .scroll-area-inner {
  padding:8%;

}

.scroll-area .scroll-area-inner .strong {
	font-size:1.5rem;
}

.scroll-area .scroll-area-inner p {
	font-size:1rem;

}
}

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

.scroll-area-box {
	animation:none;
}

.scroll-area .scroll-area-inner {
	position: static;
	width:90%;
	height:100%;
	padding:5%;
	display: block;
    margin: 0 auto;
}

.scroll-area .scroll-area-line {
    display:none;
}

.scroll-area-box p.scroll-area-first {
	font-size:1.0rem;
	text-align:center;
	
}


.scroll-area-box p.scroll-area-second {
	font-size:1.5rem;
	text-align:center;
	
}

.scroll-area-box p.scroll-area-third {
	font-size:1.3rem;
	text-align:center;
	color: #BFBEBE;
}

.scroll-area .scroll-area-back {
    display:none;
}
}
@media screen and (max-width:480px) {

.scroll-area .scroll-area-inner p {
	font-size:0.8em;

}

.scroll-area .scroll-area-back {
  top: -4px;
  height: 100px;
}

}


/* お知らせ
-------------------------------------------------------*/
#topics .box {
    padding: 40px 30px 40px;
}

#topics .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
}

#topics .h2plus{
     text-align:center;

}


.topics {
        margin:0 auto;
        max-width:1200px;
}

.topics-outer {
        margin-top:100px;
}


.topics-inner {
        list-style:none;

}

.topics-status {
        border: 1px solid #333;
        padding:1px 25px 1px 25px;
        margin-left:4%;
        margin-right:2%;
        width:50px;
        display:inline-block;
}

.topics-status-single {
        border: 1px solid #333;
        padding:1px 25px 1px 25px;
        margin-left:4%;
        margin-right:2%;
}


.topics-title {
    font-size:1.2em;
    border-bottom:2px solid #333;
     margin:1%;
     padding:1%;
        
}

.topics-title p:nth-child(1){
    text-align:center;
    font-weight:bold;        
}


.topics-title p:nth-child(2){
    text-align:right;
    margin-top:20px;       
}

.topics-tablenav {
    text-align:right;
    margin-right:10px;
    padding-bottom:10px;
}

.topics-page-pn {
    margin-left:10px;
    border-bottom:3px solid #333;

    
}

.topics-page-numbers {
    margin-left:5px;
}

.topics-current {
    border-bottom:3px solid #333;
}

.topics a{
    text-decoration:none;
    
}

.topics-inner-box {
    padding: 10px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.topics-inner-box ul {
    width: 100%;
    position: relative;
}
 
.topics-inner-box ul li {
    width: 100%;
   /* display: none; */
   margin:1%;
   border-bottom: 1px solid #cfcfcf;
   padding: 1%;
}

.topics-more-btn {
   font-size:14px;
   z-index: 999;
   width:26px;
   margin-left:auto;
   margin-bottom:7px;

}

.topics-content {
    margin:1%;
    padding:1%;
        
}

.topics-content img{
    height:100%;
        
}


.square-btn {
   margin-left: 12px;
   position: absolute;
   margin-top: -3px;

}

.box-wrap{
  position: relative;

  width: 25px;
  height:25px;
}

.boxtext{
  margin-left:-60px;
  padding-top:3px;
}

.boxtext:hover{
  font-weight:bold;
}

.btn-box{
  position: absolute;

  /* 要素の大きさ 分割数によって調整が必要 */
  width: 50%;
  height: 50%;
  border: 1px solid #fff;
  background-color:#333;

  box-sizing: border-box;

  /* アニメーション */
  transition: transform 0.5s;
}

.tl{
  /* 分割数によって調整が必要 */
  top: 0;
  left: 0;
  background-position: top left;

  transform: rotate(90deg);
}

.tr{
  /* 分割数によって調整が必要 */
  top: 0;
  right: 0;
  background-position: top right;

  transform: rotate(180deg);
}

.br{
  /* 分割数によって調整が必要 */
  bottom: 0;
  right: 0;
  background-position: bottom right;

  transform: rotate(270deg);
}

.bl{
  /* 分割数によって調整が必要 */
  bottom: 0;
  left: 0;
  background-position: bottom left;

  transform: rotate(360deg);
}

.box-wrap:hover > .btn-box{
  transform: none;
}



/*---動くオブジェクト                                                         */

.sprite-square-right {
    width: 10px;
    height: 10px;
    position:absolute;
    background-color:#333;
}

@keyframes sprite-square-right {
  to {
    background-position: 0 0;
  }

}

.move-square-right {
   animation: move-square-right 2s; 
   animation-iteration-count: infinite;
   animation-timing-function:linear;
  -webkit-animation: move-square-right 2s;
  -webkit-animation-iteration-count: infinite; 
  -webkit-animation-timing-function:linear;

}
 
@keyframes move-square-right {

  0%    { -webkit-transform:  translate(100%, 0) ;   } 
  25%   { -webkit-transform:  translate(75%, 120px);   }
  50%   { -webkit-transform:  translate(50%, 80px);   }
  75%   { -webkit-transform:  translate(25%, 120px);   }
  100%  { -webkit-transform:  translate(0%, 0);   } 
}

.sprite-square-left {
    width: 10px;
    height: 10px;
    position:absolute;
    background-color:#333;
}

@keyframes sprite-square-left {
  to {
    background-position: 0 0;
  }

}

.move-square-left {
   animation: move-square-left 2s; 
   animation-iteration-count: infinite;
   animation-timing-function:linear;
  -webkit-animation: move-square-left 2s; /* Safari & Chrome */
  -webkit-animation-iteration-count: infinite; 
  -webkit-animation-timing-function:linear;

}
 
@keyframes move-square-left {

  0%    { -webkit-transform:  translate(0%, 80px) ;   } 
  25%   { -webkit-transform:  translate(25%, 120px);   }
  50%   { -webkit-transform:  translate(50%, 80px);   }
  75%   { -webkit-transform:  translate(75%, 120px);   }
  100%  { -webkit-transform:  translate(100%, 0);   } 
}

.page-nav {
    text-align:right;
    margin-right:10px;
    padding-bottom:10px;
}

.page-pn {
    margin-left:10px;
    border-bottom:3px solid #333;

    
}

.page-numbers {
    margin-left:5px;
}

.current {
    border-bottom:3px solid #333;
}

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

.topics-title {

  display: block;
  text-align: left;
  font-size: 90%;
  padding:2%;
}

.topics-status {
  font-size: 90%;
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
}

.topics-inner-box ul li {
  padding-top: 1%;
}

}

/* footer
-------------------------------------------------------*/
#footer {
	text-align: center;
    background-color:#fff;
}

#footer .logo {
    margin: 0 0 30px;
}
#footer .navi {
    margin: 0 0 150px;
}
#footer .navi ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#footer .navi ul li {
    font-size: 90%;
    position:relative;
    margin: 0 55px 0 0;
}

#footer .navi ul li:last-child {
    margin: 0 0 0 0;
}


#footer .navi ul li.has-child::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 6px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #6A3906;
  border-right: 2px solid #6A3906;
  transform: rotate(135deg);
}

#footer .navi ul li ul{
	position: absolute;
	top:30px;
	display:flex;
    flex-flow: column;
    align-items: flex-start;

}

#footer .navi ul li ul li{
	width: 105px;
	margin: 3px;
    text-align: left;
    font-size: 0.9em;;
}

#footer .navi ul li ul li:last-child{
	margin: 3px;
}


#footer .sns ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}

#footer .sns ul li {
    margin: 0 30px 30px 0;
    font-size: 2.5em;
}

#footer .sns ul li:last-child {
    margin: 0 0 30px 0;

}


#footer .copy {
	font-size: 0.7em;
}
#footer.gray {
    background: #f5f2f2;
}
@media screen and (max-width:768px) {
#footer {
		padding: 30px 20px 30px;
}
#footer .navi ul {
        display: block;
        width:60%;
        margin:0 auto;
}
#footer .navi ul li {
     font-size: 1em;
}
#footer .navi ul li {
    margin: 10px;
}

#footer .navi ul li.has-child::after {
   right: 30px;
}

#footer .navi ul li ul {
  position:relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  top:0;
}

#footer .navi ul li ul li{
  text-align:center;
  font-size:0.9em;
}

#footer .navi ul li ul li:last-child{
 }


#footer .navi {
  margin: 0 0 50px;
}

}

/* index
-------------------------------------------------------*/
#index #area01.area {
    padding: 0;
}

#index #area01 .box {
    padding: 40px 30px 40px;
}

#index #area01 .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
    z-index: 1;
}

#index #area01 .h2plus{
     text-align:center;

}


#index #area01 .item-box {
    max-width: 1400px;
    margin: 0 auto;
}
#index #area01 ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
}
#index #area01 ul li {
    width: 31%;
    box-sizing: border-box;
    overflow:hidden;

}
#index #area01 ul li:not(:nth-child(3n)) {
    margin: 0 2% 0 0;
}
#index #area01 ul li .img {
    text-align: center;
    margin: 0 0 20px;

}

#index #area01 .item-box-img {
}


#index #area01 ul li .ttl {
    text-align: center;
    font-size: 140%;
    margin: 0 0 20px;

}
#index #area01 ul li .ttl span {
    display: block;
    font-size: 60%;
    margin: 20px 0;
}
#index #area01 ul li .txt {
    margin: 0 50px 30px;
}
#index #area01 ul li .more {
    background: #eb6100;
    border-radius: 3px;
    box-sizing: border-box;
    width: 160px;
    text-align: center;
    margin: 0 auto;
    padding: 5px 0;
    height: 35px;

}
#index #area01 ul li .more a {
    color: #fff;
    font-size: 90%;
    vertical-align: text-top;
    display: block;
}

#index #area02 {
    background-color:#FCFCFC;
}

#index #area02 .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
    z-index: 1;
}

#index #area02 .h2plus{
     text-align:center;

}

#index #area02 .item-box {
    max-width: 960px;
    margin: 0 auto;
}

#index #area02 .box{
     padding: 40px 30px 40px;
}

#index #area02 .more {
  background: #eb6100;
  border-radius: 3px;
  box-sizing: border-box;
  width: 270px;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  margin-top:50px;

}

#index #area02 .more a {
  color: #fff;
  font-size: 90%;
  vertical-align: text-top;
  display:block;

}


#inline_content01 {
  padding:5%;
  margin:0 auto;
  color:#ffffff;
  font-family: 'Zen Kurenaido', sans-serif;
}

#inline_content01 h2{
  font-size:2em;
  text-align:center;
  font-weight:bold;


}

#inline_content02 {
  padding:5%;
  margin:0 auto;
  color:#ffffff;
  font-family: 'Zen Kurenaido', sans-serif;
}

#inline_content02 h2{
  font-size:2em;
  text-align:center;
  font-weight:bold;


}

#inline_content03 {
  padding:5%;
  margin:0 auto;
  color:#ffffff;
  font-family: 'Zen Kurenaido', sans-serif;
}

#inline_content03 h2{
  font-size:2em;
  text-align:center;
  font-weight:bold;


}

#inline_content04 {
  padding:5%;
  margin:0 auto;
  color:#ffffff;
  font-family: 'Zen Kurenaido', sans-serif;
}

#inline_content04 h2{
  font-size:2em;
  text-align:center;
  font-weight:bold;


}


.inline-box{
 display:flex;
 justify-content: center;
 align-items: center;

}


.inline-box-txt{
  width:70%;
  font-size: 1.5em;
  line-height: 2.0;
  display: block;
  margin: 5% auto;

}

.inline-box-txt span{
  font-size:1.2em;
  font-weight:bold;
}

.inline-box-txt-flex{
  width:70%;
  margin:10px auto;
  display:flex;
}

.inline-box-txt-flex-box{
  width:50%;
  margin: 2%;
  margin-top: -10px;
}

 
#index #area03 .box {
  padding: 40px 30px 40px;
}
  
#index #area03 .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
    z-index: 1;
}

#index #area03 .h2plus{
     text-align:center;

}

#index #area03 .news {
    max-width:1200px;
    margin:0 auto;
}

#index #area03 .news-inner a {
    list-style:none;
    text-decoration: none;
   
}

#index #area03 .news-more-btn {
   font-size:14px;
   z-index: 999;
   width:26px;
   margin-left:auto;
   margin-bottom:7px;

}

#index #area03 .news-more-btn a{
    text-decoration:none;
    
}

#index #area03 ul{
    display:flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

#index #area03 ul li{
    max-width: 25%;
}

#index #area03 ul li a {
  text-align: left;
  display:block;
  padding:10px;
}

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

#index #area01 ul li {
    width: 33%;
}

#index #area01 ul li:not(:nth-child(3n)){
    margin:0;
}

    
}

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

#index #area01 ul {
    flex-flow: column;
}
#index #area01 ul li {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
#index #area01 ul li .img {
    margin: 0 0 10px;
}
#index #area01 ul li .ttl {
    margin: 0 0 10px;
}
#index #area01 ul li .ttl span {
    margin: 10px 0;
}
#index #area01 ul li .txt {
    margin: 0 0 20px;
}

#index #area01 ul li .more {
    width: 270px;
    padding: 10px 0;
    margin-top: 50px;

}

#index #area03 ul {
    flex-flow: column;
}

#index #area03 ul li {
    max-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}



}

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


#index #area01 .box {
  padding:20px 0 0 0 ;
}

#index #area02 .box {
  padding:20px 0 20px 0;
}

#index #area03 .box {
  padding:10px;
}

#inline_content01 {
  padding:5%;
  margin:0 auto;
  color:#ffffff;
  font-family: 'Zen Kurenaido', sans-serif;
}

#inline_content01 h2{
  font-size:1.2em;

}

#inline_content02 h2{
  font-size:1.2em;

}

#inline_content03 h2{
  font-size:1.2em;

}

#inline_content04 h2{
  font-size:1.2em;

}

.inline-box-txt{
   width:100%;
   font-size: 0.9em;

}

.inline-box-txt-flex {
  display: block;
  width:100%;
}

.inline-box-txt-flex-box {
  margin-top: 10px;
  font-size: 0.9em;
  width:100%;
}

}

/* contact-plus
-------------------------------------------------------*/
#contact-plus {
    background-color:#005e3c;
    background-image:url('../img/index/contact_back.png');
}

#contact-plus h2{
    font-size:2em;
    color:#fff;
}


#contact-plus .more {
    border: 1px solid #fff;
    border-radius: 3px;
    box-sizing: border-box;
    width: 270px;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
}

#contact-plus .more a {
    color: #fff;
    font-size: 120%;
    display: block;
    font-family: 'Noto Sans JP','Noto Sans KR', sans-serif;
}



/* profile
-------------------------------------------------------*/
#profile-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#profile-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#profile-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#profile .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}

#top-message .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#top-message .h2plus{
     text-align:center;

}

#top-message .box{
     padding: 40px 30px 40px;
}

#top-message .message-box{
     display:flex;
     margin-top: 30px;
     padding: 40px 30px 40px;
     align-items: center;
     background-color: #eaeaea;
}

#top-message .message-text{
     width:100%;
     line-height:3.0;
     margin:1%;
     font-family: 'Zen Kurenaido', sans-serif;
     font-size:1.2em;
}

/*#top-message .message-img{
     width:20%;
}*/

#outline .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#outline .h2plus{
     text-align:center;

}

#outline .box{
     padding: 40px 30px 40px;
}

#outline .outline-box{

     background-color:#fcfcfc;
     padding: 40px 30px 40px;
}

#outline .outline-box-inner{
     margin:0 auto;
     width:60%;
     display:flex;
     line-height: 3.5;
     border-bottom: 1px solid #e3e1e1;

}

#outline .outline-box-inner:nth-child(2) {
     border-bottom: none

}


#outline .outline-box-inner-address{
     display:flex;
     width:100%;
     line-height:2.0;

}


#outline .outline-box-inner a{
    color:#eb6100;
}


#outline .outline-box-inner-box1{
    width: 20%;
    margin:0;
}

#outline .outline-box-inner-box2{
    width: 80%;
    margin:0;
}

#outline .outline-box-inner-box3{
    width: 20%;
    margin:0;
}

#outline .outline-box-inner-box4{
    width: 60%;
    margin:0;
}

#introduction .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#introduction .h2plus{
     text-align:center;

}

#introduction h3{
     text-align:center;
     border: 1px solid;
     width: 690px;
     margin: 10px auto;
     padding: 10px;

}

#introduction .box{
     padding: 40px 30px 40px;
}

#introduction .introduction-box{

     background-color:#fcfcfc;
     padding: 10px 30px 10px;
}

#introduction .introduction-box-inner{
     margin:0 auto;
     display:flex;
     justify-content: center;
     width:690px;

}

#introduction .introduction-box-inner-box1{
    width: 36%;
    margin:2%;
}

#introduction .introduction-box-inner-box2{
    width: 66%;
    margin:2%;
    
}

#philosophy .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#philosophy .h2plus{
     text-align:center;

}

#philosophy .box{
     padding: 40px 30px 40px;
}

#philosophy .philosophy-box{
     padding: 20px 10px 20px;
     background: linear-gradient(90deg,#005e3c 0%,#005e3c 50%,#eb6100 50%,#eb6100 50%);
}

#philosophy .philosophy-box-inner{
     margin:0 auto;
     text-align: center;
     background-color: #fff;
     width:50%;
     padding:15px;
     font-size:2em;
     font-family: 'Kosugi Maru', sans-serif;

}

#philosophy .philosophy-box-under{
     padding: 40px 30px 40px;
     margin:0 auto;
     width:50%;
     line-height:1.8;

}


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

#top-message .message-text{
     line-height:2.0;

}

#outline .outline-box-inner{
     line-height:2.0;
     display: block;

}

#outline .outline-box-inner-address{
     display: block;

}

#outline .outline-box-inner-box1{
    width: 100%;

}

#outline .outline-box-inner-box2{
    width: 100%;

}

#outline .outline-box-inner-box3{
    width: 100%;

}

#outline .outline-box-inner-box4{
    width: 100%;

}


}

@media screen and (max-width:768px) {
#introduction h3{
     width: 100%;
     padding:10px 0px;
}

#introduction .introduction-box-inner{
     width:100%;

}

}



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

#profile-top .top-img{
  font-size: 1.0em;
}

#profile-top .icon {
  font-size:2em;
}


#profile-top .center{
   font-size:1.5em;   
}

#top-message .message-box{
     display:block;
}

#top-message .box {
  padding:20px 0 0 0 ;
}

#top-message .message-text{
     width:100%;
     line-height:1.3;

}

/*#top-message .message-img{
     width:50%;
     margin:0 auto;
} */

#outline .outline-box-inner{

     width:100%;
}

#philosophy .philosophy-box-inner{
     width:90%;
     font-size:1.5em;


}

#philosophy .philosophy-box-under{
     width:90%;
     padding: 40px 0px 40px;

}


}

/* Q＆A
-------------------------------------------------------*/
#qa-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#qa-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#qa-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#qa-top .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}


#qa .box{
     padding: 40px 30px 40px;
}


#qa .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#qa .h2plus{
     text-align:center;

}

#qa .accordion-box{
    max-width:940px;
	margin: 10px auto 10px;

}

#qa .accordionlist {
    display:block;
    background: #fffff;
    border-top: 1px solid #333;

}

#qa .accordionlist:hover {
    background-color: #dbdbdb;
    color:#333;
    cursor:pointer;
}

#qa .accordionlist:first-child{
    border-top: none !important;
}

#qa .question-box{
     display:flex;
     padding:10px;
     cursor: pointer;
}

#qa .question-box li{
     margin-right:10px;
    
}

#qa .question-box li:nth-child(1){
     width:10%;
     
    
}

#qa .question-box li:nth-child(2){
     width:83%;
    
}

#qa .answer{
    display:none;
	background: #fff;
	padding:10px 5px 10px 5px;
	font-size:90%;
    margin-bottom:0;
}

#qa .accordion_icon,
#qa .accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

#qa .accordion_icon {
	position: relative;
	width: 24px;
	margin-top:8px;
}

#qa .accordion_icon span {
	position: absolute;
    left: 6px;
    width: 50%;
	height: 2px;
    background-color: #333;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}

#qa .accordion_icon span:nth-of-type(1) {
    top: 5px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
#qa .accordion_icon span:nth-of-type(2) {
    top: 5px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
/*＋、－切り替え*/
#qa .accordion_icon.active span:nth-of-type(1) {
	display:none;
}
#qa .accordion_icon.active span:nth-of-type(2) {
	top: 5px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

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

#qa .top-img{
  font-size: 1.0em;
}

}

/* 事業内容
-------------------------------------------------------*/
#service-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#service-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#service-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#service .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}



#oem .box{
     padding: 40px 30px 40px;
}


#oem .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#oem .h2plus{
     text-align:center;

}

#oem .oem-box{
     padding: 40px 30px 40px;

}

#oem .oem-box h3{
    text-align:center;
    font-size:2em;
    padding-bottom:25px;
}

#oem .oem-box h3 span{
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 7px;
    margin-right: 7px;
}

#oem .oem-inner-box{
     display:flex;
     align-items: center;
}


#oem .oem-inner-box-img{
     width:30%;
}

#oem .oem-inner-box-text{
     width:70%;
     background-color:#ffffff;
     padding: 2%;
     font-size: 1.5em;
     line-height: 1.8;
     display:flex;
     font-family: 'Zen Kurenaido', sans-serif;
     font-weight:bold;
}

#oem .oem-inner-box-text ul {
  display: block;
}

#oem .oem-inner-box-text ul {
  list-style: none;
}
#oem .oem-inner-box-text li {
  position: relative;
  padding-left: 35px;
  border-bottom:1px solid #333;
}
#oem .oem-inner-box-text li:before {
     font-family: FontAwesome;
     content: "\f058";
     color: #ee2d2d;
     left: 0;
     position: absolute;
}

#oem .oem-inner-box-01{
   max-width:1000px;
   display:block;
   margin:10px auto 0;
   padding:10px;
   text-align: center;
   font-size: 1.5em;
   background-color:#005e3c;
   color: #fff;
}


#oem .oem-inner-box-02{
   background-color:#eb6100;
   color:#ffffff;
   max-width:1000px;
   display:block;
   margin:0 auto;
   padding:10px;
}

#oem .oem-inner-box-02 p:nth-child(1){
    font-size:2em;
    text-align:center;
    font-family: 'Klee One', cursive;
}
#oem .oem-inner-box-02 p:nth-child(2){
    font-size:2em;
    text-align:center;
    font-family: 'Montserrat', sans-serif;
}

#oem .oem-inner-box-02 p:nth-child(3){
    font-size:1.5em;
    text-align:center;
}

#oem .oem-inner-box-02 p:nth-child(4){
    font-size:1.5em;
    text-align:center;
    font-family: 'Montserrat', sans-serif;

}

#oem .triangle-01{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 57px 175px 0 175px;
    border-color: #005e3c transparent transparent transparent;
    display: block;
    margin: 40px auto;
}

#oem .triangle-02{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 57px 150px 0 150px;
    border-color: #eb6100 transparent transparent transparent;
    display: block;
    margin: 40px auto;
}

#oem .triangle-03{
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 57px 120px 0 120px;
    border-color: #eb6100 transparent transparent transparent;
    display: block;
    margin: 40px auto;
}


#oem .oem-inner-box-03{
   display:block;
   margin:0 auto;
   padding:10px;
   max-width: 1400px;
}


#oem .oem-inner-box-item ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
#oem .oem-inner-box-item ul li {
    width: 31%;
    box-sizing: border-box;
    overflow:hidden;
    text-align:center;
    border: 3px solid #005e3c;

}
#oem .oem-inner-box-item ul li:not(:nth-child(3n)) {
    margin: 0 2% 0 0;
}

#oem .oem-inner-box-item ul li .img {
    text-align: center;
    padding: 4% 4% 0 4%;

}

#oem .oem-inner-box-item .item-box-img {
}

#oem .oem-inner-box-item ul li .no {
    text-align: center;
    font-size: 2.0em;
    padding: 1%;
    background-color: #005e3c;
    color:#ffffff;

}

#oem .oem-inner-box-item ul li .ttl {
    text-align: center;
    padding-top: 4%;

}

#oem .oem-inner-box-item ul li .ttl p:nth-child(1){
    font-size: 1.0em;
    font-family: 'Kosugi Maru', sans-serif;

}

#oem .oem-inner-box-item ul li .ttl p:nth-child(2){
    font-size: 2.0em;
    font-weight:bold;
    color: #eb6100;
    font-family: 'Kosugi Maru', sans-serif;

}

#oem .oem-inner-box-item ul li .txt {
    text-align:left;
    padding: 4%;
}

#oem .oem-inner-box-desire {
    position: relative;
    padding: 20px;
    background-color: #eb6100;
    border-radius: 15px;
    color: #ffffff;
    width: 80%;
    margin: 0 auto;

}

#oem .oem-inner-box-desire::before {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    background-color: #eb6100;
    left: -35px;
    bottom: 15px;
    width: 30px;
    height: 30px;
}

#oem .oem-inner-box-desire::after {
    content: '';
    position: absolute;
    display: block;
    border-radius: 50%;
    background-color: #eb6100;
    left: -55px;
    bottom: 10px;
    width: 15px;
    height: 15px;
}


#oem .oem-inner-box-04{
   display:block;
   margin:0 auto;
   padding:10px;
   max-width: 1000px;
}

#oem .oem-inner-box-flow  {
	padding:1em;
	width:80%;
    position: relative;
    border:5px solid #005e3c;
    text-align:center;
    display:block;
    margin:0 auto 50px;   
}

#oem .oem-inner-box-flow  p{
    padding: 15px 10px 20px 10px;
}

#oem .oem-inner-box-flow  p:nth-child(2){
    font-size:1.5em;
    border-bottom:1px solid  #005e3c;
}

#oem .oem-inner-box-flow-step {
    position: absolute;
    top: 45px;
    left: 10px;
    background-color: #eb6100;
    padding: 10px;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 55px;
    line-height: 3;
}

#oem .oem-inner-box-flow:after {
	content: ' ';
    position: absolute;
    border-width: 30px;
    border-style:solid;
    border-top-color:#ffffff;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    top: 100%;
    left: 50%;
    margin-left: -30px;
 }

#oem .oem-inner-box-flow:before {
	content: ' ';
    position: absolute;
    border-width: 32px;
    border-style:solid;
    border-top-color:#005e3c;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    top: 110%;
    left: 50%;
    margin-left: -32px;
}

#oem .oem-inner-box-flow-end {
	padding:1em;
	width:80%;
    position: relative;
    border:5px solid #005e3c;
    text-align:center;
    display:block;
    margin:0 auto 50px;   
}

#oem .oem-inner-box-flow-end  p{
    padding: 15px 10px 20px 10px;
}

#oem .oem-inner-box-flow-end  p:nth-child(2){
    font-size:1.5em;
    border-bottom:1px solid  #005e3c;
}

#pro .box{
     padding: 40px 30px 40px;
}


#pro .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#pro .h2plus{
     text-align:center;

}

#pro .pro-box{
     margin-top: 30px;
     padding: 40px 30px 40px;

}

#pro .pro-inner-box-01{
   display:block;
   margin:0 auto;
   padding:10px;
   max-width: 1000px;
   display:flex;
   align-items: center;
}


#pro .pro-inner-box-img{
   width:50%;
}

#pro .pro-inner-box-text{
   width:50%;
}

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

#oem .oem-inner-box-flow-step {
   display:none;

}

}


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

#oem .oem-box {
   padding:0;
}


#oem .oem-inner-box {
  flex-direction: column-reverse;
}

#oem .oem-inner-box-text {
  font-size: 1.3em;
  width:100%;

}

#oem .oem-inner-box-item ul li {
  width: 100%;
}

#oem .oem-inner-box-item ul li:not(:nth-child(3n)) {
  margin: 0 0 0 0;
}

#oem .oem-inner-box-flow {
  width: 90%;
  padding:0;
}

#oem .oem-inner-box-flow-end {
  width: 90%;
  padding:0;
}


}

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

#service .top-img{
  font-size: 1.0em;
}

#service-top .icon {
  font-size:2em;
}


#service-top .center{
   font-size:1.5em;   
}


#oem .box {
   padding:10px;
}


#oem .oem-box h3 {
  font-size: 1.2em;
  padding-top: 25px;
}

#oem .oem-inner-box-text {
  font-size: 1.0em;
  width:100%;

}

#oem .oem-inner-box-text li::before {
  font-size:1.3em;
}

#oem .oem-inner-box-img {
  width: 80%;
}

#oem .oem-inner-box-01 {
  font-size: 1.2em;
}

#oem .oem-inner-box-02 {
  font-size: 0.7em;

}

#oem .triangle-01 {
  border-width: 57px 140px 0 140px;
}

#oem .oem-inner-box-desire::before {
  left: 17px;
  bottom: -38px;
}

#oem .oem-inner-box-desire::after {
  left: -5px;
  bottom: -36px;
}

#pro .pro-box {
  margin-top: 30px;
  padding: 0;
}

#pro .pro-inner-box-01 {
  flex-direction: column-reverse;
}

#pro .pro-inner-box-text {
  width: 100%;
}

#pro .pro-inner-box-img {
  width: 100%;
  margin:10px
}

}

/* 商品情報
-------------------------------------------------------*/
#product-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#product-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#product-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#product .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}


#product .box{
     padding: 40px 30px 40px;
}


#product .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#product .h2plus{
     text-align:center;

}

#product .data_item {
   display:block;
   margin:0 auto;
   padding:40px;
   max-width: 1400px;
}


#product .data_item ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
#product .data_item ul li {
    width: 31%;
    box-sizing: border-box;
    overflow:hidden;
    text-align:center;
    background-color:#fcfcfc;

}
#product .data_item ul li:not(:nth-child(3n)) {
    margin: 0 2% 0 0;
}

#product .data_item ul li .img {
    text-align: center;
    padding: 4% 4% 0 4%;

}

#product .data_item .ttl {
    font-size:1.5em;

}

#product .data_item .txt {
    text-align:left;
    padding:3%;

}

#product .product-outer {
    margin-top:100px;
}

#product .product-inner {
   max-width:1200px;
   margin:0 auto;
}

#product .procuct-inner-box {
   margin:50px;
}


#product .product-title {
   text-align:center;
   font-size:1.5em;
}

#product .product-content-flex {
   display:flex;
   align-items: center;
}

#product .product-content-inner-box {
   margin: 3%;
   width:50%;
}

#product .product-content-inner-box p{
   line-height: 2.0;
}

#product .product-content {
   margin: 3%;
}

#product .product-content span{
   font-size:1.5em;
}


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

#product-top .top-img{
  font-size: 1.0em;
}

#product-top .icon {
  font-size:2em;
}


#product-top .center{
   font-size:1.5em;   
}


#product .box {
  padding: 10px;
}

#product .data_item {
  margin: 10px 0;

}

#product .data_item ul {
    flex-direction: column;
}

#product .data_item ul li {
    width: 100%;
}

#product .procuct-inner-box {
   margin:10px;
}


#product .product-content-flex {
   flex-direction: column;
}

#product .product-content-inner-box {
   margin: 0;
   width:100%;
}

#product .product-content span{
   font-size:1.2em;
}



}


/* contact
-------------------------------------------------------*/
#contact-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#contact-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#contact-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#contact-top .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}


#contact .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#contact .h2plus {
  text-align: center;
  padding-bottom:20px;
}

#contact-text .box {
  padding: 40px 30px 40px;
}

#contact .contact-box {
	max-width: 50%;
    margin:0 auto;
}

#contact .txt_head {
	font-size: 120%;
	color: #f00;
	text-align: center;
	margin: -20px 0 30px;
	line-height: 1.3;
}
/* table_temp start */
#contact .table_temp {
	width: 100%;
}
#contact.contact_after .inner {
	padding: 0;
}
#contact .hissu {
	display: flex;
	padding:25px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .hissu>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .inner-box {
	width: 340px;
	text-align: left;
}
#contact .hissu .inner-box b,
#contact .hissu .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .hissu .inner-box p {
    top:40%;    
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .hissu .inner-box b::after,
#contact .hissu .inner-box p::after {
	content: "必須";
	background: #d97480;
}

#contact .nini {
	display: flex;
	padding:20px 5px;
	width: 100%;
	table-layout: fixed;
}
#contact .nini>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#contact .nini .inner-box b,
#contact .nini .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact .nini .inner-box p {
    top:40%;    
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}
#contact .nini .inner-box b::after,
#contact .nini .inner-box p::after {
	content: "任意";
	background: #777;
}

#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type=text], #contact select, #contact textarea {
	width: 100%;
}
#contact input[type=text], #contact select {
	height: 44px;
	background: #eeeeee;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
	background: #eeeeee;
}

#contact .box h3{
    font-size:1.2em;
    position: relative;
    text-align:center;
    margin:10px;
}

#contact .policy-text {
  height: 300px;
  overflow: auto;
  border:1px solid #a2a0a0;
  margin:10px 0;
}


#contact .check_area {
    text-align:center;
    background-color: #eee;
    padding: 10px;

}


#contact .check_area input[type=checkbox]{
    visibility:hidden;
}

#contact .label-checkbox{
      cursor: pointer;
      padding-right: 3px;
      font-weight: normal;
      font-size:14px;
}

#contact .label-checkbox .lever:before{
      content:"　";
      margin-right: 7px;
      position: relative;
      top: 0;
      padding: 0px 3px 0px 3px;
      background-color:#fff;
      border:1px solid #cccccc;
}

#contact .label-checkbox input[type=checkbox]:checked + .lever{

}

#contact .label-checkbox input[type=checkbox]:checked + .lever:before{
      content:"✔";
      color:#e60012;
      padding: 0px 6px 0px 3px;

}

#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}

#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}

#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 260px;
	height: 50px;
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
}
#contact .form_btn01 {
	background: #1b1b1b;
}
#contact .form_btn02 {
	background: #333;
}

#contactfinish p {
	text-align:center;
	font-size: 1.2em;
}

/* table_temp end */
@media screen and (max-width:768px) {
    #contact #area01.area {
        padding: 50px 20px 80px;
    }
	#contact .txt_head {
		font-size: 100%;
	}

    #contact .contact-box {
	   max-width: 100%;

    }

	/* table_temp start */
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact .hissu {
	    display:block;
    }
	#contact .hissu>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact .inner-box {
	    padding-top:0;
		width: 100%;
		font-size: 100%;
	}
	#contact .hissu .inner-box b::after,
    #contact .hissu .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	
	#contact .nini {
	    display:block;
    }
	#contact .nini>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}

	#contact .nini .inner-box b::after,
    #contact .nini .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	

	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	/* table_temp end */
}
/*contact.php css */
#contact .txt_rslt {
    display: flex;
	padding:20px 5px;
	width: 99%;
	table-layout: fixed;
}
#contact .txt_rslt>* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact .ask_box {
	width: 280px;
	text-align: left;
}
#contact .txt_answr {
	 display:flex;
}
@media screen and (max-width:768px) {
    #contact .txt_rslt {
    display: block;
    margin:0 auto;
    width:70%;
    }
    #contact .ask_box {
	    width: 210px;
    }
    #contact .txt_answr {
	 width:100%;
	 text-align:left;
    }
}

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

#contact-top .top-img{
  font-size: 1.0em;
}

#contact-top .icon {
  font-size:2em;
}


#contact-top .center{
   font-size:1.5em;   
}


}


/* privacy policy
-------------------------------------------------------*/
#pp-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#pp-top .center{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#pp .box{
     padding: 40px 30px 40px;
}


#pp .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#pp .h2plus{
     text-align:center;

}

#pp .pp-inner-box h3{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box{
   max-width: 940px;
   padding-bottom: 40px;
   margin: 0 auto;
}

#pp .pp-inner-box h4{
   font-weight:bold;
   padding:1%;
}

#pp .pp-inner-box-contents p{
   font-size:0.9em;
   margin:1%;
}

#pp .pp-inner-box-contents-box {
    margin: 0 auto;
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: 10px solid #fff;
    text-align:center;
    font-size:0.9em;

}

#pp .pp-inner-box-contents-box a{
    color: #fff;
}


#pp .pp-inner-box-contents-box-under {
    margin: 0 auto;
    max-width: 75%;
    word-wrap: break-word;
}

/* recruit
-------------------------------------------------------*/
.recruit-caption-box {
    width: 100%;
    position:absolute;
    top:80%;

}


.recruit-caption-box p{
  text-align: center;
  font-size: 3em;
  color: #fff;

}


#human .box h2{
    font-size:3em;
    position: relative;
    color:#fff;
}

#human .h2plus{
     text-align:center;
     color:#fff;

}

#human .box{
     padding: 40px 30px 40px;
     background-color:#eb6100;
}

#human .message-box{
     color:#fff;
}

#human .message-text{
     width:960px;
     margin:1%;
     font-size:3.0em;
     display: block;
     margin: 30px auto;
}

#human .message-box-inner-box{
     color:#fff;
     display:flex;
     margin:0 auto;
     width:960px;
}

#human .message-box-inner-box-text{
     width:50%;
     margin:1%;
     font-size:1.2em;
}


#human .message-img{
     width:960px;
     display:block;
     margin:0 auto;
}

#requirements .box{
     padding: 40px 30px 40px;

}


#requirements .box h2{
    font-size:3em;
    position: relative;
    font-family: 'Fjalla One', sans-serif;
}

#requirements .h2plus{
     text-align:center;

}

#requirements .requirements-box{
     padding: 40px 30px 40px;
}

#requirements .requirements-box-inner{
     margin:0 auto;
     width:60%;
     display:flex;
     border-bottom: 1px solid #e3e1e1;

}

#requirements .requirements-box-inner a{
    color:#eb6100;
}


#requirements .requirements-box-inner-box1{
    width: 20%;
    margin:0;
    padding:10px;
}

#requirements .requirements-box-inner-box2{
    width: 80%;
    margin:0;
    padding:10px;
}

#requirements .requirements-box-inner-box3{
    width: 20%;
    margin:0;
}

#requirements .requirements-box-inner-box4{
    width: 60%;
    margin:0;
}

#voice .box{
     padding: 40px 30px 40px;

}


#voice .box h2{
    font-size:3em;
    position: relative;
    font-family: 'Fjalla One', sans-serif;
}

#voice .h2plus{
     text-align:center;

}

#voice .voice-box{
     padding: 40px 30px 40px;
     max-width:960px;
     display:block;
     margin:0 auto;
     

}

#voice .voice-box-inner-box{
     display: flex;
     justify-content: center;
     align-items: center;
}


#voice .voice-img{
     width:50%;
     text-align:center;
     
     
}

#voice .voice-img img{
     width:50%;
     
}


#voice .voice-text{
     width:50%;
     
}

#voice .voice-text h3{
     font-size:2em;
     
}
#voice .voice-text h4{
     font-size:0.8em;
     text-align:right;
     margin:1%;
     
}

#voice .voice-text p{
     margin:1%;     
}

#flow {
     background-color:#f4f4f4;

}


#flow .box{
     padding: 40px 30px 40px;

}


#flow .box h2{
    font-size:3em;
    position: relative;
    font-family: 'Fjalla One', sans-serif;
}

#flow .h2plus{
     text-align:center;

}

#flow .flow-box{
   display:block;
   margin:0 auto;
   padding:10px;
   max-width: 1000px;
}

#flow .flow-box h3{
    text-align:center;
    font-size:2em;
    padding-bottom:25px;
}

#flow .flow-box h3 span{
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 7px;
    margin-right: 7px;
}

#flow .flow-inner-box{
     display:flex;
     align-items: center;
}


#flow .flow-inner-box-flow  {
	padding:1em;
	width:80%;
    position: relative;
    border:5px solid #005e3c;
    text-align:center;
    display:block;
    margin:0 auto 50px;   
}

#flow .flow-inner-box-flow  p{
    padding: 15px 10px 20px 10px;
}

#flow .flow-inner-box-flow  p:nth-child(2){
    font-size:1.5em;
    border-bottom:1px solid  #005e3c;
}

#flow .flow-inner-box-flow-step {
    position: absolute;
    top: 45px;
    left: 10px;
    background-color: #eb6100;
    padding: 10px;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 55px;
    line-height: 3;
}

#flow .flow-inner-box-flow:after {
	content: ' ';
    position: absolute;
    border-width: 30px;
    border-style:solid;
    border-top-color:#f4f4f4;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    top: 100%;
    left: 50%;
    margin-left: -30px;
 }

#flow .flow-inner-box-flow:before {
	content: ' ';
    position: absolute;
    border-width: 32px;
    border-style:solid;
    border-top-color:#005e3c;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    top: 110%;
    left: 50%;
    margin-left: -32px;
}

#flow .flow-inner-box-flow-end {
	padding:1em;
	width:80%;
    position: relative;
    border:5px solid #005e3c;
    text-align:center;
    display:block;
    margin:0 auto 50px;   
}

#flow .flow-inner-box-flow-end  p{
    padding: 15px 10px 20px 10px;
}

#flow .flow-inner-box-flow-end  p:nth-child(2){
    font-size:1.5em;
    border-bottom:1px solid  #005e3c;
}

#entry-plus {
    background-color:#eb6100;
    background-image: url('../img/index/entry_back.png');
    padding: 175px 20px;
    box-sizing: border-box;
    background-position: center;

}

#entry-plus h2{
    font-size:2em;
    color:#fff;
}


#entry-plus .more {
    border: 1px solid #fff;
    border-radius: 3px;
    box-sizing: border-box;
    width: 270px;
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
    background-color:#005e3c;
}

#entry-plus .more a {
    color: #fff;
    font-size: 120%;
    display: block;
    font-family: 'Noto Sans JP','Noto Sans KR', sans-serif;
}


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

#flow .flow-inner-box-flow-step {
   display:none;

}

.caption-box p {
  font-size: 3em;
}

}


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

.caption-box p {
  font-size: 1.5em;
}

#human .message-text{
     width:100%;
     font-size:1.5em;
}

#human .message-box-inner-box {
  width: 100%;
  flex-direction: column;
}

#human .message-box-inner-box-text {
  width: 100%;
}

#human .message-img {
  width: 100%;
}

#requirements .requirements-box {
  padding: 0px 30px 40px;
}

#requirements .requirements-box-inner-box1{
    width: 100%;
}

#requirements .requirements-box-inner-box2{
    width: 100%;
}


#requirements .requirements-box-inner {
  width: 100%;
  display:block;
}

#voice .voice-box {
  width: 100%;
  padding: 10px;
}

#voice .voice-box-inner-box {
  flex-direction: column;
  margin-top: 10px;
}

#voice .voice-img {
  width: 100%;

}

#voice .voice-img img {
  width: 80%;
}

#voice .voice-text {
  width: 80%;
}


#flow .flow-box {
   width:90%;
}

#flow .flow-inner-box-flow {
  width: 90%;
}

#flow .flow-inner-box-flow-end {
  width: 90%;

}

}

/* entry
-------------------------------------------------------*/
#entry-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#entry-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#entry-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#entry-top .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}


#entry .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#entry .h2plus {
  text-align: center;
  padding-bottom:20px;
}

#entry-text .box {
  padding: 40px 30px 40px;
}

#entry .entry-box {
	max-width: 50%;
    margin:0 auto;
}

#entry .txt_head {
	font-size: 120%;
	color: #f00;
	text-align: center;
	margin: -20px 0 30px;
	line-height: 1.3;
}

/* table_temp start */

#entry .table_temp {
	width: 100%;
}

#entry.entry_after .inner {
	padding: 0;
}

#entry .hissu {
	display: flex;
	padding:25px 5px;
	width: 100%;
	table-layout: fixed;
}

#entry .hissu >* {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#entry .inner-box {
	width: 340px;
	text-align: left;
}

#entry .ymd-box {
	width: 100%;
    display:flex;
    padding:0;
}

#entry .ymd-box p{
    margin-left:1%;
    margin-right:1%;
    line-height:2.8;
}


#entry .hissu .inner-box b,
#entry .hissu .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}

#entry .hissu .inner-box p {
    top:40%;    
}

#entry .hissu .inner-box b::after,
#entry .hissu .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}

#entry .hissu .inner-box b::after,
#entry .hissu .inner-box p::after {
	content: "必須";
	background: #d97480;
}

#entry .nini {
	display: flex;
	padding:20px 5px;
	width: 100%;
	table-layout: fixed;
}

#entry .nini >* {
	display: table-cell;
	vertical-align: middle;
	padding: 10px 10px;
	box-sizing: border-box;
	line-height: 1;
}

#entry .nini .inner-box b,
#entry .nini .inner-box p {
	display: block;
	position: relative;
	font-weight: normal;
}

#entry .nini .inner-box p {
    top:40%;    
}

#entry .nini .inner-box b::after,
#entry .nini .inner-box p::after {
	color: #fff;
	font-weight: 500;
	font-size: 75%;
	width: 34px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: -5px;
	bottom: 0;
	margin: auto;
    border-radius: 2px;
}

#entry .nini .inner-box b::after,
#entry .nini .inner-box p::after {
	content: "任意";
	background: #777;
}

#entry.entry_after tr {
	border-bottom: 1px solid #ccc;
}

#entry.entry_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}

#entry.entry_after tr th {
	color: #aaa;
}

#entry.entry_after tr td {
	font-weight: 500;
}

.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}

.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}

.error_messe >* {
	display: inline-block;
}

#entry input[type=text], #entry select, #entry textarea {
	width: 100%;
}

#entry input[type=text], #entry select {
	height: 47px;
	background: #eeeeee;
}

#entry select {
    margin:0;
}


#entry textarea {
	min-height: 150px;
	resize: vertical;
	background: #eeeeee;
}

#entry .box h3{
    font-size:1.2em;
    position: relative;
    text-align:center;
    margin:10px;
}


#entry .policy-text {
  height: 300px;
  overflow: auto;
  border:1px solid #a2a0a0;
  margin:10px 0;
}

#entry .check_area {
    text-align:center;
    background-color: #eee;
    padding: 10px;
}

#entry .check_area input[type=checkbox]{
    visibility:hidden;
}

#entry .label-checkbox{
      cursor: pointer;
      padding-right: 3px;
      font-weight: normal;
      font-size:14px;
}

#entry .label-checkbox .lever:before{
      content:"　";
      margin-right: 7px;
      position: relative;
      top: 0;
      padding: 0px 3px 0px 3px;
      background-color:#fff;
      border:1px solid #cccccc;
}

#entry .label-checkbox input[type=checkbox]:checked + .lever{

}

#entry .label-checkbox input[type=checkbox]:checked + .lever:before{
      content:"✔";
      color:#e60012;
      padding: 0px 6px 0px 3px;

}

#entry .txt_form {
	text-align: center;
	line-height: 1.3;
}

#entry .txt_form span {
	display: block;
}


::placeholder {
	color: #ccc;
}

#entry .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}

#entry .form_btn01,
#entry .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 260px;
	height: 50px;
	border: none;
	border-radius: 5px;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	font-size: 120%;
	color: #fff;
	line-height: 1;
}

#entry .form_btn01 {
	background: #1b1b1b;
}

#entry .form_btn02 {
	background: #333;
}

/* table_temp end */

@media screen and (max-width:768px) {
    #entry #area01.area {
        padding: 50px 20px 80px;
    }
	#entry .txt_head {
		font-size: 100%;
	}

    #entry .entry-box {
	   max-width: 100%;

    }

	/* table_temp start */
	#entry.entry_after tr:first-child {
		margin: 20px 0 0;
	}
	#entry .hissu {
	    display:block;
    }
	#entry .hissu >* {
		display: block;
		padding: 10px 5px;
		line-height: 1.3;
	}
	#entry .inner-box {
	    padding-top:0;
		width: 100%;
		font-size: 100%;
	}
	#entry .hissu .inner-box b::after,
    #entry .hissu .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	
	#entry .nini {
	    display:block;
    }
	#entry .nini >*{
		display: block;
		padding: 10px 5px;
		line-height: 1.3;
	}

	#entry .nini .inner-box b::after,
    #entry .nini .inner-box p::after{
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	

	#entry .radio_area label,
	#entry .check_area label {
		display: flex;
		align-items: center;
	}
	#entry .form_btn {
		flex-flow: column;
	}
	#entry .form_btn01,
	#entry .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	/* table_temp end */
}
/*entry.php css */
#entry .txt_rslt {
    display: flex;
	padding:20px 5px;
	width: 99%;
	table-layout: fixed;
}
#entry .txt_rslt >* {
	display: table-cell;
	vertical-align: middle;
	padding: 14px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#entry .ask_box {
	width: 280px;
	text-align: left;
}
#entry .txt_answr {
	 display:flex;
}
@media screen and (max-width:768px) {
    #entry .txt_rslt {
    display: block;
    margin:0 auto;
    width:70%;
    }
    #entry .ask_box {
	    width: 210px;
    }
    #entry .txt_answr {
	 width:100%;
	 text-align:left;
    }
}

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

#entry-top .top-img{
  font-size: 1.0em;
}

#entry-top .icon {
  font-size:2em;
}


#entry-top .center{
   font-size:1.5em;   
}


}

/* 健康経営の取り組み
-------------------------------------------------------*/
#mgmt-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#mgmt-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#mgmt-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#mgmt .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}

#mgmt .box{
     padding: 40px 30px 40px;
}


#mgmt .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#mgmt .box h4{
     font-size:1.3em;

}

#mgmt .h2plus{
     text-align:center;

}

#mgmt .mgmt-box{
     padding: 40px 30px 40px;
}

#mgmt .mgmt-inner-box{
	display:flex;
	justify-content: center;
	margin-bottom:20px;
}

#mgmt .mgmt-inner-box-text{
    font-size:1em;
	line-height:2.0;
	font-family: 'Kosugi Maru', sans-serif;
}

#mgmt .mgmt-inner-box-img{
	max-width:380px;
	padding:20px;
}

#mgmt .mgmt-inner-box-01{
	padding: 10px 0;
	margin: 0 calc(50% - 50vw);
	background: linear-gradient(90deg,#005e3c 0%,#005e3c 50%,#eb6100 50%,#eb6100 50%);
}

#mgmt .mgmt-inner-box-img-01,
#mgmt .mgmt-inner-box-img-02{
	width:30%;
	text-align:center;
}
#mgmt .mgmt-inner-box-img-01-rp,
#mgmt .mgmt-inner-box-img-02-rp{
	display:none;
	width:100%;
	text-align:center;
	margin-bottom:60px;
}

#mgmt .mgmt-inner-box-img-01 img,
#mgmt .mgmt-inner-box-img-01-rp img{
	border-radius: 50%;
	object-fit: cover;
	max-width:400px;
	position:relative;
	top:30px;
}

#mgmt .mgmt-inner-box-img-02 img,
#mgmt .mgmt-inner-box-img-02-rp img{
	max-width:400px;
	position:relative;
	top:30px;
}


#mgmt .mgmt-inner-box-text-01{
	line-height:2.0;
	font-family: 'Kosugi Maru', sans-serif;
	width:70%;
	padding:40px;
}

#mgmt .mgmt-inner-box-text-01 ul{
	display:inline-block;
	margin:20px 0 20px 1.5em;
}

#mgmt .mgmt-inner-box-text-01 ul li{
  position: relative;
  padding: 0 10px 0 35px;
  border-bottom: 1px solid #333;
  font-family: 'Zen Kurenaido', sans-serif;
  font-size:1.5em;
  line-height:1.8;
  font-weight:bold;
}

#mgmt .mgmt-inner-box-text-01 ul li:before{
	font-family: FontAwesome;
	content: "\f192";
	color: #ee2d2d;
	left: 0;
	position: absolute;	
}

#mgmt .mgmt-inner-box-text-01 ol,
#mgmt .mgmt-inner-box-text-02 ol{
	list-style:decimal;
	font-size:1.3em;
	line-height:1;
}

#mgmt .mgmt-inner-box-text-01 ol li span,
#mgmt .mgmt-inner-box-text-02 ol li span{
	font-size:1rem;
	
}


#mgmt .mgmt-inner-box-text-02{
	line-height:2.0;
	font-family: 'Kosugi Maru', sans-serif;
	width:71.2%;
	margin-left:28.8%;
	padding:40px;
}

#mgmt .mgmt-inner-box-text-02 ul{
	margin-left:2.2em;
}

#mgmt .mgmt-inner-box-text-02 ul li{
	list-style:disc;
}

#mgmt .mgmt-box h3{
    text-align:center;
    font-size:2em;
    padding-bottom:25px;
}

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

	#mgmt .mgmt-box {
		padding:0;
	}

	#mgmt .mgmt-inner-box-img{
		margin: 0 auto;
		padding: 0;
	}

	#mgmt .mgmt-inner-box{
		flex-direction: column-reverse;
	}

	#mgmt .mgmt-inner-box-text{
		width:100%;
		margin-left:0;
		padding:10px;	
	}

	#mgmt .mgmt-inner-box-text-01,
	#mgmt .mgmt-inner-box-text-02{
		width:100%;
		margin-left:0;
		padding:10px;

	}
	#mgmt .mgmt-inner-box-text-01 ul li{
		font-size: 1.3em;
		line-height:1.6;	
	}
	
	#mgmt .mgmt-inner-box-text-02 ul li{
		line-height:1.2;	
	}


	#mgmt .mgmt-inner-box-img-01,
	#mgmt .mgmt-inner-box-img-02{
		display:none;
	}
	
	#mgmt .mgmt-inner-box-img-01-rp,
	#mgmt .mgmt-inner-box-img-02-rp{
		display:block;

	}
	
	
}

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

	#mgmt-top .top-img{
		font-size: 1.0em;
	}

	#mgmt-top .icon {
		font-size:2em;
	}

	#mgmt-top .center{
		font-size:1.5em;   
	}
	
}


/* SDGs
-------------------------------------------------------*/
#sdgs-top .top-img{
  margin-top: 70px;
  position: relative;
  color: #fff;
  font-size: 2em;
}

#sdgs-top .icon {
   text-align:center;
   color:#333;
   margin-top:10px;
}


#sdgs-top .center{
   color:#333;
   text-align:center;
   margin-top:20px;
   margin-bottom:20px;
   
}

#sdgs .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 57px 120px 0 120px;
  border-color: #eaeaea transparent transparent transparent;
  display: block;
  margin: 40px auto;
}

#sdgs .box{
     padding: 40px 30px 40px;
}


#sdgs .box h2{
    font-size:3em;
    font-family: 'Fjalla One', sans-serif;
    position: relative;
}

#sdgs .h2plus{
     text-align:center;

}

#sdgs .sdgs-box{
     padding: 40px 30px 40px;
}

#sdgs .sdgs-box h3{
	text-align:center;
    font-size:2em;
    padding-bottom:25px;
}

#sdgs .sdgs-inner-box-top{
	text-align:center;
	margin-bottom:80px;
}

#sdgs .sdgs-inner-box{
	display:flex;
	justify-content: center;
	margin-bottom:40px;
}

#sdgs .sdgs-inner-box-01{
	display:flex;
	justify-content: center;
	margin-bottom:40px;
}

#sdgs .sdgs-inner-bottom-box{
	font-size:1.4em;
	text-align:center;
	line-height:1.5;
}

#sdgs .sdgs-inner-bottom-box img{
	margin-top:60px;
	max-width:800px;
}



#sdgs .sdgs-inner-box-text{
	font-size:1.5em;
	line-height:1.5;
	padding:40px;
}

#sdgs .sdgs-inner-box-img{
	text-align:center;
}

#sdgs .sdgs-inner-box-img img{
	max-width:400px;
}

#sdgs .sdgs-inner-box-text-01{
    font-size:1.4em;
	line-height:2.0;
	width:50%;
	padding:40px;
}

#sdgs .sdgs-inner-box-text-01 ul{
	display:inline-block;
	margin:20px 0 20px 1.5em;
}

#sdgs .sdgs-inner-box-text-01 ul li{
  position: relative;
  padding: 0 10px 0 35px;
  border-bottom: 1px solid #333;
  font-family: 'Kosugi Maru', sans-serif;
  line-height:1.8;
}

#sdgs .sdgs-inner-box-text-01 ul li:before{
	font-family: FontAwesome;
	content: "\f192";
	color: #ee2d2d;
	left: 0;
	position: absolute;	
}



#sdgs .sdgs-inner-box-img-01{
	width:50%;
	text-align:right;
}

#sdgs .sdgs-inner-box-img-01 img{
	max-width:600px;
}

#sdgs .sdgs-inner-box-text-02{
    font-size:1.4em;
	line-height:2.0;
	font-family: 'Kosugi Maru', sans-serif;
	width:50%;
	padding:40px;
}

#sdgs .sdgs-inner-box-text-02 ul{
	display:inline-block;
	margin:20px 0 20px 1.5em;
}

#sdgs .sdgs-inner-box-text-02 ul li{
  position: relative;
  padding: 0 10px 0 35px;
  border-bottom: 1px solid #333;
  line-height:1.8;

}

#sdgs .sdgs-inner-box-text-02 ul li:before{
	font-family: FontAwesome;
	content: "\f192";
	color: #ee2d2d;
	left: 0;
	position: absolute;	
}

#sdgs .sdgs-inner-box-img-02{
	width:50%;
	text-align:center;
	display:table;
}

#sdgs .sdgs-inner-box-img-02 img{
	display:table-cell;
	width:48%;
}
#sdgs .sdgs-inner-box-img-02 img:first-child{
	padding-right:2%;
}

#sdgs .sdgs-inner-box-img-02 img:last-child{
	padding-left:2%;
}


#sdgs .sdgs-text-box{
    font-size:1.5em;
	line-height:2.0;
	font-family: 'Kosugi Maru', sans-serif;
	width:70%;
	padding:40px;
	margin:0 auto;
}

#sdgs .sdgs-inner-topic-text {
	width:50%;
	text-align:right;
}

#sdgs .sdgs-inner-topic-text p{
	display:inline-block;
	text-align:left;
	font-size:2em;
	padding:25px;
}

#sdgs .sdgs-inner-topic-text span{
	font-size:1rem;
	font-family: 'Noto Sans JP', sans-serif;
	display:block;
	line-height:1.4;
}


#sdgs .sdgs-inner-topic-img {
	width:50%;
}


#sdgs .sdgs-inner-topic-img img {
	width:auto;
	max-height:147px;
	padding-left:25px;
}

#sdgs .sdgs-line {
	border-top: 1px solid #000;
	margin:80px auto;
	width:60%;
	
}

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

	#sdgs .sdgs-box {
		padding:0;
	}
	
	#sdgs .sdgs-inner-box{
		flex-direction: column-reverse;
		margin-bottom:20px;
		
	}
	#sdgs .sdgs-inner-box-01{
		flex-direction: column;
		margin-bottom:20px;
	}

		
	#sdgs .sdgs-inner-box-text{
		font-size: 1.3em;
		width:100%;
		margin-left:0;
		padding:10px;
	}

	#sdgs .sdgs-inner-box-text-01,
	#sdgs .sdgs-inner-box-text-02{
		font-size: 1.3em;
		width:100%;
		margin-left:0;
		padding:10px;

	}

	#sdgs .sdgs-inner-box-img,
	#sdgs .sdgs-inner-box-img-01,
	#sdgs .sdgs-inner-box-img-02{
		padding: 0;
		width:100%;
		margin-bottom:60px;
		text-align:center;

	}
	
	#sdgs .sdgs-inner-box-img img{
		margin-top:20px;
	}

	#sdgs .sdgs-inner-box-text-01 ul,
	#sdgs .sdgs-inner-box-text-02 ul{
		margin-top:0;
	}

	#sdgs .sdgs-inner-topic-text{
		padding: 0;
		width:100%;
	}
	
	#sdgs .sdgs-inner-topic-img {
		text-align:center;
		width:100%;
		margin-top:20px;
	}
	#sdgs .sdgs-inner-topic-img img {
		padding:0;
		height:100px;
	}
		
	#sdgs .sdgs-inner-topic-text p{
		padding:10px;
	}
	#sdgs .sdgs-inner-bottom-box{
		font-size:1.3em;
	}
	#sdgs .sdgs-line {
		width:80%;
		margin:30px auto;
	}

}





/* Google reCAPTCHA v3
-------------------------------------------------------*/
.grecaptcha-badge {
	visibility:hidden;
}
