@charset "UTF-8";
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*====================================================================
	01 General_style
====================================================================*/
body {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",Meiryo,sans-serif,"宋体",Gulim;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body.on {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

@media screen and (max-width: 800px) {
  body {
    padding-top: 60px;
  }
}

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

a:before, a:after {
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/*====================================================================
	02 Common_style
====================================================================*/
/*---------------------------------------------------------
	header
*/
header {
  display: block;
  width: 100%;
  height: 90px;
  z-index: 9999;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  background: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 800px) {
  header {
    position: fixed;
    top: 0;
    height: 60px;
    background: #fff;
    margin-top: 0;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

header .inner {
  display: block;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}

header .inner .logo {
  display: block;
  width: 160px;
  padding: 17px 0 0 2%;
}

@media screen and (max-width: 800px) {
  header .inner .logo {
    width: 120px;
    margin: 0 auto 0 0;
    padding: 7px 0 0 10px;
  }
}

header .inner .logo img {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

header .inner .nav {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 800px) {
  header .inner .nav {
    position: fixed;
    top: 60px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    -webkit-transition: all 0.5s ease 0s;
    -ms-transition: all 0.5s ease 0s;
    -moz-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    overflow-y: scroll;
  }
  header .inner .nav.on {
    right: 0;
  }
}

header .inner .nav ul {
  letter-spacing: -.4em;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul {
    border-top: 1px solid #999;
  }
}

header .inner .nav ul li {
  position: relative;
  letter-spacing: normal;
  display: inline-block;
  margin: 0 15px;
}

header .inner .nav ul li:last-child {
  margin-right: 0;
}

header .inner .nav ul li:before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li:before {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li {
    display: block;
    text-align: left;
    border-bottom: 1px solid #999;
    margin: auto;
  }
}

header .inner .nav ul li a {
  display: block;
  color: #000;
  line-height: 86px;
  letter-spacing: .04em;
  font-size: 1.16em;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li a {
    color: #333;
    line-height: 1.5;
    padding: 10px 20px;
  }
}

header .inner .nav ul li a span {
  display: none;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li a span {
    display: inline;
    font-family: 'Oswald', sans-serif;
    color: #E8351E;
    font-size: 1.5em;
    font-weight: bold;
    letter-spacing: .06em;
  }
}

header .inner .nav ul li.now:before {
  background: #E8351E;
}

header .inner .nav ul li:hover:before {
  background: #E8351E;
}

header .inner .nav ul li:hover a {
  opacity: .5;
}

header .inner .nav ul li .arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  display: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

header .inner .nav ul li .arrow path {
  stroke: #fff;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li .arrow path {
    stroke: #E8351E;
  }
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li .arrow {
    display: block;
  }
}

header .inner .nav ul li:last-child:before {
  display: none;
}

header .inner .nav ul li:last-child a {
  width: 160px;
  background: #E8351E;
  color: #fff;
  padding: 0 10px;
  border: 2px solid #E8351E;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul li:last-child a {
    background: none;
    border: none;
    width: auto;
    color: #333;
    padding: 10px 20px;
  }
}

header .inner .nav ul li:last-child .arrow {
  display: block;
}

header .inner .nav ul li:last-child:hover a {
  opacity: 1;
  background: #fff;
  color: #E8351E;
}

header .inner .nav ul li:last-child:hover path {
  stroke: #E8351E;
}

header .inner .nav ul li.off a {
  opacity: .5;
}

header .inner .nav ul li.off:before {
  display: none;
}

header .inner .nav ul.sp {
  display: none;
}

@media screen and (max-width: 800px) {
  header .inner .nav ul.sp {
    display: block;
  }
}

@media screen and (max-width: 800px) {
  header .inner .nav ul.sp li {
    display: block;
    border-bottom: none;
  }
}

@media screen and (max-width: 800px) {
  header .inner .nav ul.sp li a {
    line-height: 30px;
  }
}

header .inner .nav .img_area {
  display: none;
}

@media screen and (max-width: 800px) {
  header .inner .nav .img_area {
    display: block;
    text-align: center;
    margin: 30px auto;
  }
  header .inner .nav .img_area a {
    margin: 0 10px;
  }
}

header .sp_menu {
  display: none;
}

@media screen and (max-width: 800px) {
  header .sp_menu {
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    top: 0;
    right: 0;
  }
}

header .sp_menu span {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  position: absolute;
  display: block;
  width: 32px;
  height: 3px;
  background: #E8351E;
}

header .sp_menu span:first-child {
  top: 18px;
  right: 14px;
  margin: auto;
}

header .sp_menu span:nth-child(2) {
  top: 29px;
  right: 14px;
  margin: auto;
}

header .sp_menu span:last-child {
  top: 40px;
  right: 14px;
  margin: auto;
}

header .sp_menu.on span:first-child {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 29px;
}

header .sp_menu.on span:nth-child(2) {
  opacity: 0;
}

header .sp_menu.on span:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 29px;
}

/*---------------------------------------------------------
	footer
*/
footer .contact {
  padding: 115px 0;
}

footer .contact .ttl {
  text-align: center;
  margin: 0 auto 30px;
}

footer .contact .ttl h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  footer .contact .ttl h2 {
    font-size: 3em;
  }
}

footer .contact .ttl p {
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  footer .contact .ttl p {
    font-size: 1.13em;
  }
}

footer .contact .ttl p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  footer .contact .ttl p.txt {
    line-height: 2;
    max-width: 80%;
    margin: auto;
  }
}

footer .contact ul {
  letter-spacing: -.4em;
  text-align: center;
}

footer .contact ul li {
  display: inline-block;
  width: 240px;
  height: 120px;
  border: 2px solid #E8351E;
  margin: 0 30px 30px;
  vertical-align: top;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

footer .contact ul li line, footer .contact ul li path {
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (min-width: 376px) {
  footer .contact ul li.ft_icon_mail:hover {
    background: #E8351E;
  }
  footer .contact ul li.ft_icon_mail:hover p {
    color: #fff;
  }
  footer .contact ul li.ft_icon_mail:hover line, footer .contact ul li.ft_icon_mail:hover path {
    stroke: #fff;
  }
}

@media screen and (min-width: 376px) and (max-width: 375px) {
  footer .contact ul li.ft_icon_mail:hover line, footer .contact ul li.ft_icon_mail:hover path {
    stroke: #E8351E;
  }
}

footer .contact ul li a {
  display: block;
  height: 100%;
}

footer .contact ul li .icon {
  margin: 0 auto 10px;
  padding-top: 15px;
}

footer .contact ul li p {
  letter-spacing: .04em;
  font-weight: bold;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

footer .contact ul li p.tel {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
}

footer .contact ul li p.web {
  font-size: 1.33em;
}

footer .inner {
  position: relative;
  border-top: 2px solid #E8351E;
}

footer .inner .top_btn {
  position: absolute;
  top: -30px;
  right: 20px;
}

footer .inner .ft_logo {
  display: block;
  width: 160px;
  margin: 45px auto 40px;
}

footer .inner .ft_logo img {
  width: 100%;
}

footer .inner .menu {
  letter-spacing: -.4em;
  text-align: center;
}

footer .inner .menu li {
  display: inline-block;
  letter-spacing: .04em;
  margin: 0 20px 40px;
  font-weight: bold;
}

footer .inner .menu li a {
  font-size: 1.16em;
}

footer .inner .menu li a:hover {
  opacity: .5;
}

footer .inner .img_area {
  letter-spacing: -.4em;
  text-align: center;
}

@media screen and (max-width: 800px) {
  footer .inner .img_area {
    display: none;
  }
}

footer .inner .img_area img {
  display: inline-block;
  margin: 0 20px 40px;
}

footer .inner .info {
  text-align: center;
}

@media screen and (max-width: 800px) {
  footer .inner .info {
    margin: 20px auto 0;
  }
}

footer .inner .info p {
  letter-spacing: .04em;
}

footer .inner .info p.name {
  font-size: 1.33em;
  font-weight: bold;
  margin: 0 auto 20px;
}

footer .inner .info p.add {
  line-height: 1.5;
}

footer address {
  letter-spacing: normal;
  text-align: center;
  font-size: 0.83em;
  padding: 30px 0 20px;
  font-style: normal;
}

/*====================================================================
	03 Top_style
====================================================================*/
/*---------------------------------------------------------
	Top
*/
#top {
  position: relative;
  overflow-x: hidden;
}

#top .main_area {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-image: url("../images/top_main_pc.jpg");
}

@media screen and (max-width: 800px) {
  #top .main_area {
    background-image: url("../images/top_main_sp.jpg");
  }
}

#top .main_area .catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  text-align: center;
}

#top .main_area .catch p {
  color: #fff;
}

#top .main_area .catch p.ttl {
  font-size: 4em;
  margin: 0 auto 30px;
  letter-spacing: .04em;
  font-family: 'Noto Serif', Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media screen and (max-width: 800px) {
  #top .main_area .catch p.ttl {
    font-size: 3em;
    line-height: 1.5;
  }
}

#top .main_area .catch p.txt {
  font-size: 1.5em;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #top .main_area .catch p.txt {
    font-size: 1.13em;
    font-weight: bold;
  }
}

#top .main_area .catch p span {
  display: none;
}

@media screen and (max-width: 800px) {
  #top .main_area .catch p span {
    display: inline;
  }
}

#top .main_area .scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin-bottom: 70px;
}

#top .main_area .scroll:before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 2px;
  height: 60px;
  background: #fff;
  -webkit-animation: scroll 5s infinite;
  -moz-animation: scroll 5s infinite;
  animation: scroll 5s infinite;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes scroll {
  0% {
    height: 0;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 60px;
  }
}

@-moz-keyframes scroll {
  0% {
    height: 0;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 60px;
  }
}

@keyframes scroll {
  0% {
    height: 0;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 60px;
  }
}

#top .main_area .scroll p {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 1.33em;
  letter-spacing: .06em;
}

#top .cts {
  position: relative;
}

#top .cts .inner {
  display: block;
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

#top .cts .ttl {
  text-align: center;
}

#top .cts .ttl h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  letter-spacing: 0.15em;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  #top .cts .ttl h2 {
    font-size: 3em;
  }
}

#top .cts .ttl p {
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #top .cts .ttl p {
    font-size: 1.13em;
  }
}

#top .cts .ttl p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #top .cts .ttl p.txt {
    line-height: 2;
    max-width: 80%;
    margin: auto;
  }
}

#top .cts .more {
  position: relative;
  display: block;
  width: 190px;
  height: 48px;
  margin: auto;
  border: 2px solid #E8351E;
}

@media screen and (max-width: 800px) {
  #top .cts .more {
    width: 240px;
    height: 64px;
  }
}

#top .cts .more p {
  line-height: 44px;
  font-size: 1.13em;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: .1em;
}

@media screen and (max-width: 800px) {
  #top .cts .more p {
    line-height: 60px;
  }
}

#top .cts .more .arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#top .cts.product {
  padding: 95px 0 120px;
}

#top .cts.product .bg_area img {
  position: absolute;
  width: 406px;
  z-index: -1;
}

#top .cts.product .bg_area img.bg_01 {
  top: -75px;
  left: -60px;
}

#top .cts.product .bg_area img.bg_02 {
  bottom: 55px;
  right: 60px;
}

@media screen and (max-width: 800px) {
  #top .cts.product .bg_area img.bg_02 {
    right: -270px;
  }
}

#top .cts.product h2 {
  color: #E8351E;
}

#top .cts.product .product_list {
  position: relative;
  letter-spacing: -.4em;
  text-align: center;
  box-shadow: 0 0 15px 2px #eee;
  margin: 30px auto 60px;
  background: #fff;
}

@media screen and (max-width: 800px) {
  #top .cts.product .product_list {
    width: 80%;
    background: none;
    box-shadow: none;
  }
}

#top .cts.product .product_list li {
  display: inline-block;
  width: 33%;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #eee;
  padding: 20px 0;
}

@media screen and (max-width: 800px) {
  #top .cts.product .product_list li {
    border: none;
    padding: 20px .5%;
    margin-right: 1%;
    background: #fff;
    box-shadow: 0 0 15px 2px #eee;
  }
}

#top .cts.product .product_list li:nth-child(3n) {
  border-right: none;
}

#top .cts.product .product_list li:nth-child(n + 4) {
  border-bottom: none;
}

#top .cts.product .product_list li img {
  display: block;
  width: 90%;
  margin: 0 auto 15px;
}

#top .cts.product .product_list li p {
  font-size: 1.25em;
  letter-spacing: .04em;
  margin: 0 auto;
  font-weight: bold;
}

#top .cts.product .product_list .slick-list {
  overflow: initial;
}

#top .cts.product .product_list .slick-dots {
  bottom: -35px;
  background: none;
}

#top .cts.product .product_list .slick-dots li {
  width: 10px;
  border: none;
  margin: 0 5px;
  padding: 0;
  box-shadow: none;
  background: url("../images/dot_2.svg") no-repeat;
}

#top .cts.product .product_list .slick-dots li.slick-active {
  background: url("../images/dot_1.svg") no-repeat;
}

#top .cts.product .product_list .slick-dots li button {
  width: 10px;
  height: 10px;
}

#top .cts.product .product_list .slick-dots li button:before {
  content: "";
  width: 10px;
  height: 10px;
}

#top .cts.product .more {
  background: #fff;
}

#top .cts.product .more p {
  color: #E8351E;
}

#top .cts.product .more:hover {
  background: #E8351E;
}

#top .cts.product .more:hover p {
  color: #fff;
}

#top .cts.product .more:hover .arrow svg path {
  stroke: #fff;
}

#top .cts.flow {
  background: #eee;
}

#top .cts.flow .bg_area {
  display: block;
  width: 100%;
  height: 380px;
  background-image: url("../images/top_flow_pc.jpg");
  background-position: top center;
  background-size: cover;
}

@media screen and (max-width: 800px) {
  #top .cts.flow .bg_area {
    background-image: url("../images/top_flow_sp.jpg");
  }
}

#top .cts.flow .ttl_area {
  display: block;
  width: 780px;
  max-width: 90%;
  height: 280px;
  margin: -100px auto 0;
  background: #E8351E;
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 800px) {
  #top .cts.flow .ttl_area {
    height: auto;
    margin: -80px auto 0;
    padding: 0 0 40px;
  }
}

#top .cts.flow .ttl_area .ttl {
  padding: 55px 0 30px;
}

@media screen and (max-width: 800px) {
  #top .cts.flow .ttl_area .ttl {
    padding: 40px 0 30px;
  }
}

#top .cts.flow .ttl_area .ttl h2 {
  color: #fff;
}

#top .cts.flow .ttl_area .ttl p {
  color: #fff;
}

@media screen and (max-width: 800px) {
  #top .cts.flow .ttl_area .ttl p.txt {
    display: block;
    width: 90%;
    margin: auto;
  }
}

#top .cts.flow .ttl_area .more {
  border-color: #fff;
}

#top .cts.flow .ttl_area .more p {
  color: #fff;
}

#top .cts.flow .ttl_area .more .arrow svg path {
  stroke: #fff;
}

#top .cts.flow .ttl_area .more:hover {
  background: #fff;
}

#top .cts.flow .ttl_area .more:hover p {
  color: #E8351E;
}

#top .cts.flow .ttl_area .more:hover .arrow svg path {
  stroke: #E8351E;
}

#top .cts.company {
  padding: 100px 0;
  background: #eee;
}

#top .cts.company .inner {
  position: relative;
  height: 630px;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner {
    height: auto;
  }
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .img_area {
    padding-top: 80%;
  }
}

#top .cts.company .inner .img_area img {
  position: absolute;
}

#top .cts.company .inner .img_area img.img_01 {
  left: 50%;
  width: 240px;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .img_area img.img_01 {
    top: 0;
    left: auto;
    right: 2%;
    width: 32%;
  }
}

#top .cts.company .inner .img_area img.img_02 {
  top: 100px;
  left: 0;
  width: 406px;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .img_area img.img_02 {
    top: 8%;
    left: 2%;
    width: 55%;
  }
}

#top .cts.company .inner .img_area img.img_03 {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 230px;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .img_area img.img_03 {
    top: 36%;
    left: 68%;
    width: 32%;
  }
}

#top .cts.company .inner .ttl_area {
  position: absolute;
  top: 320px;
  right: 0;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .ttl_area {
    position: relative;
    top: 0;
  }
}

#top .cts.company .inner .ttl_area .ttl {
  margin-bottom: 30px;
}

#top .cts.company .inner .ttl_area .ttl h2 {
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #top .cts.company .inner .ttl_area .more {
    background: #fff;
  }
}

#top .cts.company .inner .ttl_area .more p {
  color: #E8351E;
}

#top .cts.company .inner .ttl_area .more:hover {
  background: #E8351E;
}

#top .cts.company .inner .ttl_area .more:hover p {
  color: #fff;
}

#top .cts.company .inner .ttl_area .more:hover .arrow svg path {
  stroke: #fff;
}

#top .cts.recruit {
  position: relative;
  display: block;
  width: 100%;
  padding: 20px 0;
  background-image: url("../images/top_recruit_pc.jpg");
  background-position: top center;
  background-size: cover;
}

@media screen and (max-width: 800px) {
  #top .cts.recruit {
    background-image: url("../images/top_recruit_sp.jpg");
  }
}

#top .cts.recruit .ttl_area {
  display: block;
  width: 96%;
  background: rgba(0, 0, 0, 0.5);
  margin: auto;
  padding: 50px 0;
}

@media screen and (max-width: 800px) {
  #top .cts.recruit .ttl_area {
    width: 90%;
  }
}

#top .cts.recruit .ttl_area .ttl {
  margin-bottom: 30px;
}

#top .cts.recruit .ttl_area .ttl h2 {
  color: #fff;
}

#top .cts.recruit .ttl_area .ttl p {
  color: #fff;
}

#top .cts.recruit .ttl_area .more {
  border-color: #fff;
}

#top .cts.recruit .ttl_area .more p {
  color: #fff;
}

#top .cts.recruit .ttl_area .more .arrow svg path {
  stroke: #fff;
}

#top .cts.recruit .ttl_area .more:hover {
  background: #fff;
}

#top .cts.recruit .ttl_area .more:hover p {
  color: #E8351E;
}

#top .cts.recruit .ttl_area .more:hover .arrow svg path {
  stroke: #E8351E;
}

/*====================================================================
	04 product_style
====================================================================*/
/*---------------------------------------------------------
	product
*/
#product .ttl_area {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #product .ttl_area {
    height: auto;
  }
}

#product .ttl_area h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  padding-top: 60px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #product .ttl_area h1 {
    padding-top: 40px;
  }
}

#product .ttl_area p {
  color: #fff;
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #product .ttl_area p {
    font-size: 1.25em;
  }
}

#product .ttl_area p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #product .ttl_area p.txt {
    display: block;
    width: 90%;
    margin: auto;
    line-height: 2;
    padding-bottom: 40px;
  }
}

#product .ttl_area {
  background-image: url("../images/product_bg_pc.jpg");
}

@media screen and (max-width: 800px) {
  #product .ttl_area {
    background-image: url("../images/product_bg_sp.jpg");
  }
}

#product .cts .catch {
  width: 680px;
  max-width: 96%;
  margin: 60px auto;
  font-size: 1.25em;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #product .cts .catch {
    max-width: 90%;
    font-size: 1.13em;
  }
}

#product .cts .list {
  display: block;
  width: 960px;
  max-width: 100%;
  margin: 0 auto 40px;
  letter-spacing: -.4em;
}

#product .cts .list li {
  display: inline-block;
  width: 50%;
  padding: 0 3%;
}

@media screen and (max-width: 800px) {
  #product .cts .list li {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}

#product .cts .list li img {
  margin: 0 auto 20px;
}

#product .cts .list li p {
  letter-spacing: .04em;
  text-align: center;
  margin: 0 auto 60px;
  font-size: 1.33em;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  #product .cts .list li p {
    margin: 0 auto 40px;
    font-size: 1.13em;
  }
}

#product .cts .proposal {
  background: #eee;
  padding: 60px 0 40px;
  text-align: center;
}

#product .cts .proposal h2 {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0 auto 30px;
}

#product .cts .proposal p {
  font-size: 1.25em;
  margin: 0 auto 40px;
  line-height: 2;
  letter-spacing: .04em;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal p {
    display: block;
    width: 90%;
    font-size: 1.13em;
    text-align: left;
  }
}

#product .cts .proposal ul {
  display: block;
  width: 960px;
  max-width: 90%;
  letter-spacing: -.4em;
  margin: auto;
}

#product .cts .proposal ul li {
  display: inline-block;
  width: 23.5%;
  margin: 0 2% 0 0;
  vertical-align: top;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal ul li {
    width: 49%;
    margin: 0 0 20px;
  }
}

#product .cts .proposal ul li:last-child {
  margin: 0;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal ul li:last-child {
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 800px) {
  #product .cts .proposal ul li:nth-child(2n) {
    margin: 0 0 20px 2%;
  }
}

#product .cts .proposal ul li img {
  margin: 0 0 20px;
}

#product .cts .proposal ul li h3 {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: .04em;
  margin: 0 0 15px;
}

#product .cts .proposal .contact {
  padding: 40px 0;
}

#product .cts .proposal .contact .ttl {
  text-align: center;
  margin: 0 auto 30px;
}

#product .cts .proposal .contact .ttl h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal .contact .ttl h2 {
    font-size: 3em;
  }
}

#product .cts .proposal .contact .ttl p {
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal .contact .ttl p {
    font-size: 1.13em;
  }
}

#product .cts .proposal .contact .ttl p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal .contact .ttl p.txt {
    line-height: 2;
    max-width: 80%;
    margin: auto;
  }
}

#product .cts .proposal .contact ul {
  letter-spacing: -.4em;
  text-align: center;
}

#product .cts .proposal .contact ul li {
  display: inline-block;
  width: 240px;
  height: 120px;
  border: 2px solid #E8351E;
  margin: 0 30px 30px;
  vertical-align: top;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#product .cts .proposal .contact ul li line, #product .cts .proposal .contact ul li path {
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (min-width: 376px) {
  #product .cts .proposal .contact ul li.ft_icon_mail:hover {
    background: #E8351E;
  }
  #product .cts .proposal .contact ul li.ft_icon_mail:hover p {
    color: #fff;
  }
  #product .cts .proposal .contact ul li.ft_icon_mail:hover line, #product .cts .proposal .contact ul li.ft_icon_mail:hover path {
    stroke: #fff;
  }
}

@media screen and (min-width: 376px) and (max-width: 375px) {
  #product .cts .proposal .contact ul li.ft_icon_mail:hover line, #product .cts .proposal .contact ul li.ft_icon_mail:hover path {
    stroke: #E8351E;
  }
}

#product .cts .proposal .contact ul li a {
  display: block;
  height: 100%;
}

#product .cts .proposal .contact ul li .icon {
  margin: 0 auto 10px;
  padding-top: 15px;
}

#product .cts .proposal .contact ul li p {
  letter-spacing: .04em;
  font-weight: bold;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

@media screen and (max-width: 800px) {
  #product .cts .proposal .contact ul li p {
    text-align: center;
  }
}

#product .cts .proposal .contact ul li p.tel {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
}

#product .cts .proposal .contact ul li p.web {
  font-size: 1.33em;
}

#product .cts .case_studies {
  padding: 60px 0 40px;
  text-align: center;
}

#product .cts .case_studies h2 {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: .06em;
  margin: 0 auto 30px;
}

#product .cts .case_studies p {
  font-size: 1.25em;
  margin: 0 auto 40px;
  line-height: 2;
  letter-spacing: .04em;
}

@media screen and (max-width: 800px) {
  #product .cts .case_studies p {
    display: block;
    width: 90%;
    font-size: 1.13em;
  }
}

#product .cts .case_studies ul {
  display: block;
  width: 960px;
  max-width: 100%;
  letter-spacing: -.4em;
  margin: auto;
}

#product .cts .case_studies ul li {
  display: inline-block;
  width: 49%;
  vertical-align: top;
  text-align: left;
}

@media screen and (max-width: 800px) {
  #product .cts .case_studies ul li {
    display: block;
    width: 90%;
    margin: 0 auto 20px;
  }
}

#product .cts .case_studies ul li:first-child {
  margin: 0 2% 0 0;
}

@media screen and (max-width: 800px) {
  #product .cts .case_studies ul li:first-child {
    margin: 0 auto 20px;
  }
}

#product .cts .case_studies ul li img {
  margin: 0 0 20px;
}

#product .cts .case_studies ul li h3 {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: .04em;
  margin: 0 0 15px;
}

#product .cts .case_studies ul li p {
  letter-spacing: .04em;
  margin: 0;
}

@media screen and (max-width: 800px) {
  #product .cts .case_studies ul li p {
    width: 100%;
  }
}

/*====================================================================
	05 flow_style
====================================================================*/
/*---------------------------------------------------------
	flow
*/
#flow .ttl_area {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #flow .ttl_area {
    height: auto;
  }
}

#flow .ttl_area h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  padding-top: 60px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #flow .ttl_area h1 {
    padding-top: 40px;
  }
}

#flow .ttl_area p {
  color: #fff;
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #flow .ttl_area p {
    font-size: 1.25em;
  }
}

#flow .ttl_area p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #flow .ttl_area p.txt {
    display: block;
    width: 90%;
    margin: auto;
    line-height: 2;
    padding-bottom: 40px;
  }
}

#flow .ttl_area {
  background-image: url("../images/flow_bg_pc.jpg");
}

@media screen and (max-width: 800px) {
  #flow .ttl_area {
    background-image: url("../images/flow_bg_sp.jpg");
  }
}

#flow .cts {
  display: block;
  width: 960px;
  max-width: 96%;
  margin: 0 auto 40px;
}

#flow .cts h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 60px auto;
}

@media screen and (max-width: 800px) {
  #flow .cts h2 {
    font-size: 1.66em;
  }
}

#flow .cts img {
  display: block;
}

#flow .cts .flow_wrap {
  position: relative;
  margin-bottom: 100px;
}

#flow .cts .flow_wrap:before {
  content: "";
  position: absolute;
  top: 4%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  display: block;
  width: 1px;
  height: 92%;
  background: #999;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap:before {
    top: 3%;
    left: 12px;
    height: 94%;
  }
}

#flow .cts .flow_wrap h3 {
  font-size: 1.33em;
  font-weight: bold;
  margin: 10px 0;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap h3 {
    text-align: left;
    font-size: 1.13em;
    margin: 10px 0 10px auto;
  }
}

#flow .cts .flow_wrap p {
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap p {
    text-align: left;
    font-size: 1.13em;
    margin: 10px 0 10px auto;
  }
}

#flow .cts .flow_wrap .cts_inner {
  position: relative;
  width: 50%;
  margin-top: -3%;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .cts_inner {
    width: 100%;
    margin: 0 0 60px auto;
    padding-left: 20%;
  }
}

#flow .cts .flow_wrap .cts_inner.cts_top {
  margin-top: 0;
}

#flow .cts .flow_wrap .cts_inner:before {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 24px;
  height: 28px;
  background-image: url("../images/dot_1.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

#flow .cts .flow_wrap .left:before {
  right: -12px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .left:before {
    right: 0;
    left: 0;
  }
}

#flow .cts .flow_wrap .left:after {
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .left:after {
    right: auto;
    left: 0;
  }
}

#flow .cts .flow_wrap .right:before {
  left: -12px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .right:before {
    left: 0;
  }
}

#flow .cts .flow_wrap .type_img {
  text-align: center;
}

#flow .cts .flow_wrap .type_img:after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 12.5%;
  height: 0;
  border-top: 2px dotted #E8351E;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img:after {
    width: 20%;
    right: auto;
    left: 0;
  }
}

#flow .cts .flow_wrap .type_img h3 {
  width: 87.5%;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img h3 {
    width: 100%;
  }
}

#flow .cts .flow_wrap .type_img p {
  width: 87.5%;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img p {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img.left {
    margin: 0 0 60px auto;
  }
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img.left img {
    margin: 0 0 0 auto;
  }
}

#flow .cts .flow_wrap .type_img.right {
  margin: -3% 0 0 auto;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img.right {
    margin: 0 0 60px auto;
  }
}

#flow .cts .flow_wrap .type_img.right img {
  margin: 0 0 0 auto;
}

#flow .cts .flow_wrap .type_img.right h3 {
  margin: 10px 0 10px auto;
}

#flow .cts .flow_wrap .type_img.right p {
  margin: 0 0 0 auto;
}

#flow .cts .flow_wrap .type_img .img_wrap {
  position: relative;
}

#flow .cts .flow_wrap .type_img .img_wrap img {
  width: 87.5%;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_img .img_wrap img {
    width: 100%;
  }
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon {
    text-align: left;
  }
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon .img_wrap {
    max-width: 100px;
  }
}

#flow .cts .flow_wrap .type_icon.left {
  text-align: right;
  padding-right: 50px;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.left {
    padding: 0 0 0 20%;
    text-align: left;
    margin: 0 0 60px auto;
  }
}

#flow .cts .flow_wrap .type_icon.left .txt_area {
  display: inline-table;
  vertical-align: middle;
  text-align: left;
}

#flow .cts .flow_wrap .type_icon.left .txt_area p {
  line-height: 1.5;
}

#flow .cts .flow_wrap .type_icon.left .img_wrap {
  display: inline-table;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.left .pc {
    display: none;
  }
}

#flow .cts .flow_wrap .type_icon.left .sp {
  display: none;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.left .sp {
    display: inline-block;
  }
}

#flow .cts .flow_wrap .type_icon.right {
  text-align: left;
  margin: 0 0 0 auto;
  padding-left: 50px;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.right {
    padding: 0 0 0 20%;
    margin: 0 0 60px auto;
  }
}

#flow .cts .flow_wrap .type_icon.right h3 {
  display: inline-table;
  margin: 0 50px 0 0;
  vertical-align: middle;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.right h3.pc {
    display: none;
  }
}

#flow .cts .flow_wrap .type_icon.right h3.sp {
  display: none;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_icon.right h3.sp {
    display: inline-block;
  }
}

#flow .cts .flow_wrap .type_icon.right .img_wrap {
  display: inline-table;
  vertical-align: middle;
}

#flow .cts .flow_wrap .type_txt {
  margin: 0 0 0 auto;
  padding-left: 50px;
}

@media screen and (max-width: 800px) {
  #flow .cts .flow_wrap .type_txt {
    margin: 0 0 60px auto;
    text-align: left;
    padding: 0 0 0 20%;
  }
}

#flow .cts .test_wrap ul {
  letter-spacing: -.4em;
}

#flow .cts .test_wrap ul li {
  display: inline-block;
  width: 48%;
  letter-spacing: normal;
  vertical-align: top;
  margin: 0 0 40px;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap ul li {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto 20px;
  }
}

#flow .cts .test_wrap ul li:nth-child(2n-1) {
  margin: 0 4% 40px 0;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap ul li:nth-child(2n-1) {
    margin: 0 auto 20px;
  }
}

#flow .cts .test_wrap ul li img {
  margin: auto;
}

#flow .cts .test_wrap ul li h3 {
  text-align: center;
  font-size: 1.33em;
  font-weight: bold;
  margin: 20px auto 10px;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap ul li h3 {
    font-size: 1.13em;
  }
}

#flow .cts .test_wrap ul li p {
  font-size: 1.33em;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap ul li p {
    font-size: 1.13em;
  }
}

#flow .cts .test_wrap .ring {
  display: block;
  width: 760px;
  max-width: 96%;
  margin: 0 auto 40px;
  padding: 20px;
  background: #eee;
  text-align: center;
}

#flow .cts .test_wrap .ring img {
  margin: 0 auto 60px;
}

#flow .cts .test_wrap .ring h3 {
  text-align: center;
  font-size: 1.33em;
  font-weight: bold;
  margin: 0 auto 10px;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap .ring h3 {
    font-size: 1.13em;
  }
}

#flow .cts .test_wrap .ring p {
  font-size: 1.33em;
  line-height: 2;
  max-width: 460px;
  margin: auto;
}

@media screen and (max-width: 800px) {
  #flow .cts .test_wrap .ring p {
    font-size: 1.13em;
  }
}

/*====================================================================
	06 company_style
====================================================================*/
/*---------------------------------------------------------
	company
*/
#company .ttl_area {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #company .ttl_area {
    height: auto;
  }
}

#company .ttl_area h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  padding-top: 60px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #company .ttl_area h1 {
    padding-top: 40px;
  }
}

#company .ttl_area p {
  color: #fff;
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #company .ttl_area p {
    font-size: 1.25em;
  }
}

#company .ttl_area p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #company .ttl_area p.txt {
    display: block;
    width: 90%;
    margin: auto;
    line-height: 2;
    padding-bottom: 40px;
  }
}

#company .ttl_area {
  background-image: url("../images/company_bg_pc.jpg");
}

@media screen and (max-width: 800px) {
  #company .ttl_area {
    background-image: url("../images/company_bg_sp.jpg");
  }
}

#company .cts {
  position: relative;
  overflow-x: hidden;
}

#company .cts h2 {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 50px;
}

@media screen and (max-width: 800px) {
  #company .cts h2 {
    font-size: 1.75em;
    letter-spacing: .06em;
  }
}

#company .cts .greeting {
  padding: 60px 0 100px;
}

#company .cts .greeting p {
  display: block;
  width: 640px;
  font-size: 1.13em;
  margin: 0 auto;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #company .cts .greeting p {
    width: 90%;
  }
}

@media screen and (max-width: 800px) {
  #company .cts .greeting p span {
    display: none;
  }
}

#company .cts .history {
  padding: 60px 0;
  background: #eee;
}

#company .cts .history .history_wrap {
  overflow: scroll;
}

#company .cts .history .history_wrap .selector::-webkit-scrollbar {
  display: none;
}

#company .cts .history .history_wrap ul {
  position: relative;
  letter-spacing: -.4em;
  width: max-content;
  padding: 0 0 0 150px;
}

@media screen and (max-width: 800px) {
  #company .cts .history .history_wrap ul {
    padding: 0 0 0 20px;
  }
}

#company .cts .history .history_wrap ul.edge {
  width: 9400px;
}

@media screen and (max-width: 800px) {
  #company .cts .history .history_wrap ul.edge {
    width: 7500px;
  }
}

#company .cts .history .history_wrap ul:before {
  content: "";
  position: absolute;
  top: 13px;
  left: 350px;
  display: block;
  width: 100%;
  height: 2px;
  background: #999;
}

@media screen and (max-width: 800px) {
  #company .cts .history .history_wrap ul:before {
    left: 170px;
  }
}

#company .cts .history .history_wrap ul li {
  position: relative;
  display: inline-block;
  width: 400px;
  vertical-align: top;
  letter-spacing: .04em;
  margin: 60px 40px 0 0;
  padding: 25px 25px 0;
  background: #fff;
}

@media screen and (max-width: 800px) {
  #company .cts .history .history_wrap ul li {
    width: 300px;
  }
}

#company .cts .history .history_wrap ul li:before {
  content: url("../images/company_hexagon.svg");
  position: absolute;
  top: -60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

#company .cts .history .history_wrap ul li h3 {
  font-family: 'Oswald', sans-serif;
  color: #E8351E;
  font-size: 1.33em;
  margin: 0 0 15px;
}

#company .cts .history .history_wrap ul li p {
  font-size: 1.13em;
  line-height: 2;
  padding-bottom: 25px;
}

#company .cts .overview {
  padding: 60px 0 100px;
}

#company .cts .overview ul {
  display: block;
  width: 600px;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #company .cts .overview ul {
    max-width: 90%;
  }
}

#company .cts .overview ul li {
  position: relative;
  letter-spacing: -.4em;
  padding: 25px 0;
}

#company .cts .overview ul li:before, #company .cts .overview ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 1px;
}

#company .cts .overview ul li:before {
  left: 0;
  width: 120px;
  background: #E8351E;
}

@media screen and (max-width: 800px) {
  #company .cts .overview ul li:before {
    width: 25%;
  }
}

#company .cts .overview ul li:after {
  right: 0;
  width: 460px;
  background: #ccc;
}

@media screen and (max-width: 800px) {
  #company .cts .overview ul li:after {
    width: 70%;
  }
}

#company .cts .overview ul li h3 {
  display: inline-block;
  width: 120px;
  vertical-align: top;
  letter-spacing: .06em;
  margin: 0 20px 0 0;
  padding: 0 0 0 10px;
  font-size: 1.13em;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  #company .cts .overview ul li h3 {
    width: 25%;
    margin: 0 5% 0 0;
  }
}

#company .cts .overview ul li p {
  display: inline-block;
  width: 460px;
  vertical-align: top;
  letter-spacing: .04em;
  font-size: 1.13em;
  padding: 0 0 0 10px;
  line-height: 1.5;
}

#company .cts .overview ul li p span a {
  color: #6291A6;
  text-decoration: underline;
}

@media screen and (max-width: 800px) {
  #company .cts .overview ul li p {
    width: 70%;
  }
}

#company .cts .sukagawa {
  padding: 60px 0 100px;
  background: #eee;
}

#company .cts .sukagawa p {
  text-align: center;
  font-size: 1.13em;
  line-height: 1.5;
  margin: 0 auto 30px;
}

#company .cts .sukagawa p span a {
  color: #6291A6;
  text-decoration: underline;
}

#company .cts .sukagawa ul {
  width: 50%;
  margin: 0 auto;
}

@media screen and (max-width: 800px) {
  #company .cts .sukagawa ul {
    width: 90%;
  }
}

#company .cts .sukagawa ul li {
  position: relative;
  margin: 0 2%;
}

#company .cts .sukagawa ul li h3 {
  text-align: center;
  margin: 10px auto 0;
}

#company .cts .sukagawa ul .slick-list {
  overflow: initial;
}

#company .cts .sukagawa ul .slick-prev:before {
  content: url("../images/arrow_left.svg");
  z-index: -1;
}

#company .cts .sukagawa ul .slick-next:before {
  content: url("../images/arrow_right.svg");
  z-index: -1;
}

@media screen and (max-width: 800px) {
  #company .cts .sukagawa ul .slick-prev {
    left: 0;
  }
}

@media screen and (max-width: 800px) {
  #company .cts .sukagawa ul .slick-next {
    right: 0;
  }
}

/*====================================================================
	07 recruit_style
====================================================================*/
/*---------------------------------------------------------
	recruit
*/
#recruit .ttl_area {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #recruit .ttl_area {
    height: auto;
  }
}

#recruit .ttl_area h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  padding-top: 60px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #recruit .ttl_area h1 {
    padding-top: 40px;
  }
}

#recruit .ttl_area p {
  color: #fff;
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #recruit .ttl_area p {
    font-size: 1.25em;
  }
}

#recruit .ttl_area p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #recruit .ttl_area p.txt {
    display: block;
    width: 90%;
    margin: auto;
    line-height: 2;
    padding-bottom: 40px;
  }
}

#recruit .ttl_area {
  background-image: url("../images/recruit_bg_pc.jpg");
}

@media screen and (max-width: 800px) {
  #recruit .ttl_area {
    background-image: url("../images/recruit_bg_sp.jpg");
  }
}

#recruit .cts {
  padding: 60px 0 0;
}

#recruit .cts h2 {
  text-align: center;
  margin: 0 auto 25px;
  font-size: 2em;
  font-weight: bold;
  letter-spacing: .06em;
}

#recruit .cts .link {
  letter-spacing: -.4em;
  text-align: center;
  margin: 0 auto 80px;
}

#recruit .cts .link li {
  display: inline-block;
  width: 175px;
  letter-spacing: .04em;
  text-align: center;
  font-size: 1.13em;
  line-height: 32px;
  border-right: 2px solid #E8351E;
}

@media screen and (max-width: 800px) {
  #recruit .cts .link li {
    width: 30%;
  }
}

#recruit .cts .link li:last-child {
  border-right: none;
}

#recruit .cts .link li a {
  display: block;
}

#recruit .cts .link li a:hover {
  opacity: .5;
}

#recruit .cts .inner {
  display: block;
  width: 600px;
  max-width: 100%;
  margin: 0 auto;
}

#recruit .cts .inner h3 {
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 40px;
}

#recruit .cts .inner ul {
  margin: 0 auto 80px;
}

#recruit .cts .inner ul li {
  position: relative;
  letter-spacing: -.4em;
  padding: 25px 0;
}

#recruit .cts .inner ul li:before, #recruit .cts .inner ul li:after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 1px;
}

#recruit .cts .inner ul li:before {
  left: 0;
  width: 120px;
  background: #E8351E;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner ul li:before {
    width: 25%;
  }
}

#recruit .cts .inner ul li:after {
  right: 0;
  width: 460px;
  background: #ccc;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner ul li:after {
    width: 70%;
  }
}

#recruit .cts .inner ul li h4 {
  display: inline-block;
  width: 120px;
  vertical-align: top;
  letter-spacing: .06em;
  margin: 0 20px 0 0;
  padding: 0 0 0 10px;
  font-size: 1.13em;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner ul li h4 {
    width: 25%;
    margin: 0 5% 0 0;
  }
}

#recruit .cts .inner ul li p {
  display: inline-block;
  width: 460px;
  vertical-align: top;
  letter-spacing: .04em;
  font-size: 1.13em;
  padding: 0 0 0 10px;
  line-height: 1.5;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner ul li p {
    width: 70%;
  }
}

#recruit .cts .inner .entry_btn {
  position: relative;
  display: block;
  width: 190px;
  height: 48px;
  margin: 0 auto 100px;
  border: 2px solid #E8351E;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner .entry_btn {
    width: 240px;
    height: 64px;
  }
}

#recruit .cts .inner .entry_btn p {
  line-height: 44px;
  font-size: 1.13em;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #recruit .cts .inner .entry_btn p {
    line-height: 60px;
  }
}

#recruit .cts .inner .entry_btn .arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

#recruit .cts .inner .entry_btn:hover {
  background: #E8351E;
}

#recruit .cts .inner .entry_btn:hover p {
  color: #fff;
}

#recruit .cts .inner .entry_btn:hover .arrow svg path {
  stroke: #fff;
}

#recruit .entry {
  padding: 60px 0 115px;
}

#recruit .entry .ttl {
  text-align: center;
  margin: 0 auto 30px;
}

#recruit .entry .ttl h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  color: #E8351E;
}

#recruit .entry .ttl p {
  font-size: 1.33em;
}

#recruit .entry .ttl p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

#recruit .entry ul {
  letter-spacing: -.4em;
  text-align: center;
}

#recruit .entry ul li {
  display: inline-block;
  width: 240px;
  height: 120px;
  border: 2px solid #E8351E;
  margin: 0 30px 30px;
  vertical-align: top;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#recruit .entry ul li line, #recruit .entry ul li path {
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#recruit .entry ul li:hover {
  background: #E8351E;
}

#recruit .entry ul li:hover p {
  color: #fff;
}

#recruit .entry ul li:hover line, #recruit .entry ul li:hover path {
  stroke: #fff;
}

#recruit .entry ul li a {
  display: block;
  height: 100%;
}

#recruit .entry ul li .icon {
  margin: 0 auto 10px;
  padding-top: 15px;
}

#recruit .entry ul li p {
  letter-spacing: .04em;
  font-weight: bold;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#recruit .entry ul li p.tel {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5em;
}

#recruit .entry ul li p.web {
  font-size: 1.33em;
}

/*====================================================================
	08 Contact_style
====================================================================*/
/*---------------------------------------------------------
	Contact
*/
#contact .ttl_area {
  display: block;
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: top center;
  text-align: center;
}

@media screen and (max-width: 800px) {
  #contact .ttl_area {
    height: auto;
  }
}

#contact .ttl_area h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 3.33em;
  margin: 0 auto 15px;
  padding-top: 60px;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #contact .ttl_area h1 {
    padding-top: 40px;
  }
}

#contact .ttl_area p {
  color: #fff;
  font-size: 1.33em;
}

@media screen and (max-width: 800px) {
  #contact .ttl_area p {
    font-size: 1.25em;
  }
}

#contact .ttl_area p.ttl_jp {
  font-weight: bold;
  margin: 0 auto 25px;
}

@media screen and (max-width: 800px) {
  #contact .ttl_area p.txt {
    display: block;
    width: 90%;
    margin: auto;
    line-height: 2;
    padding-bottom: 40px;
  }
}

#contact .ttl_area {
  background-image: url("../images/company_bg_pc.jpg");
}

@media screen and (max-width: 800px) {
  #contact .ttl_area {
    background-image: url("../images/company_bg_sp.jpg");
  }
}

#contact .cts {
  width: 98%;
  max-width: 740px;
  margin: 0 auto;
  padding: 50px 0 100px;
}

#contact .cts .catch {
  text-align: center;
  font-size: 1.13em;
  margin: 0 auto 50px;
}

@media screen and (max-width: 800px) {
  #contact .cts .catch {
    width: 90%;
    line-height: 1.5;
  }
}

#contact form {
  width: 100%;
  margin: 0 auto;
  letter-spacing: -.4em;
}

@media screen and (max-width: 800px) {
  #contact form {
    width: 90%;
  }
}

#contact form .wrap {
  position: relative;
  display: block;
}

#contact form .form_label {
  position: relative;
  font-size: 1.13em;
  margin: 0 0 5px;
  display: inline-block;
  width: 200px;
  vertical-align: top;
  letter-spacing: .04em;
  line-height: 50px;
  padding-left: 20px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  #contact form .form_label {
    display: table;
    width: auto;
    padding-left: 0;
    line-height: 40px;
  }
}

#contact form .form_label.required:before {
  content: "*";
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 1.5em;
  color: #E8351E;
}

@media screen and (max-width: 800px) {
  #contact form .form_label.required:before {
    left: -webkit-calc(100% + 5px);
    left: calc(100% + 5px);
  }
}

#contact form .form_label.attention {
  color: #E8351E;
}

#contact form .input_area {
  display: inline-block;
  width: 540px;
  max-width: 100%;
  vertical-align: top;
}

#contact form input, #contact form textarea, #contact form select, #contact form button {
  width: 100%;
  margin: 0 auto 20px;
}

#contact form input[type="text"], #contact form input[type="email"], #contact form input[type="tel"], #contact form select {
  border: 1px solid #D1D1D1;
  height: 46px;
  line-height: 46px;
  padding: 0 0 0 10px;
  font-size: 1.08em;
  letter-spacing: .04em;
  background: none;
  border-radius: 0;
}

#contact form input[type="text"].wpcf7c-conf, #contact form input[type="email"].wpcf7c-conf, #contact form input[type="tel"].wpcf7c-conf, #contact form select.wpcf7c-conf {
  border: none;
  background: none;
}

#contact form select {
  position: relative;
}

#contact form .requirement {
  position: relative;
}

#contact form textarea {
  border: 1px solid #D1D1D1;
  height: 200px;
  padding: 10px;
  font-size: 1.08em;
  line-height: 1.5;
  letter-spacing: .04em;
}

#contact form .btn_wrap {
  text-align: center;
}

#contact form .btn_wrap .btn {
  display: inline-block;
  margin: auto;
}

#contact form input[type="submit"], #contact form input[type="button"] {
  position: relative;
  display: block;
  width: 190px;
  height: 48px;
  margin: 0 20px;
  border: 2px solid #E8351E;
  line-height: 44px;
  font-size: 1.13em;
  padding-left: 15px;
  font-weight: bold;
  letter-spacing: .1em;
  color: #E8351E;
  background: #fff;
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
	margin: auto;
}

@media screen and (max-width: 800px) {
  #contact form input[type="submit"], #contact form input[type="button"] {
    width: 240px;
    height: 64px;
    line-height: 60px;
    margin: 0 auto 20px;
  }
}

#contact form input[type="submit"]:hover, #contact form input[type="button"]:hover {
  background: #E8351E;
  color: #fff;
}

#contact form .wpcf7-form-control-wrap {
  position: initial;
}

#contact form .wpcf7-not-valid-tip {
  position: absolute;
  top: 40px;
  left: 20px;
  letter-spacing: .04em;
}

@media screen and (max-width: 800px) {
  #contact form .wpcf7-not-valid-tip {
    top: 13px;
    left: auto;
    right: 0;
  }
}

#contact form .wpcf7c-conf {
  border: none;
  background: none;
}

#contact form .wpcf7-mail-sent-ok {
  opacity: 0;
}

#contact form .wpcf7-validation-errors {
  text-align: center;
  letter-spacing: .04em;
  border: none;
  color: #f00;
}

#contact form .ajax-loader {
  display: none;
}

#contact .thanks {
  width: 90%;
  text-align: center;
  margin: auto;
  padding: 80px 0;
}

@media screen and (max-width: 800px) {
  #contact .thanks {
    padding: 40px 0;
  }
}

#contact .thanks .thanks_ttl {
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 60px;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #contact .thanks .thanks_ttl {
    font-size: 1.5em;
    margin: 0 auto 30px;
  }
}

#contact .thanks .thanks_ttl span {
  display: none;
}

@media screen and (max-width: 800px) {
  #contact .thanks .thanks_ttl span {
    display: inline;
  }
}

#contact .thanks .thanks_txt {
  font-size: 1.13em;
  margin: 0 auto 60px;
  line-height: 2;
}

@media screen and (max-width: 800px) {
  #contact .thanks .thanks_txt {
    font-size: 1.13em;
    margin: 0 auto 30px;
  }
}

@media screen and (max-width: 800px) {
  #contact .thanks .thanks_txt span {
    display: none;
  }
}

#contact .thanks a {
  position: relative;
  display: block;
  width: 270px;
  height: 48px;
  line-height: 48px;
  margin: auto;
  padding: 0 0 0 10px;
  text-align: left;
  font-weight: bold;
  color: #E8351E;
  border: 2px solid #E8351E;
  box-sizing: initial;
}

#contact .thanks a .arrow {
  position: absolute;
  top: 2px;
  right: 15px;
}

#contact .thanks a .arrow path {
  -webkit-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

#contact .thanks a:hover {
  background: #E8351E;
  color: #fff;
}

#contact .thanks a:hover .arrow path {
  stroke: #fff;
}
