@charset "UTF-8";
/* reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-top: 24px;
  margin-bottom: 12px;
}

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

h2, .h2 {
  font-size: 28px;
}

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

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

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 12px;
}

p {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

.lead {
  font-size: 24px;
  line-height: 1.4;
}

img {
  width: 100%;
}

body {
  font-family: "kozuka-gothic-pro","Open Sans", "Helvetica Neue", Helvetica, "Arial", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  color: #
}

.lineH15 {line-height: 1.5;}

/* loading */
#loading {
  width: 100%;
  height: 100%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  text-align: center;
}
#loading .loader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 60px;
  margin: auto;
}

/* nav */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
header .inner {
  position: relative;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
}
header .inner .navbar-default {
  background-color: inherit;
}
header .inner .navbar {
  width: 100%;
  margin-bottom: 0;
  border: none;
}
header .inner .navbar .logo {
  width: 180px;
  display: inline-block;
}

header body {
  background: #F5F5F5;
}
header .container {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 40%;
  left: 0;
  margin: 0 auto;
  font-family: 'Roboto', sans-serif;
}
header .container p {
  font-size: 20px;
}
header .container a {
  display: inline-block;
  position: relative;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
  text-decoration: none;
  font-size: 20px;
  overflow: hidden;
  top: 5px;
}
header .container a:after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  height: 2px;
  width: 0%;
  transform: translateX(-50%);
  left: 50%;
  bottom: 0;
  transition: .35s ease;
}
header .container a:hover:after, header .container a:focus:after, header .container a:active:after {
  width: 100%;
}
header h1 {
  position: relative;
  text-align: center;
}
header .button_container {
  position: absolute;
  top: 30%;
  right: 10px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  transition: opacity .25s ease;
}
header .button_container:hover {
  opacity: .7;
}
header .button_container.active .top {
  transform: translateY(11px) translateX(0) rotate(45deg);
  background: #FFF;
}
header .button_container.active .middle {
  opacity: 0;
  background: #FFF;
}
header .button_container.active .bottom {
  top: 22px;
  transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #FFF;
}
header .button_container span {
  background: #FFF;
  border: none;
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all .35s ease;
  cursor: pointer;
}
header .button_container span:nth-of-type(2) {
  top: 9px;
}
header .button_container span:nth-of-type(3) {
  top: 18px;
}
header .overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s, height .35s;
  overflow: hidden;
}
header .overlay.open {
  opacity: .9;
  visibility: visible;
  height: 100%;
}
header .overlay.open li {
  animation: fadeInRight .5s ease forwards;
  animation-delay: .35s;
}
header .overlay.open li:nth-of-type(2) {
  animation-delay: .4s;
}
header .overlay.open li:nth-of-type(3) {
  animation-delay: .45s;
}
header .overlay.open li:nth-of-type(4) {
  animation-delay: .50s;
}
header .overlay.open li:nth-of-type(5) {
  animation-delay: .55s;
}
header .overlay.open li:nth-of-type(6) {
  animation-delay: .60s;
}
header .overlay.open li:nth-of-type(7) {
  animation-delay: .65s;
}
header .overlay nav {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  font-size: 50px;
  font-family: 'adobe-caslon-pro', serif;
  font-weight: 400;
  text-align: center;
}
header .overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
header .overlay ul li {
  display: block;
  position: relative;
  opacity: 0;
  margin-bottom: 20px;
  font-size: 26px;
}
header .overlay ul li a {
  display: block;
  position: relative;
  color: #FFF;
  text-decoration: none;
  overflow: hidden;
  font-family: 'adobe-caslon-pro', serif;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2;
}
header .overlay ul li a:hover:after, header .overlay ul li a:focus:after, header .overlay ul li a:active:after {
  width: 100%;
}
header .overlay ul li a:after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 0%;
  transform: translateX(-50%);
  height: 2px;
  background: #FFF;
  transition: .35s;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
/* slider */
.cont_slider.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.cont_slider.slick-dotted.slick-slider .slick-dots {
  bottom: -30px;
}
.cont_slider.slick-dotted.slick-slider .slick-dots li {
  width: 15px;
  height: 15px;
}
.cont_slider.slick-dotted.slick-slider .slick-dots li.slick-active button {
  color: #707070;
  background-color: #707070;
}
.cont_slider.slick-dotted.slick-slider .slick-dots li.slick-active button::before {
  content: none;
}
.cont_slider.slick-dotted.slick-slider .slick-dots li button {
  width: 15px;
  height: 15px;
  color: #fff;
  background-color: #fff;
  border: none;
  border-radius: 15px;
  box-sizing: border-box;
}
.cont_slider.slick-dotted.slick-slider .slick-dots li button::before {
  content: none;
}
.cont_slider.top li.slick-slide {
  position: relative;
}
.cont_slider.top li.slick-slide .txt {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.8);
}
.cont_slider.top li.slick-slide .txt p {
  display: inline-block;
  width: auto !important;
  text-align: center;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  font-family: "kozuka-mincho-pro";
  font-weight: 400;
}
.cont_slider.top li.slick-slide img {
  width: 80%;
  margin-left: auto;
}
.cont_slider.top li.slick-slide.reverse .txt {
  left: inherit;
  right: 0;
}
.cont_slider.top li.slick-slide.reverse img {
  margin-left: inherit;
  margin-right: auto;
}

/* main */
.main .catch {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .catch h1 {
  font-size: 60px;
  text-align: center;
  color: #fff;
  line-height: 2;
  font-family: "adobe-caslon-pro","a-otf-ryumin-pr6n",serif;
  font-weight: 600;
  text-shadow: 0px 4px 7px #333;
}
.main .catch h1 span {
  display: block;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.5;
}
.main h2 {
  position: relative;
  display: inline-block;
  width: 100%;
  font-size: 36px;
  font-weight: 900;
  color: #000;
  letter-spacing: 0.05em;
  font-family: "adobe-caslon-pro",serif;
  font-weight: 600;
}
.main h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #333;
}
.main .h2_sub {
  margin-top: 14px;
  font-size: 16px;
  font-family: "kozuka-mincho-pro";
  font-weight: 400;
}
.main h3 {
  display: inline-block;
  margin: 40px auto 10px;
  padding: 0 0;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}
.main h3::after {
  content: "";
  display: block;
  width: 100%;
  margin: 10px auto 0;
  border-top: solid 1px #707070;
}
.main h3 span {
  font-size: 14px;
}
.main .h3_sub {
  text-align: center;
  font-size: 13px;
}
.main .bgBox_top {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
}
.main .bgBox_top.bg_01 {
  background-image: url("../images/main_visual.jpg");
}
.main .bgBox {
  padding: 80px 0;
  position: relative;
}
.main .bgBox:nth-of-type(odd).bgclr {
  background-color: #f2f2f2;
}
.main .bgBox:nth-of-type(even).bgclr {
  background-color: #f0ebe4;
}
.main .bgBox .imgBox_01, .main .bgBox .imgBox_02, .main .bgBox .imgBox_03, .main .bgBox .imgBox_04 {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background: url("../images/cont_04_img_01.jpg") center center;
  background-size: cover;
}
.main .bgBox .imgBox_02 {
  background: url("../images/cont_04_img_02.jpg") center center;
  background-size: cover;
}
.main .bgBox .imgBox_03 {
  background: url("../images/cont_04_img_03.jpg") center center;
  background-size: cover;
}
.main .bgBox .imgBox_04 {
  background: url("../images/cont_04_img_04.jpg") center center;
  background-size: cover;
}
.main #MESSAGE p {
  width: 860px;
  margin: 0 auto;
}
.main #MESSAGE .msg {
  text-align: center;
}
.main #MESSAGE .msg p {
  text-align: left;
}
.main #MESSAGE .msg p span {
  display: block;
  margin-top: 16px;
  text-align: right;
}
.main #BUSINESS h3 {
  font-family: "kozuka-mincho-pro";
  font-weight: 500;
}
.main #BUSINESS .bus_slider .cont_slider .slick-dots {
  bottom: 20px;
}
.main #BUSINESS .txt {
  padding: 0 30px;
  text-align: center;
}
.main #BUSINESS .txt p {
  text-align: left;
  font-size: 15px;
}
.main #BUSINESS .img {
  width: 50%;
  padding-left: 0;
  margin-bottom: 0;
  line-height: 0;
}
.main #BUSINESS .img img {
  line-height: 0;
}
.main #BUSINESS .row:nth-of-type(3) .img {
  padding-left: 15px;
  padding-right: 0;
}
.main #AWARDS .img {
  text-align: center;
}
.main #AWARDS .img img {
  width: 80%;
}
.main #AWARDS .box {
  position: relative;
  height: 768px;
}
.main #AWARDS .box.line::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  width: 2px;
  height: 768px;
  margin: 0 auto;
  border-left: solid 2px #707070;
  box-sizing: border-box;
}
.main #AWARDS .box .img img {
  width: 55%;
  margin-top: 8px;
}
.main #AWARDS .box .left {
  position: absolute;
  left: 0;
  width: 50%;
  margin: 0 auto;
  text-align: right;
}
.main #AWARDS .box .left:nth-of-type(2) {
  top: 100px;
}
.main #AWARDS .box .left:nth-of-type(4) {
  top: 372px;
}
.main #AWARDS .box .left p {
  position: relative;
  margin-right: 70px;
}
.main #AWARDS .box .left p::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: -70px;
  width: 60px;
  height: 2px;
  border-top: solid 2px #707070;
}
.main #AWARDS .box .left p::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #707070;
  border-radius: 10px;
}
.main #AWARDS .box .left .img {
  text-align: right;
}
.main #AWARDS .box .left .img img {
  margin-right: 60px;
}
.main #AWARDS .box .right {
  position: absolute;
  right: 0;
  width: 50%;
  margin: 0 auto;
  text-align: left;
}
.main #AWARDS .box .right:nth-of-type(1) {
  top: 50px;
}
.main #AWARDS .box .right:nth-of-type(3) {
  top: 200px;
}
.main #AWARDS .box .right:nth-of-type(5) {
  top: 544px;
}
.main #AWARDS .box .right p {
  position: relative;
  margin-left: 70px;
}
.main #AWARDS .box .right p::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: -70px;
  width: 60px;
  height: 2px;
  border-top: solid 2px #707070;
}
.main #AWARDS .box .right p::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #707070;
  border-radius: 10px;
}
.main #AWARDS .box .right .img {
  text-align: left;
}
.main #AWARDS .box .right .img img {
  margin-left: 60px;
}
.main #MEMBERS .imgBox_01, .main #MEMBERS .imgBox_02, .main #MEMBERS .imgBox_03, .main #MEMBERS .imgBox_04 {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}
.main #MEMBERS .detail {
  margin-top: 125px;
  padding: 125px 10px 30px;
  text-align: center;
  background-color: #fff;
}
.main #MEMBERS .detail h3 {
  font-size: 19px;
  margin: 20px auto;
}
.main #MEMBERS .detail h3 span {
	display: block;
	line-height: 2;
	background: #EFEFEF;
	margin-top: 10px;
	padding: 1px 15px;
	font-size: 13px;
}
.main #MEMBERS .detail h3::after {
  content: none;
}
.main #MEMBERS .detail p {
  width: 85%;
  margin: 0 auto;
  text-align: left;
}
.main #WORKPLACE .fas {
  vertical-align: sub;
}
.main #WORKPLACE h3 {
  vertical-align: text-bottom;
  margin: 0 auto;
  padding: 0 0 15px 0;
  font-size: 19px;
  font-family: "kozuka-mincho-pro";
  line-height: 1.5;
  font-weight: 600;
}
.main #WORKPLACE h3::after {
  content: none;
}
.main #WORKPLACE dl {
  line-height: 1.5;
}
.main #WORKPLACE ul {
  list-style: inside;
}
.main #COMPANY iframe {
  width: 100%;
}
.main #COMPANY .table_std {
  width: 55%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
  border: none;
  line-height: 1.5;
}
.main #COMPANY .table_std th {
  text-align: center;
  white-space: nowrap;
}
.main #COMPANY .table_std td, .main #COMPANY .table_std th {
  padding: 12px 8px;
  border-bottom: 3px solid #BAB9B9;
}
.main #COMPANY .table_std td {
  padding-left: 40px;
  border-bottom: 1px dashed #BAB9B9;
}
.main #CAREERS .box {
  display: block;
  color: #333;
  background-color: #FFF;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
  width: 100%;
  margin: 0 auto 30px;
}
.main #CAREERS .box a {
  display: block;
  color: #707070;
  text-decoration: none;
  line-height: 1.5;
  background-color: #fff;
}
.main #CAREERS .box a:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0.5;
}
.main #CAREERS .box a .cate02 {
  padding: 10px 5px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  color: #FFF;
  background: linear-gradient(154deg, #ff358c 0%, #ff6562 100%);
  transition: all 0.3s;
}
.main #CAREERS .box a .ttl {
  display: block;
  margin: 0 auto;
  padding: 10px 2px;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
  background: linear-gradient(154deg,#ab2319 0%, #3f070b 80%);
  color: #fff;
  text-align: center;
  transition: all 0.3s;
}
.main #CAREERS .box a .disc {
  padding: 10px;
  font-size: 14px;
  position: relative;
  transition: all 0.3s;
}
.main #CAREERS .box a .disc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 20px);
  border-top: 1px solid #CCC;
}
.main #CAREERS .box a .junk {
  padding: 10px;
  font-size: 14px;
  transition: all 0.3s;
}
.main #CAREERS .box a .junk .wage {
  display: block;
}
.main #CAREERS .box a .junk .place {
  display: block;
}
.main .thanks {
  text-align: center;
}

/* footer */
footer .footer {
  position: relative;
  width: 100%;
  height: auto;
  text-align: center;
  z-index: 10;
  padding: 80px 20px 20px;
  background-color: #000;
}
footer .footer .logo {
  width: 15%;
  margin: 0 auto;
}
footer .footer .scrollTrigger {
  position: absolute;
  cursor: pointer;
  z-index: 2;
  left: 0;
  right: 0;
  top: 30px;
  width: 60px;
  height: 38px;
  margin: 0 auto;
  text-align: center;
  border-bottom: 1px solid #fff;
}
footer .footer .scrollTrigger::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 50%;
  margin-right: -15px;
  content: "";
  width: 28px;
  height: 28px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
footer .footer .copy {
  margin-top: 15px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.1em;
}
footer .footer .toggleWrap {
  display: none;
}
footer .footer .no-scroll {
  overflow: hidden;
}

/* 下層ページ */
#Underlayer {
  width: 100%;
  height: 100%;
  background-image: url("../images/main_visual.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
#Underlayer a {
  text-decoration: none;
}
#Underlayer .wrap {
  position: relative;
  z-index: 1;
}
#Underlayer .wrap .container.bgclr {
  margin-top: 50px;
  padding: 10px 45px 30px 45px !important;
  background-color: rgba(242,242,242,0.9);
}
#Underlayer .wrap .container h3 {
  font-family: "kozuka-mincho-pro";
  font-weight: 400;
}
#Underlayer .wrap .container .slider .txt p {
  color: #333;
}
#Underlayer .wrap .container .detail-ttl {
  padding: 40px 0 0;
  text-align: center;
	line-height: 1.5;
}
#Underlayer .wrap .container .msg {
  text-align: center;
}
#Underlayer .wrap .container .msg p {
  width: 820px;
  margin: 0 auto;
  text-align: left;
}
#Underlayer .wrap .container .msg p span {
  display: block;
  margin-top: 16px;
  text-align: right;
}
#Underlayer .wrap .container .detail-logo {
  margin: 20px 0 50px;
}
#Underlayer .wrap .container .detail-logo .logo {
  display: block;
  width: 260px;
  height: auto;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: #333;
  border-radius: 5px;
}
#Underlayer .wrap .container .BUSINESS .txt {
  text-align: center;
}
#Underlayer .wrap .container .BUSINESS .txt p {
  text-align: left;
  font-size: 15px;
}
#Underlayer .wrap .container .BUSINESS .img {
  width: 50%;
  margin-bottom: 0;
}
#Underlayer .wrap .container .BUSINESS .img .bus_slider .slick-dots {
  bottom: 20px;
}
#Underlayer .wrap .container .BUSINESS:nth-of-type(even) .txt {
  padding-right: 30px;
}
#Underlayer .wrap .container .BUSINESS:nth-of-type(even) .img {
  padding-left: 0;
}
#Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .txt {
  padding-left: 30px;
}
#Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .img {
  padding-right: 0;
}
#Underlayer .wrap .container .header {
  border-top: 2px solid #333;
  margin-top: 50px;
  padding-top: 50px;
}
#Underlayer .wrap .container .header .keitai, #Underlayer .wrap .container .header .cate {
  padding: 5px 20px;
  margin-right: 10px;
  color: #fff;
  background-color: #666;
}
#Underlayer .wrap .container .header .ttl {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 50px 0;
}
#Underlayer .wrap .container .header .data {
  display: table;
  width: 100%;
}
#Underlayer .wrap .container .header .data dt {
  display: block;
  width: 100%;
  padding: 18px 20px;
  color: #fff;
  white-space: nowrap;
  font-weight: 500;
  letter-spacing: 0.3em;
  background: #3f070b;
  border-radius: 5px;
}
#Underlayer .wrap .container .header .data dd {
  display: block;
  width: 100%;
  letter-spacing: 0.15em;
  padding: 40px 20px;
  line-height: 1.8;
  font-size: 15px;
}
#Underlayer .homeBtn a {
  display: block;
  width: 640px;
  height: 65px;
  line-height: 65px;
  margin: 70px auto;
  border: 2px solid #FFF;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  background-color: rgba(147, 201, 199, 0);
  transition: all 0.5s;
  letter-spacing: 0.15em;
}
#Underlayer .homeBtn a:hover {
  text-decoration: none;
  color: #333;
  background-color: #fff;
  border-color: #333;
}
#Underlayer .homeBtn a:hover span::after {
  border-color: #333;
}
#Underlayer .homeBtn a span {
  position: relative;
  padding-left: 20px;
}
#Underlayer .homeBtn a span::after {
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -5px;
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.5s;
}

/*メールフォーム*/
.box-form .mailform .appBtn {
  display: block;
  width: 100%;
  height: 65px;
  line-height: 65px;
  margin: 0 auto 50px auto;
  border: 2px solid #3f070b;
  border-radius: 5px;
  color: #3f070b;
  text-align: center;
  font-weight: bold;
  transition: all 0.5s;
  letter-spacing: 0.15em;
  background-color: #fff;
}
.box-form .mailform .ttl {
  padding: 7px 5px 7px 5px !important;
  font-size: 16px !important;
  letter-spacing: inherit !important;
}
.box-form .mailform .inline .flex {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.box-form .mailform .inline .flex div:nth-of-type(2n) {
  margin-left: 20px;
}
.box-form .mailform .inline .flex div input {
  width: auto !important;
}
.box-form .mailform .inline .flex:nth-of-type(2) {
  margin-top: 20px;
}

/* プライバシーポリシー */
.policy .wrap .contents .ttl {
  font-size: 30px;
  font-weight: bold;
}
.policy .wrap .contents h3 {
  font-weight: bold;
  font-size: 16px;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, "Arial", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif !important;
}
.policy .wrap .contents h3::after {
  content: none;
}

/* etc */
.txt-cnt {
  text-align: center;
}

.txt-lft {
  text-align: left;
}

.txt-rgt {
  text-align: right;
}

.std {
  margin-bottom: 20px;
}

.img {
  width: 100%;
  margin-bottom: 10px;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.color01 {
  color: #333333;
}

.sp_br {
  display: none;
}

.mgn-t10 {
  margin-top: 10px !important;
}

.mgn-t20 {
  margin-top: 20px !important;
}

.mgn-t30 {
  margin-top: 30px !important;
}

.mgn-t40 {
  margin-top: 40px !important;
}

.mgn-t50 {
  margin-top: 50px !important;
}

.mgn-t60 {
  margin-top: 60px !important;
}

.mgn-t70 {
  margin-top: 70px !important;
}

.mgn-t80 {
  margin-top: 80px !important;
}

.mgn-b00 {
  margin-bottom: 0 !important;
}

.mgn-b10 {
  margin-bottom: 10px !important;
}

.mgn-b20 {
  margin-bottom: 20px !important;
}

.mgn-b30 {
  margin-bottom: 30px !important;
}

.mgn-b40 {
  margin-bottom: 40px !important;
}

.mgn-b50 {
  margin-bottom: 50px !important;
}

.mgn-b60 {
  margin-bottom: 60px !important;
}

.mgn-b70 {
  margin-bottom: 70px !important;
}

.mgn-b80 {
  margin-bottom: 80px !important;
}

.mgn-b160 {
  margin-bottom: 160px !important;
}

@media screen and (max-width: 1200px) {
  .main #BUSINESS h3 {
    margin: 0 auto 10px;
  }
  .main #BUSINESS .img {
    width: 100%;
    padding-left: 15px;
  }
  .main #BUSINESS .row:nth-of-type(3) .img {
    padding-right: 15px;
  }

  #Underlayer .wrap .container .BUSINESS .txt {
    text-align: center;
  }
  #Underlayer .wrap .container .BUSINESS .txt p {
    text-align: left;
  }
  #Underlayer .wrap .container .BUSINESS .img {
    width: 100%;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(even) .txt {
    padding-right: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(even) .img {
    padding-left: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .txt {
    padding-left: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .img {
    padding-right: 15px;
  }

  .tb_mgn-b10 {
    margin-bottom: 10px !important;
  }

  .tb_mgn-b30 {
    margin-bottom: 30px !important;
  }
}
@media screen and (max-width: 992px) {
  .cont_slider.slick-dotted.slick-slider .slick-dots {
    bottom: -30px;
  }
  .cont_slider.slick-dotted.slick-slider .slick-dots li {
    width: 15px;
    height: 15px;
  }
  .cont_slider.slick-dotted.slick-slider .slick-dots li.slick-active button {
    color: #707070;
    background-color: #707070;
  }
  .cont_slider.slick-dotted.slick-slider .slick-dots li button {
    width: 15px;
    height: 15px;
    color: #fff;
    background-color: #fff;
    border-radius: 15px;
    box-sizing: border-box;
  }
  .cont_slider.top li.slick-slide {
    position: relative;
  }
  .cont_slider.top li.slick-slide .txt {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 38%;
    margin: auto;
  }
  .cont_slider.top li.slick-slide .txt p {
    display: inline-block;
    width: auto !important;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    font-family: "kozuka-mincho-pro";
    font-weight: 400;
    letter-spacing: -1px;
  }
  .cont_slider.top li.slick-slide img {
    width: 100%;
    margin-left: inherit;
  }
  .cont_slider.top li.slick-slide.reverse .txt {
    left: 0;
    right: 0;
  }
  .cont_slider.top li.slick-slide.reverse img {
    margin-left: inherit;
    margin-right: inherit;
  }

  .main h1 {
    font-size: 24px;
  }
  .main h3::after {
    margin: 10px auto 4px;
  }
  .main .bgBox_top.bg_01,
	#Underlayer{
    background-image: none;
  }
  .main .bgBox {
    padding: 40px 0;
  }
  .main #MESSAGE p {
    width: 100%;
  }
  .main #BUSINESS h3 {
    margin: 0 auto 10px;
  }
  .main #BUSINESS .img {
    width: 100%;
    padding-left: 15px;
  }
  .main #BUSINESS .row:nth-of-type(3) .img {
    padding-right: 15px;
  }
  .main #AWARDS .img img {
    width: 100%;
  }
  .main #AWARDS .box {
    position: relative;
    height: auto;
    padding: 60px 0;
    border-left: solid 2px #707070;
    box-sizing: border-box;
  }
  .main #AWARDS .box.line::before {
    content: none;
  }
  .main #AWARDS .box .img {
    width: 80%;
  }
  .main #AWARDS .box .img img {
    width: 100%;
  }
  .main #AWARDS .box .left {
    position: initial;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .main #AWARDS .box .left p {
    position: relative;
    margin-left: 50px;
    margin-right: 0;
  }
  .main #AWARDS .box .left p::before {
    content: "";
    position: absolute;
    left: -50px;
    width: 40px;
    right: inherit;
  }
  .main #AWARDS .box .left p::after {
    content: "";
    position: absolute;
    left: -20px;
    right: inherit;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: #707070;
    border-radius: 10px;
  }
  .main #AWARDS .box .left .img {
    margin-left: 50px;
    text-align: left;
  }
  .main #AWARDS .box .left .img img {
    margin-right: 0;
  }
  .main #AWARDS .box .right {
    position: initial;
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  .main #AWARDS .box .right p {
    margin-left: 50px;
  }
  .main #AWARDS .box .right p::before {
    content: "";
    width: 40px;
    position: absolute;
    left: -50px;
  }
  .main #AWARDS .box .right .img {
    margin-left: 50px;
  }
  .main #AWARDS .box .right .img img {
    margin-left: 0;
  }
  .main #WORKPLACE .fa-fw {
    width: 100%;
  }
  .main #WORKPLACE h3 {
    width: 100%;
  }
  .main #COMPANY .table_std {
    width: 100%;
  }
  .main #COMPANY iframe {
    height: 350px;
  }
  .main #CAREERS .box {
    width: 100%;
  }

  footer .footer .logo {
    width: 50%;
  }

  /* 下層ページ */
	.main .bgBox_top.bg_01::before,
	#Underlayer::before{
		content: "";
		display:block;
		position: fixed;
		top:0;
		left:0;
		z-index:-1;
		width: 100%;
		height: 100vh;
		background:url(../images/sp_main_visual.jpg) center/cover no-repeat; /*fixedをトル！*/
		-webkit-background-size:cover;/*Android4*/
	}
  #Underlayer .wrap .container .msg p {
    width: 100%;
  }
  #Underlayer .wrap .container .BUSINESS .txt {
    text-align: center;
  }
  #Underlayer .wrap .container .BUSINESS .txt p {
    text-align: left;
  }
  #Underlayer .wrap .container .BUSINESS .img {
    width: 100%;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(even) .txt {
    padding-right: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(even) .img {
    padding-left: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .txt {
    padding-left: 15px;
  }
  #Underlayer .wrap .container .BUSINESS:nth-of-type(odd) .img {
    padding-right: 15px;
  }

  /* etc */
  .sp_none {
    display: none;
  }

  .sp_br {
    display: inline-block;
  }

  .sp_txt-left {
    text-align: left;
  }

  .sp_pdg-left_5 {
    padding-left: 5px;
  }

  .sp_pdg-right_5 {
    padding-right: 5px;
  }

  .sp_mgn-t10 {
    margin-top: 10px !important;
  }

  .sp_mgn-t20 {
    margin-top: 20px !important;
  }

  .sp_mgn-t30 {
    margin-top: 30px !important;
  }

  .sp_mgn-t40 {
    margin-top: 40px !important;
  }

  .sp_mgn-t50 {
    margin-top: 50px !important;
  }

  .sp_mgn-t60 {
    margin-top: 60px !important;
  }

  .sp_mgn-b00 {
    margin-bottom: 0 !important;
  }

  .sp_mgn-b10 {
    margin-bottom: 10px !important;
  }

  .sp_mgn-b20 {
    margin-bottom: 20px !important;
  }

  .sp_mgn-b30 {
    margin-bottom: 30px !important;
  }

  .sp_mgn-b40 {
    margin-bottom: 40px !important;
  }

  .sp_mgn-b50 {
    margin-bottom: 50px !important;
  }

  .sp_mgn-b60 {
    margin-bottom: 60px !important;
  }

  .sp_mgn-b70 {
    margin-bottom: 70px !important;
  }

  .sp_mgn-b80 {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 768px) {
	.main .bgBox_top {background-size: contain;}
	header .inner .navbar .logo {
		width: 140px;
	}
	.inner .navbar {min-height: 40px;}
	header .button_container {
		top: 25%;
		right: 3px;
	}
	header .overlay ul li a {line-height: 1.5;}
  .main .catch h1 {
		margin-left: 15px;
		margin-right: 15px;
    font-size: 38px;
  }
  .main h2 {
    font-size: 32px;
  }

  /* 下層ページ */
  #Underlayer .wrap .container.bgclr {
    margin-top: 0;
    padding: 10px 15px 30px 15px !important;
  }
  #Underlayer .homeBtn a {
    width: 90%;
    letter-spacing: 0;
    font-size: 13px;
  }
  #Underlayer .homeBtn a span {
    padding-left: 10px;
    font-size: 12px;
  }

  .box-form .mailform .inline .flex {
    display: inherit;
  }
  .box-form .mailform .inline .flex div {
    margin-bottom: 10px;
  }
  .box-form .mailform .inline .flex div:nth-of-type(2n) {
    margin-left: 0;
  }
  .box-form .mailform .inline .flex:nth-of-type(2) {
    margin-top: 0;
  }
}
