@charset "UTF-8";

/*--------------------------------------------------------------
@ mixin
--------------------------------------------------------------*/
/* mediaqery sort用 */
@media screen and (max-width: 1260px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 980px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  html {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  html {
    margin: 0;
  }
}

/*--------------------------------------------------------------
 common
--------------------------------------------------------------*/
body {
  width: 100%;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  font-family: meiryo, sans-serif;
  line-height: 1.8;
  background-image: url(./img/page_bg.png);
  background-repeat: repeat;
}

.inner {
  width: 98%;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
}

.cf {
  zoom: 1;
}

.cf:after,
.cf:before,
.clearfix:after,
.clearfix:before,
.comment-respond:after,
.comment-respond:before {
  content: "";
  display: table;
}

.cf:after,
.clearfix:after,
.comment-respond:after {
  clear: both;
}

.google-maps {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  overflow: hidden;
}

.google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

/*--------------------------------------------------------------
 header
--------------------------------------------------------------*/
header {
  width: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

header .bg_color {
  background-color: rgba(0, 0, 0, 0.15);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  justify-content: space-between;
}

header .logo {
  padding: 10px 0;
}

header #humberger {
  display: none;
  position: fixed;
  top: 10px;
  right: 0;
  z-index: 3;
  width: 45px;
  padding: 17px 10px 10px;
  cursor: pointer;
}

header #humberger .icon-bar {
  height: 2px;
  background: #fff;
  display: block;
  margin-bottom: 6px;
  -webkit-transition: all 400ms cubic-bezier(1, 0, 0, 1);
  transition: all 400ms cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
  /* easeInOutExpo */
}

header .drawer-opened #humberger .icon-bar {
  background: #fff;
}

header .drawer-opened #humberger :nth-child(1) {
  transform: translate(0, 8px) rotate(45deg);
  -webkit-transform: translate(0, 8px) rotate(45deg);
}

header .drawer-opened #humberger :nth-child(2) {
  transform: translate(20px, 0);
  -webkit-transform: translate(20px, 0);
  opacity: 0;
}

header .drawer-opened #humberger :nth-child(3) {
  transform: translate(0, -8px) rotate(-45deg);
  -webkit-transform: translate(0, -8px) rotate(-45deg);
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  width: 780px;
  margin: 0 0 0 auto;
}

header nav li {
  width: calc(33% - 2px);
  height: auto;
  position: relative;
}

header nav li a:after {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 160, 160, 0.25)), to(rgba(255, 255, 255, 0.25)));
  background: linear-gradient(to bottom, rgba(160, 160, 160, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

header nav li:first-child a::before {
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 160, 160, 0.25)), to(rgba(255, 255, 255, 0.25)));
  background: linear-gradient(to bottom, rgba(160, 160, 160, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

header nav li a {
  padding: 20px 0;
  color: #fff;
  font-weight: bold;
  display: block;
  position: relative;
  line-height: 1.2em;
  -webkit-transition: 0.4s color;
  transition: 0.4s color;
}

header nav li a span {
  font-size: 13px;
  display: block;
}

header nav li:hover a,
header nav li.current a {
  color: #fff100;
}

@media screen and (max-width: 980px) {
  header .bg_color {
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
  }

  header .logo {
    width: 100%;
  }

  header #humberger {
    display: block;
  }

  header nav {
    width: 100%;
    display: none;
  }

  header nav ul {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
  }

  header nav a {
    font-size: 13px;
  }

  header nav a span {
    font-size: 10px;
  }

  header nav li a:after {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 160, 160, 0.25)), to(rgba(255, 255, 255, 0.25)));
    background: linear-gradient(to bottom, rgba(160, 160, 160, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
  }

  header nav li a:before,
  header nav li:first-child a::before {
    content: "";
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(160, 160, 160, 0.25)), to(rgba(255, 255, 255, 0.25)));
    background: linear-gradient(to bottom, rgba(160, 160, 160, 0.25) 0%, rgba(255, 255, 255, 0.25) 100%);
    display: block;
    width: 1px;
    height: 80%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}

/*--------------------------------------------------------------
 main_image
--------------------------------------------------------------*/
.main_image {
  text-align: center;
  position: relative;
  padding: 90px 0;
}

.main_image:after {
  content: "";
  width: 100%;
  height: 130px;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  display: block;
  position: absolute;
  bottom: 0;
}

.main_image h1 {
  color: #fff;
  font-weight: bold;
  font-size: 60px;
  text-shadow: 12px 12px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

@media screen and (max-width: 980px) {
  .main_image {
    padding: 120px 0 40px;
  }

  .main_image h1 {
    font-size: 40px;
    z-index: 1;
    position: relative;
  }

  .main_image img {
    max-width: 1000px;
    width: 98%;
  }
}

/*--------------------------------------------------------------
 footer
--------------------------------------------------------------*/
@-webkit-keyframes shiny {
  0% {
    top: -50%;
  }

  25% {
    top: 150%;
  }

  100% {
    top: 150%;
  }
}

@keyframes shiny {
  0% {
    top: -50%;
  }

  25% {
    top: 150%;
  }

  100% {
    top: 150%;
  }
}

footer {
  padding-top: 50px;
  width: 100%;
  overflow: hidden;
  background-image: url(./img/footer_bg.png);
  background-repeat: repeat;
}

footer .inner {
  position: relative;
}

footer #totop {
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: block;
  width: 60px;
  border: 2px solid #000;
  z-index: 9999;
  overflow: hidden;
  -webkit-transition: border 0.4s ease;
  transition: border 0.4s ease;
}

footer #totop:hover {
  border: 2px solid #FF6212;
}

footer #totop a:hover::before {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(1%, rgba(6, 6, 6, 0)), color-stop(42%, rgba(255, 255, 255, 0.89)), color-stop(47%, white), color-stop(52%, rgba(255, 255, 255, 0.91)), to(rgba(125, 185, 232, 0)));
  background: linear-gradient(to bottom, transparent 0%, rgba(6, 6, 6, 0) 1%, rgba(255, 255, 255, 0.89) 42%, white 47%, rgba(255, 255, 255, 0.91) 52%, rgba(125, 185, 232, 0) 100%);
  -webkit-animation: shiny 4s infinite linear;
  animation: shiny 4s infinite linear;
}

footer #totop a::before {
  content: "";
  display: block;
  position: absolute;
  left: -50%;
  top: -50%;
  width: 200%;
  height: 200%;
  -webkit-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

footer #totop a img {
  width: 100%;
  height: auto;
}

footer .info1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #fff;
}

footer nav {
  width: 600px;
}

footer nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

footer nav li a {
  color: #fff;
  display: block;
  position: relative;
  line-height: 1.5em;
  -webkit-transition: 0.4s color;
  transition: 0.4s color;
}

footer nav li:hover a,
footer nav li.current a {
  color: #fff100;
}

footer .info2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 50px;
}

footer .iso {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #fff;
}

footer .iso p {
  margin-left: 20px;
  line-height: 1.3em;
}

footer .iso p span {
  font-size: 18px;
  font-weight: bold;
}

footer .banner {
  display: inline-block;
  position: relative;
}

footer .banner img {
  display: block;
  margin: 0 auto 10px;
}

footer .copylight {
  text-align: center;
  padding: 30px 0;
  background-color: #000;
  font-size: 15px;
  color: #fff;
}

@media screen and (max-width: 980px) {
  footer .info1 {
    width: 90%;
    display: block;
    margin: 0 auto 50px;
  }

  footer nav {
    width: auto;
  }

  footer nav ul {
    margin-top: 20px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  footer nav ul li {
    margin: 0 1em;
  }

  footer .info2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  footer .iso {
    width: 90%;
    max-width: 437px;
    margin: 0 auto 40px;
    font-size: 14px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }

  footer .banner {
    width: 100%;
  }

  footer .banner a {
    width: 90%;
    max-width: 437px;
    display: block;
    margin: 0 auto 10px;
  }

  footer .banner img {
    width: 100%;
  }

  footer .copylight {
    padding: 10px 0;
    line-height: 1.2em;
  }
}

@media screen and (max-width: 768px) {
  footer #totop {
    right: 0;
    width: 40px;
  }
}

/*--------------------------------------------------------------
home
--------------------------------------------------------------*/
#home header {
  background-image: url(./img/top_main_image_bg.jpg);
}

#home .main_image {
  padding: 200px 0;
}

#home .main_image h1 {
  color: #fff100;
  font-weight: bold;
  font-size: 36px;
  text-shadow: 12px 12px 4px rgba(0, 0, 0, 0.25);
  margin-bottom: 15px;
}

#home .main_image img {
  max-width: 1000px;
  width: 98%;
}

#home .info {
  position: relative;
  padding-top: 40px;
}

/*--------------------------------------------------------------
home New 新着情報
--------------------------------------------------------------*/
#home .info .new {
  width: 100%;
  max-width: 960px;
  margin: auto;
  left: 0;
  right: 0;
  top: -110px;
  padding: 1em;
  box-sizing: border-box;
}

#home .info .new h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

.new li {
  border-bottom: 1px solid #ccc;
  list-style: none;
}

.new a {
  text-decoration: none;
  display: block;
  padding: 10px 0;
}

.new a:hover {
  background-color: #ccc;
}

.new span {
  color: #737373;
  vertical-align: middle;
  display: inline-block;
}

.new span.day {
  width: 73px;
  text-align: right;
  display: inline-block;
}

.new p {
  color: #131313;
  display: inline-block;
  padding: 0;
  vertical-align: middle;
  margin-left: 15px;
}

/*
#home .info .new p {
	text-align: left;
}

@media screen and (min-width: 800px) {
	#home .info .new p .pc_br::before {
		content: "\A";
		white-space: pre;
	}
}

#home .info .new p span.date {
	display: block;
	text-align: right;
}--*/
/*--------------------------------------------------------------
new-mark マーキング
--------------------------------------------------------------*/
header nav ul li.gallery:before {
  position: absolute;
  content: "NEW";
  display: block;
  font-size: 10px;
  white-space: pre;
  color: #fff;
  bottom: 5px;
  left: 0px;
  text-align: center;
  z-index: 2;
  line-height: 1.5;
  width: 100%;
  height: 10;
  margin: 0px;
  background-color: #ff6212;
  letter-spacing: 0.1em;
  -webkit-animation: blink 1.0s ease-in-out infinite alternate;
  -moz-animation: blink 1.0s ease-in-out infinite alternate;
  animation: blink 1.0s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
home newyear 
--------------------------------------------------------------*/
#home .info .newyear {
  width: 100%;
  max-width: 900px;
  margin: auto;
  left: 0;
  right: 0;
  top: -110px;
  padding: 1em;
  border: 1px solid #f90;
  background: rgba(255, 210, 160, 0.2);
  box-sizing: border-box;
}

#home .info .newyear h2 {
  font-weight: bold;
  font-size: 1.5em;
  text-align: center;
  margin-bottom: 0.8em;
  color: #ff6212;
  line-height: 1.4em
}

#home .info .newyear p {
  text-align: center;
}

@media screen and (min-width: 800px) {
  #home .info .newyear p .pc_br::before {
    content: "\A";
    white-space: pre;
  }
}

#home .info .newyear p span.date {
  display: block;
  text-align: right;
}

#home main .thought .inner {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#home main .thought .inner .text {
  width: 50%;
  max-width: 470px;
}

#home main .thought .inner .text img {
  margin: 0 auto;
  width: 100%;
  display: block;
  height: auto;
  max-width: 459px;
}

#home main .thought .inner .text h2 {
  text-align: center;
  color: #fff100;
  background-color: #000;
  font-weight: bold;
  font-size: 24px;
  line-height: 1em;
  letter-spacing: 0.2em;
  margin: 10px 0 30px;
  padding: 10px 0;
}

#home main .thought .inner .image {
  width: 50%;
  max-width: 440px;
  height: auto;
}

#home main .product {
  background-image: url(./img/top_product_bg01.jpg);
  background-size: cover;
  padding: 50px 0;
}

#home main .product h2 {
  color: #fff100;
  text-align: center;
  font-weight: bold;
  text-shadow: 12px 12px 4px rgba(0, 0, 0, 0.25);
}

#home main .product .title_image {
  display: block;
  margin: 20px auto;
  max-width: 620px;
  width: 90%;
  height: auto;
}

#home main .product .swiper-slide {
  position: relative;
}

#home main .product .swiper-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  z-index: 10;
}

#home main .product .swiper-slide.swiper-slide-active:before,
#home main .product .swiper-slide.swiper-slide-next:before,
#home main .product .swiper-slide.swiper-slide-prev:before {
  display: none;
}

#home main .product .swiper-slide img {
  width: 100%;
  height: auto;
}

#home main .product .swiper-button-next {
  right: 10%;
}

#home main .product .swiper-button-prev {
  left: 10%;
}

#home main .product .swiper-button-prev {
  background-image: url(./img/slider_nav_prev.png);
  height: 71px;
  width: 35px;
  background-size: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}

#home main .product .swiper-button-next {
  background-image: url(./img/slider_nav_next.png);
  height: 71px;
  width: 35px;
  background-size: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}

#home main .contact {
  padding: 50px 0;
}

#home main .contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#home main .contact .tel {
  width: 50%;
  text-align: center;
}

#home main .contact .tel h2 {
  font-weight: bold;
}

#home main .contact .tel img {
  display: block;
  margin: 10px auto 0;
}

#home main .contact .mail {
  width: 50%;
}

#home main .contact .mail a {
  background-color: #fff;
  border: 4px solid #ff6212;
  display: block;
  color: #000;
  font-weight: bold;
  width: 50%;
  margin: auto;
  padding: 25px 60px;
  text-align: right;
  position: relative;
}

#home main .contact .mail a:before {
  content: url(./img/top_contact_icon01.jpg);
  height: 40px;
  position: absolute;
  left: 60px;
  bottom: 25px;
}

#home main .video_banner {
  background-image: url(./img/top_video_banner_bg.jpg);
  background-size: cover;
  background-position: left center;
  background-color: #000;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  width: 80%;
  /* margin: 0 auto 50px;*/
  display: block;
  padding: 20px 5%;
  text-align: right;
  border: solid 5px #ff6212;
  max-width: 380px;
  background-repeat: no-repeat;
  margin: 40px auto;
  position: absolute;
  left: 0;
  right: 0;
  top: -100px;
}

@media screen and (max-width: 980px) {
  #home .main_image {
    padding: 150px 0 100px;
  }

  #home .main_image h1 {
    font-size: 15px;
    font-size: 4vw;
  }

  #home .main_image img {
    max-width: 1000px;
    width: 98%;
  }

  #home main .thought .inner {
    position: relative;
  }

  #home main .thought .inner .text {
    position: relative;
    width: 100%;
    max-width: inherit;
    z-index: 10;
  }

  #home main .thought .inner .text h2 {
    font-size: 20px;
  }

  #home main .thought .inner .image {
    display: none;
  }

  #home main .contact .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #home main .contact .tel {
    width: 100%;
  }

  #home main .contact .tel img {
    width: 95%;
    height: auto;
    max-width: 419px;
  }

  #home main .contact .mail {
    width: 100%;
    margin-top: 30px;
  }

  #home main .contact .mail a {
    max-width: 20em;
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 10px 5%;
  }

  #home main .contact .mail a:before {
    left: auto;
    bottom: auto;
    position: relative;
    display: block;
    margin: 0 auto 10px;
  }

  #home main .video_banner {
    font-size: 20px;
    text-align: center;
    max-width: 320px;
  }
}

#home .video_banner {
  background-image: url(./img/top_video_banner_bg.jpg);
  background-size: cover;
  background-position: left center;
  background-color: #000;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  width: 80%;
  margin: 0 auto 50px;
  display: block;
  padding: 20px 5%;
  text-align: right;
  border: solid 5px #ff6212;
  max-width: 380px;
  background-repeat: no-repeat;
}

#home main .info181106 {
  margin: 50px 0 0;
}

#home main .info181106 h2 {
  font-size: 120%;
  font-weight: bold;
  color: #fff100;
  background-color: #000;
  display: inline-block;
  padding: 2px 10px;
  border-left: 4px #ff6212 solid;
  position: relative;
  z-index: 10;
}

#home main .info181106 p {
  background-color: #fff;
  padding: 30px 20px;
  border: solid 1px #000;
  max-width: 860px;
  position: relative;
  margin: -10px 0 0 auto;
}

/*--------------------------------------------------------------
business
--------------------------------------------------------------*/
#business header {
  background-image: url(./img/business_main_image_bg.jpg);
}

#business main .about .inner,
#business main .spec .inner {
  border-bottom: 1px solid #bebebe;
  padding: 50px 0;
}

#business main .about h2,
#business main .spec h2 {
  margin-left: 30px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

#business main .about p,
#business main .spec p {
  padding: 0 30px;
}

#business main .about .table_wraper,
#business main .spec .table_wraper {
  overflow: auto;
  width: 90%;
  margin: auto;
}

#business main .about table,
#business main .spec table {
  width: 800px;
  margin: auto;
}

#business main .about table caption,
#business main .spec table caption {
  padding: 10px 20px;
  color: #ff6212;
  text-align: left;
}

#business main .about table td,
#business main .spec table td {
  background-color: #fff;
  line-height: 1em;
  border: solid 1px #ff6212;
  padding: 10px 20px;
  text-align: left;
}

#business main .sample {
  padding: 50px 0;
  background-image: url(./img/business_sample_bg01.jpg);
  background-size: cover;
  background-position: center;
}

#business main .sample .inner {
  max-width: 1400px;
}

#business main .sample h2 {
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  color: #fff;
  margin: 0 0 50px;
  text-shadow: 12px 12px 4px rgba(0, 0, 0, 0.25);
}

#business main .sample .swiper-slide {
  position: relative;
}

#business main .sample .swiper-slide:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  display: block;
  position: absolute;
  z-index: 10;
}

#business main .sample .swiper-slide.swiper-slide-active:before {
  display: none;
}

#business main .sample .swiper-slide.swiper-slide-next:before,
#business main .sample .swiper-slide.swiper-slide-prev:before {
  background-color: rgba(0, 0, 0, 0.4);
}

#business main .sample .swiper-slide img {
  width: 100%;
  height: auto;
}

#business main .sample .swiper-button-next {
  right: auto;
  left: 80%;
}

#business main .sample .swiper-button-prev {
  right: 80%;
  left: auto;
}

#business main .sample .swiper-button-prev {
  background-image: url(./img/slider_nav_prev.png);
  height: 71px;
  width: 35px;
  background-size: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}

#business main .sample .swiper-button-next {
  background-image: url(./img/slider_nav_next.png);
  height: 71px;
  width: 35px;
  background-size: auto;
  top: 0;
  bottom: 0;
  margin: auto;
}

#business main .sample p {
  text-align: center;
  color: #fff;
  margin: 30px 0 0;
}

#business main .contact {
  padding: 50px 0;
}

#business main .contact .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#business main .contact .tel {
  width: 50%;
  text-align: center;
}

#business main .contact .tel h2 {
  font-weight: bold;
}

#business main .contact .tel img {
  display: block;
  margin: 10px auto 0;
}

#business main .contact .mail {
  width: 50%;
}

#business main .contact .mail a {
  background-color: #fff;
  border: 4px solid #ff6212;
  display: block;
  color: #000;
  font-weight: bold;
  width: 50%;
  margin: auto;
  padding: 25px 60px;
  text-align: right;
  position: relative;
}

#business main .contact .mail a:before {
  content: url(./img/top_contact_icon01.jpg);
  height: 40px;
  position: absolute;
  left: 60px;
  bottom: 25px;
}

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

  #business main .about h2,
  #business main .spec h2 {
    margin-right: 30px;
    font-size: 32px;
  }

  #business main .sample h2 {
    font-size: 32px;
    margin: 0 0 25px;
  }

  #business main .contact .inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  #business main .contact .tel {
    width: 100%;
  }

  #business main .contact .tel img {
    width: 95%;
    height: auto;
    max-width: 419px;
  }

  #business main .contact .mail {
    width: 100%;
    margin-top: 30px;
  }

  #business main .contact .mail a {
    max-width: 20em;
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 10px 5%;
  }

  #business main .contact .mail a:before {
    left: auto;
    bottom: auto;
    position: relative;
    display: block;
    margin: 0 auto 10px;
  }
}

/*--------------------------------------------------------------
product
--------------------------------------------------------------*/
#product header {
  background-image: url(./img/product_main_image_bg.jpg);
}

#product main .product_list .inner,
#product main .dbox_list .inner,
#product main .alstand_list .inner {
  padding: 50px 0;
}

#product main .product_list h2,
#product main .dbox_list h2,
#product main .alstand_list h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

#product main .product_list ul,
#product main .dbox_list ul,
#product main .alstand_list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#product main .product_list li,
#product main .dbox_list li,
#product main .alstand_list li {
  position: relative;
  margin: 30px 0;
}

#product main .product_list li span,
#product main .dbox_list li span,
#product main .alstand_list li span {
  position: absolute;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  line-height: 1em;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#product main .product_list li img,
#product main .dbox_list li img,
#product main .alstand_list li img {
  width: 100%;
  height: auto;
}

#product main .product_list .inner {
  border-bottom: 1px solid #bebebe;
}

#product main .alstand_list .inner {
  border-top: 1px solid #bebebe;
}

#product main .product_list li {
  max-width: 460px;
  width: 49%;
}

#product main .product_list li .title {
  top: 0;
}

#product main .product_list li .subtitle {
  font-weight: normal;
  bottom: 0;
  font-size: 18px;
  text-align: right;
}

#product main .dbox_list li,
#product main .alstand_list li {
  max-width: 312px;
  width: 33%;
}

#product main .dbox_list li .title,
#product main .alstand_list .title {
  bottom: 0;
  text-align: right;
}

#product main .alstand_list .title a {
  color: #fff;
  transition: .4s opacity;
}

#product main .alstand_list .title a:hover {
  opacity: .6;
}

#product main .alstand_list .title a::after {
  content: " >";
}

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

  #product main .product_list h2,
  #product main .dbox_list h2,
  #product main .alstand_list h2 {
    font-size: 32px;
  }

  #product main .product_list li,
  #product main .dbox_list li,
  #product main .alstand_list li {
    margin: 10px 0;
  }

  #product main .product_list li span,
  #product main .dbox_list li span,
  #product main .alstand_list li span {
    font-size: 16px;
  }

  #product main .product_list li .subtitle {
    font-size: 10px;
  }

  #product main .alstand_list li {
    max-width: 312px;
    width: 50%;
  }
}

/*--------------------------------------------------------------
company
--------------------------------------------------------------*/
#company header {
  background-image: url(./img/company_main_image_bg.jpg);
}

#company main .goaizatsu .inner,
#company main .outline .inner,
#company main .award .inner,
#company main .history .inner,
#company main .access .inner {
  border-bottom: 1px solid #bebebe;
  padding: 50px 0;
}

#company main .goaizatsu h2,
#company main .outline h2,
#company main .award h2,
#company main .history h2,
#company main .access h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

#company main .goaizatsu table,
#company main .outline table,
#company main .history table,
#company main .access table {
  width: 90%;
  max-width: 800px;
  margin: 30px auto 0;
}

#company main .goaizatsu table th,
#company main .goaizatsu table td,
#company main .outline table th,
#company main .outline table td,
#company main .history table th,
#company main .history table td,
#company main .access table th,
#company main .access table td {
  background-color: #fff;
  line-height: 1em;
  border: solid 1px #ff6212;
  padding: 20px 0 20px 30px;
  text-align: left;
}

#company main .goaizatsu table th img,
#company main .goaizatsu table td img,
#company main .outline table th img,
#company main .outline table td img,
#company main .history table th img,
#company main .history table td img,
#company main .access table th img,
#company main .access table td img {
  height: 80px;
  width: auto;
  vertical-align: top;
  margin-left: 20px;
}

#company main .access {
  border-bottom: none;
}

#company main .goaizatsu .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

#company main .goaizatsu .content .text {
  width: 67%;
  padding-right: 5em;
}

#company main .goaizatsu .content .president {
  width: 80%;
  max-width: 240px;
  text-align: center;
  margin: 0 auto;
}

#company main .goaizatsu .content .president img {
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

#company main .goaizatsu.senmu .text {
  padding-right: 0;
  width: 100%;
}

#company main .award li {
  padding: 1em 0;
  display: flex;
  align-items: center;
  width: 95%;
  margin: auto;
  justify-content: space-around;
}

#company main .award .image {
  max-width: 400px;
  width: 300px;
  border: solid 1px #ADADAD;
}

#company main .award .image a {
  display: block;
}

#company main .award .image img {
  width: 100%;
  height: auto;
}

#company main .award .image2 {
  max-width: 500px;
  width: 500px;
  border: solid 1px #ADADAD;
}

#company main .award .image2 img {
  width: 100%;
}

#company main .award .text {
  padding: 0 2em;
  width: 90%;
}

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

  #company main .goaizatsu h2,
  #company main .outline h2,
  #company main .award h2,
  #company main .history h2,
  #company main .access h2 {
    font-size: 32px;
  }

  #company main .goaizatsu table th,
  #company main .outline table th,
  #company main .history table th,
  #company main .access table th {
    display: block;
    padding: 20px 10px;
    text-align: left;
    border: none;
    color: #fff;
    background-color: #ff6212;
  }

  #company main .goaizatsu table th img,
  #company main .outline table th img,
  #company main .history table th img,
  #company main .access table th img {
    vertical-align: middle;
    height: 3em;
  }

  #company main .goaizatsu table td,
  #company main .outline table td,
  #company main .history table td,
  #company main .access table td {
    display: block;
    padding: 20px 10px;
    text-align: left;
  }

  #company main .goaizatsu .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #company main .goaizatsu .content .text {
    width: 100%;
    padding-right: 0;
    margin-bottom: 80px;
  }

  #company main .goaizatsu .content .president {
    width: 80%;
    max-width: 240px;
    text-align: center;
    margin: 0 auto;
  }

  #company main .award li {
    flex-wrap: wrap
  }

  #company main .award .image {
    width: 100%;
  }

  #company main .award .text {
    padding: 0.5em 0 0;
  }
}

/*--------------------------------------------------------------
recruit
--------------------------------------------------------------*/
#recruit header,
#gallery header {
  background-image: url(./img/recruit_main_image_bg.jpg);
}

#recruit main .outline,
#recruit main .guidelines,
#recruit main .insurance,
#recruit main .staff,
#recruit main .gallery_area,
#gallery main .outline,
#gallery main .guidelines,
#gallery main .insurance,
#gallery main .staff,
#gallery main .gallery_area {
  position: relative;
  overflow-x: hidden;
}

#recruit main .outline .inner,
#recruit main .guidelines .inner,
#recruit main .insurance .inner,
#recruit main .staff .inner,
#recruit main .gallery_area .inner,
#gallery main .outline .inner,
#gallery main .guidelines .inner,
#gallery main .insurance .inner,
#gallery main .staff .inner,
#gallery main .gallery_area .inner {
  padding: 50px 0;
}

#recruit main .outline h2,
#recruit main .guidelines h2,
#recruit main .insurance h2,
#recruit main .staff h2,
#recruit main .gallery_area h2,
#gallery main .outline h2,
#gallery main .guidelines h2,
#gallery main .insurance h2,
#gallery main .staff h2,
#gallery main .gallery_area h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

#recruit main .outline .rec_top_message,
#gallery main .outline .rec_top_message {
  width: 100%;
  margin-top: 80px;
  padding: 60px 0;
  text-align: center;
  background-image: url(img/rec_top01.png);
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
}

#recruit main .outline .rec_top_message img,
#gallery main .outline .rec_top_message img {
  width: 98%;
  max-width: 960px;
  height: auto;
}

#recruit main .outline .inner,
#gallery main .outline .inner {
  border-bottom: 1px solid #bebebe;
}

#recruit main .outline .inner p,
#gallery main .outline .inner p {
  text-align: center;
  margin-bottom: 2em;
}

#recruit main .outline .inner p:last-child,
#gallery main .outline .inner p:last-child {
  margin-bottom: 0;
}

#recruit main .guidelines .inner,
#recruit main .insurance .inner,
#gallery main .guidelines .inner,
#gallery main .insurance .inner {
  border-bottom: 1px solid #bebebe;
}

#recruit main .guidelines .inner ul,
#recruit main .insurance .inner ul,
#gallery main .guidelines .inner ul,
#gallery main .insurance .inner ul {
  margin-left: 8%;
}

#recruit main .guidelines .inner ul li,
#recruit main .insurance .inner ul li,
#gallery main .guidelines .inner ul li,
#gallery main .insurance .inner ul li {
  position: relative;
  margin-left: 1.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#recruit main .guidelines .inner ul li::after,
#recruit main .insurance .inner ul li::after,
#gallery main .guidelines .inner ul li::after,
#gallery main .insurance .inner ul li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1em;
  display: block;
  width: 16px;
  height: 16px;
  margin: auto;
  background-image: url(img/icon_o.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#recruit main .guidelines .inner p,
#recruit main .insurance .inner p,
#gallery main .guidelines .inner p,
#gallery main .insurance .inner p {
  margin-top: 1em;
  margin-left: 8%;
}

#recruit main .staff,
#gallery main .staff {
  font-family: -apple-system, BlinkMacSystemFont, YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

#recruit main .staff .inner,
#gallery main .staff .inner {
  border-bottom: 1px solid #bebebe;
}

#recruit main .staff .inner .staff_area,
#gallery main .staff .inner .staff_area {
  position: relative;
  margin: 40px auto;
}

#recruit main .staff .inner .staff_area .tabarea,
#gallery main .staff .inner .staff_area .tabarea {
  position: relative;
  z-index: 10;
}

#recruit main .staff .inner .staff_area .tabarea ul,
#gallery main .staff .inner .staff_area .tabarea ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  width: 100%;
}

#recruit main .staff .inner .staff_area .tabarea ul li,
#gallery main .staff .inner .staff_area .tabarea ul li {
  position: relative;
  width: 19%;
  padding: 0.8em 1em;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  -webkit-box-shadow: 3px 3px 0 #000;
  box-shadow: 3px 3px 0 #000;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #FF6212;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: 10;
}

#recruit main .staff .inner .staff_area .tabarea ul li.active,
#gallery main .staff .inner .staff_area .tabarea ul li.active {
  color: #FFF100;
}

#recruit main .staff .inner .staff_area .tabarea ul li.active::after,
#gallery main .staff .inner .staff_area .tabarea ul li.active::after {
  content: "";
  position: absolute;
  top: -14px;
  left: -4px;
  display: block;
  width: 37px;
  height: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(img/icon_y.svg);
  z-index: 10;
}

#recruit main .staff .inner .staff_area .tabarea ul li span,
#gallery main .staff .inner .staff_area .tabarea ul li span {
  font-family: meiryo, sans-serif;
  position: absolute;
  right: 2px;
  top: 2px;
  text-shadow: 3px 3px 0 #000;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  opacity: .5;
  z-index: -1;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
}

#recruit main .staff .inner .staff_area .staff_detail.show,
#gallery main .staff .inner .staff_area .staff_detail.show {
  display: block;
}

#recruit main .staff .inner .staff_area .staff_detail,
#gallery main .staff .inner .staff_area .staff_detail {
  position: relative;
  top: -24px;
  padding: 50px 20px 20px;
  background-color: #fff;
  border: 3px solid #FF6212;
  -webkit-box-shadow: 3px 3px 0 #000;
  box-shadow: 3px 3px 0 #000;
}

#recruit main .staff .inner .staff_area .staff_detail .staff_message,
#gallery main .staff .inner .staff_area .staff_detail .staff_message {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 28px;
  z-index: 10;
}

#recruit main .staff .inner .staff_area .staff_detail .staff_message::after,
#gallery main .staff .inner .staff_area .staff_detail .staff_message::after {
  content: "";
  position: absolute;
  display: block;
  width: 37px;
  height: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
  background-image: url(img/icon_o.svg);
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -50px;
}

#recruit main .staff .inner .staff_area .staff_detail span.no,
#gallery main .staff .inner .staff_area .staff_detail span.no {
  font-family: meiryo, sans-serif;
  position: absolute;
  right: 0;
  top: 50px;
  font-size: 160px;
  color: #FF6212;
  opacity: .4;
  line-height: 1;
  font-weight: bold;
  -webkit-transform: skewX(-10deg);
  transform: skewX(-10deg);
  z-index: 1;
}

#recruit main .staff .inner .staff_area .staff_detail h3,
#gallery main .staff .inner .staff_area .staff_detail h3 {
  max-width: 90%;
  margin: 1em 0;
}

#recruit main .staff .inner .staff_area .staff_detail h3 span,
#gallery main .staff .inner .staff_area .staff_detail h3 span {
  position: relative;
  padding: 4px 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
  font-size: 18px;
  background-color: #FF6212;
}

#recruit main .staff .inner .staff_area .staff_detail h3 span::after,
#gallery main .staff .inner .staff_area .staff_detail h3 span::after {
  content: "";
  position: absolute;
  display: block;
  width: 37px;
  height: 31px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 10;
  background-image: url(img/icon_o.svg);
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: -50px;
}

#recruit main .staff .inner .staff_area .staff_detail .flex,
#gallery main .staff .inner .staff_area .staff_detail .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

#recruit main .staff .inner .staff_area .staff_detail .flex dl,
#gallery main .staff .inner .staff_area .staff_detail .flex dl {
  width: 49%;
  margin-bottom: 1em;
}

#recruit main .staff .inner .staff_area .staff_detail .flex dl dt,
#gallery main .staff .inner .staff_area .staff_detail .flex dl dt {
  position: relative;
  margin-bottom: 2px;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
}

#recruit main .staff .inner .staff_area .staff_detail .flex dl dt span,
#gallery main .staff .inner .staff_area .staff_detail .flex dl dt span {
  font-family: meiryo, sans-serif;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  color: #FF6212;
  line-height: 1;
}

#recruit main .staff .inner .staff_area .staff_detail .flex dl dt::after,
#gallery main .staff .inner .staff_area .staff_detail .flex dl dt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 60px;
  height: 2px;
  background-color: #FF6212;
}

#recruit main .staff .inner .staff_area .staff_detail .flex dl dd,
#gallery main .staff .inner .staff_area .staff_detail .flex dl dd {
  font-size: 15px;
  letter-spacing: 0;
}

#recruit main .staff .inner .banner,
#gallery main .staff .inner .banner {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

#recruit main .staff .inner .banner a,
#gallery main .staff .inner .banner a {
  display: inline-block;
  -webkit-box-shadow: 3px 3px 0 #FF6212;
  box-shadow: 3px 3px 0 #FF6212;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#recruit main .staff .inner .banner a:hover,
#gallery main .staff .inner .banner a:hover {
  -webkit-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
  -webkit-box-shadow: 3px 3px 3px #000;
  box-shadow: 3px 3px 3px #000;
}

#recruit main .staff .inner .banner a img,
#gallery main .staff .inner .banner a img {
  width: 100%;
  height: auto;
}

#recruit main .contact,
#gallery main .contact {
  padding: 50px 0;
}

#recruit main .contact h2,
#gallery main .contact h2 {
  text-align: center;
}

#recruit main .contact .tel,
#gallery main .contact .tel {
  margin: 30px auto 0;
  text-align: center;
}

#recruit main .contact .tel img,
#gallery main .contact .tel img {
  width: 98%;
  max-width: 500px;
}

#recruit main .contact .tel p,
#gallery main .contact .tel p {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  color: #ff6212;
}

#recruit main .contact .mail,
#gallery main .contact .mail {
  margin: 30px auto 0;
}

#recruit main .contact .mail a,
#gallery main .contact .mail a {
  background-color: #fff;
  border: 4px solid #ff6212;
  display: block;
  color: #000;
  font-weight: bold;
  width: 90%;
  max-width: 360px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
  padding: 25px 60px;
  text-align: right;
  position: relative;
}

#recruit main .contact .mail a:before,
#gallery main .contact .mail a:before {
  content: url(./img/top_contact_icon01.jpg);
  height: 40px;
  position: absolute;
  left: 60px;
  bottom: 25px;
}

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

  #recruit main .outline h2,
  #recruit main .guidelines h2,
  #gallery main .outline h2,
  #gallery main .guidelines h2 {
    font-size: 32px;
  }

  #recruit main .outline table th,
  #recruit main .guidelines table th,
  #gallery main .outline table th,
  #gallery main .guidelines table th {
    display: block;
    padding: 20px 10px;
    text-align: left;
    border: none;
    color: #fff;
    background-color: #ff6212;
  }

  #recruit main .outline table th img,
  #recruit main .guidelines table th img,
  #gallery main .outline table th img,
  #gallery main .guidelines table th img {
    vertical-align: middle;
    height: 3em;
  }

  #recruit main .outline table td,
  #recruit main .guidelines table td,
  #gallery main .outline table td,
  #gallery main .guidelines table td {
    display: block;
    padding: 20px 10px;
    text-align: left;
  }

  #recruit main .outline .catch,
  #gallery main .outline .catch {
    line-height: 1.2em;
  }

  #recruit main .outline br,
  #gallery main .outline br {
    display: none;
  }

  #recruit main .outline .content,
  #gallery main .outline .content {
    position: relative;
  }

  #recruit main .outline .content::before,
  #gallery main .outline .content::before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
  }

  #recruit main .outline .content h3,
  #recruit main .outline .content p,
  #gallery main .outline .content h3,
  #gallery main .outline .content p {
    position: relative;
    z-index: 5;
  }

  #recruit main .contact .mail a,
  #gallery main .contact .mail a {
    max-width: 20em;
    width: 85%;
    margin: auto;
    text-align: center;
    padding: 10px 5%;
  }

  #recruit main .contact .mail a:before,
  #gallery main .contact .mail a:before {
    left: auto;
    bottom: auto;
    position: relative;
    display: block;
    margin: 0 auto 10px;
  }
}

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

  #recruit main .staff .inner .staff_area .tabarea ul li,
  #gallery main .staff .inner .staff_area .tabarea ul li {
    width: 49%;
    margin-bottom: 6px;
  }

  #recruit main .staff .inner .staff_area .staff_detail .staff_message,
  #gallery main .staff .inner .staff_area .staff_detail .staff_message {
    line-height: 1.4;
  }

  #recruit main .staff .inner .staff_area .staff_detail .staff_message br,
  #gallery main .staff .inner .staff_area .staff_detail .staff_message br {
    display: none;
  }

  #recruit main .staff .inner .staff_area .staff_detail span.no,
  #gallery main .staff .inner .staff_area .staff_detail span.no {
    opacity: .2;
  }

  #recruit main .staff .inner .staff_area .staff_detail .flex dl,
  #gallery main .staff .inner .staff_area .staff_detail .flex dl {
    width: 100%;
  }

  #recruit main .staff .inner .staff_area .staff_detail .staff_message::after,
  #gallery main .staff .inner .staff_area .staff_detail .staff_message::after {
    content: none;
  }
}

#gallery .gallery_area h3 {
  margin-top: .5em;
  font-size: 18px;
}

#gallery .gallery_area .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

#gallery .gallery_area .flex a {
  max-width: 234px;
  width: 24.25%;
  margin-right: 1%;
  margin-bottom: 8px;
  display: block;
}

#gallery .gallery_area .flex a:nth-child(4n) {
  margin-right: 0;
}

#gallery .gallery_area .flex a:hover img {
  border-color: #FF6212;
  -webkit-transform: translate(-3px, -3px);
  transform: translate(-3px, -3px);
  -webkit-box-shadow: 3px 3px 0 #000;
  box-shadow: 3px 3px 0 #000;
}

#gallery .gallery_area .flex a img {
  width: 100%;
  height: auto;
  border: 2px solid #262626;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 768px) {
  #gallery .gallery_area .flex a {
    width: 49%;
    margin-right: 2%;
    max-width: none;
  }

  #gallery .gallery_area .flex a:nth-child(2n) {
    margin-right: 0;
  }
}

/*--------------------------------------------------------------
contact
--------------------------------------------------------------*/
#contact header {
  background-image: url(./img/contact_main_image_bg.jpg);
}

#contact main .tel_area .inner,
#contact main .mail_area .inner {
  padding: 50px 0;
}

#contact main .tel_area h2,
#contact main .mail_area h2 {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: bold;
  text-shadow: 2px 2px 0 #ff6212;
  line-height: 1.2em;
}

#contact main .tel_area .inner {
  border-bottom: 1px solid #bebebe;
  line-height: 1.2em;
}

#contact main .tel_area .tel_info {
  padding: 0 2em;
}

#contact main .tel_area .content .tel {
  max-width: 500px;
  width: 100%;
  margin-top: 50px;
}

#contact main .tel_area .content .fax {
  max-width: 386px;
  width: 90%;
  margin-left: 10%;
  margin-top: 30px;
}

#contact main .tel_area .content p {
  padding: 0 10%;
  margin-top: 20px;
  color: #ff6212;
}

#contact main .mail_area h3 {
  line-height: 1em;
  font-size: 40px;
  font-weight: bold;
  margin: 20px 0;
}

#contact main .mail_area table {
  width: 100%;
  margin: 30px 0 50px;
}

#contact main .mail_area table th {
  vertical-align: top;
  padding: 18px;
  width: 25%;
}

#contact main .mail_area table th span {
  color: #c90000;
}

#contact main .mail_area table td {
  vertical-align: top;
  padding: 10px;
}

#contact main .mail_area table td span {
  margin-left: 1em;
}

#contact main .mail_area table td input,
#contact main .mail_area table td textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  border: 1px solid #000;
  background: transparent;
  font-family: sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

#contact main .mail_area .submit_btn {
  background-color: #fff;
  border: 4px solid #ff6212;
  display: block;
  width: 90%;
  max-width: 360px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 50px auto 0;
  position: relative;
}

#contact main .mail_area .submit_btn input[type="submit"] {
  color: #000;
  font-weight: bold;
  width: 100%;
  position: relative;
  z-index: 20;
  background: transparent;
  padding: 25px 60px;
  font-size: 24px;
  line-height: 1em;
}

#contact main .mail_area .submit_btn:before {
  content: url(./img/top_contact_icon01.jpg);
  height: 40px;
  position: absolute;
  left: 5%;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 50px;
}

#contact main .mail_area .submit_btn:after {
  content: url(./img/arrow01_right.png);
  position: absolute;
  right: 5%;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 32px;
}

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

  #contact main .tel_area h2,
  #contact main .mail_area h2 {
    font-size: 32px;
  }

  #contact main .tel_area .tel_info {
    padding: 0 0.5em;
  }

  #contact main .tel_area .content .tel {
    margin-top: 20px;
  }

  #contact main .tel_area .content .fax {
    margin-top: 20px;
    margin-left: 0.5em;
  }

  #contact main .tel_area .content p {
    padding: 0 0.5em;
  }

  #contact main .mail_area {
    line-height: 1.2em;
  }

  #contact main .mail_area h3 {
    font-size: 32px;
  }

  #contact main .mail_area table th {
    font-weight: bold;
    width: 100%;
    padding: 18px 0;
    display: block;
  }

  #contact main .mail_area table td {
    width: 100%;
    display: block;
    padding: 10px 0;
  }

  #contact main .mail_area .submit_btn {
    max-width: 20em;
    width: 85%;
  }

  #contact main .mail_area .submit_btn input[type="submit"] {
    padding: 20px 5%;
    font-size: 20px;
  }
}