@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  min-width: 1000px;
  width: 100%;
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

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

body * {
  margin: 0;
  box-sizing: border-box;
  border: none;
}
a {
  font-weight: 400;
  color: #000;
  text-decoration: none;
  transition: 0.8s;
}
img {
  max-width: 100%;
  display: block;
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
h1{
  margin: 0 auto 50px;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 5rem;
}
h2{
  margin: 0 auto 50px;
  font-size: 3.8rem;
  font-weight: 400;
  color: #FFB400;
}
h2 span {
  font-size: 1.8rem;
  letter-spacing: 0rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
h2.bold{
  font-size: 6rem;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}
h2.bold span{
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
}
p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 3rem;
}
span {
  display: block;
  font-weight: 600;
  font-size: 1.5rem;
}
.sp{
  display: none;
}
.content{
  width: 86%;
  max-width: 1200px;
  margin: auto;
}

.more {
  width: 220px;
}
.more a{
  width: 100%;
  padding: 8px;
  display: inline-block;
  border: solid 1px #FFB400;
  border-radius: 30px;
  color: #FFB400;
  text-align: center;
  transition: all 0.4s ease;
}
.more .arrow:hover{
  background: #FFB400; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #FFB400, #EF9300); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
}
.more .arrow::before{
  width: 8px;
  height: 8px;
  right: 10%;
  border-top: 1px solid #EF9300;
  border-right: 1px solid #EF9300;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.more .arrow:hover::before{
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.arrow{
  padding: 0 0 0 16px;
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
}
.arrow::before,
.arrow::after{
  margin: auto;
  position: absolute;
  top: 2px;
  bottom: 0;
  vertical-align: middle;
  content: "";
}
/* .parallax */
.parallax {
  position: relative;
  top: 0;
  overflow: hidden;
}
.parallax img {
  position: absolute;
  transition: all 1s cubic-bezier(0.04, 0.25, 0.4, 1.01);
}
/* タイトル横移動 */
.tllArea {
  position: relative;
  width: 100%;
}
.svg {
  position: absolute;
  top: 0;
  left: 100px;
  margin: auto;
  height: 100%;
  z-index: -1;
}
/* # ================================================================
   #トップページ
# ================================================================= */
header {
  width: 100%;
  height: 90px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  min-width: 1000px;
}
#contact header,#privacy header{
  width: 100%;
}
#contact header .headerbg,#privacy header .headerbg {
  height: 90px;
}
header .headerbg{
  z-index: 1;
  background: #fff;
  position: relative;
  top: 0;
  transition: all 0.4s ease;
  width: 220px;
  height: 220px;
  transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
header.fadeIn .headerbg {
  height: 90px;
}
header .content {
  width: 100%;
  max-width: 2060px;
  align-items: flex-start;
}
#contact header a.logo,#privacy header a.logo {
  top: 0;
  left: 0;
}
header nav {
  width: calc(100% - 220px);
  height: 90px;
  position: relative;
  left: 0;
  transition-timing-function: cubic-bezier(.165,.84,.44,1);
}
header nav .bg{
  position: absolute;
  left: 0;
  width: 0;
  height: 90px;
  z-index: -1;
}
header.fadeIn nav .bg{
  animation: bg 0.4s forwards ease;
}
@keyframes bg {
  0% {
   
  }
  100% {
    background: #fff;
    width: 100%;
  }
}
header nav ul{
  max-width: 800px;
  width: 80%;
  margin: 24px 0 0 auto;
}
header a.logo {
  width: 165px;
  height: 100%;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transition: all 0.4s ease;
}
header nav ul li a{
  font-size: 1.5rem;
}
#contact header nav ul li a,#privacy header nav ul li a{
  color: #000;
}
header nav ul li a{
  color: #fff;
  transition: all 0.4s ease;
}
header.fadeIn nav ul li a{
  animation: nav 0.1s forwards ease;
}
@keyframes nav {
  0% {
    color: #fff;
  }
  100% {
    color: #000;
  }
}
header nav ul li{
  margin: 0 50px 0 0;
}
header nav ul li.yellow{
  margin: 0 20px 0 0;
  border: solid 2px #FFB400;
  border-radius: 20px;
  color: #FFB400;
  text-align: center;
}
header nav ul li.yellow a{
  padding: 8px 20px;
  display: block;
  border-radius: 17px;
  font-weight: 500;
  background: #fff;
  color: #FFB400!important;
  transition: all 0.4s ease;
}
header nav ul li.yellow a:link,header nav ul li.yellow a:hover,header nav ul li.yellow a:active,header nav ul li.yellow a:visited{
  color: #FFB400!important;
}
header nav ul li.yellow a:hover{
  background: #FFB400; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #FFB400, #EF9300); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff!important;
}
header.fadeIn nav ul li.yellow a:hover{
  color: #fff!important;
}
/* header.fadeIn nav ul li.yellow a:link,header.fadeIn nav ul li.yellow a:hover,header.fadeIn nav ul li.yellow a:active,header.fadeIn nav ul li.yellow a:visited{
  color: #FFB400!important;
} */
header.fadeIn nav ul li.yellow a:link,header.fadeIn nav ul li.yellow a:hover,header.fadeIn nav ul li.yellow a:active,header.fadeIn nav ul li.yellow a:visited{
  animation: nav2 0.1s forwards ease;
}
@keyframes nav2 {
  0% {
  }
  100% {
    color: #FFB400!important;
  }
}
/* movearea */
.movearea {
  width: 6100px;
  position: absolute;
  bottom: 0;
  overflow: hidden;
}
.movearea div{
  font-family: 'Raleway', sans-serif;
  font-size: 16rem;
  font-weight: 100;
  color: #F0F0F0;
}
.movearea span{
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 16rem;
  font-weight: 100;
  color: #FFBB15;
}
/* .scMv */
.scMv{
  width: 100%;
  height: 100vh;
  margin: 0 auto 150px;
  position: relative;
  top: 0;
  overflow: hidden;
}
.scMv .bg{
  width: 94%;
  height: 99%;
  margin: 0 0 0 auto;
  background: url(../img/mv_bg.png)no-repeat bottom 60px center/cover;
}
.scMv h1{
  width: 560px;
  margin: auto;
  position: absolute;
  top: 45%;
  right: 0;
  left: 0;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.4rem;
}
.scMv .sidetxt{
  position: absolute;
  top: 40%;
  left: 2%;
  right: 0;
  margin: auto;
}
.scMv .sidetxt p {
  font-size: 1.2rem;
  writing-mode: vertical-rl;
}
/* .scService */
.scService{
  width: 100%;
  margin: 0 auto 250px;
}
.scService .serlist{
  width: 100%;
}
.scService .serlist ul{
  width: 100%;
}
.scService .serlist ul li{
  width: calc(94% / 3);
  margin: auto;
  text-align: center;
}
.scService .serlist ul li .img{
  width: 100%;
  height: 240px;
}
.scService .serlist ul li .img img{
  width: 100%;
  height: 250px;
  top: 50px;
  object-fit: contain;
}
.scService h2{
  margin: 0 auto 70px;
  font-weight: 500;
  color: #FFBB15;
  text-align: center;
}
.scService .serlist ul li h3{
  margin: 0 auto 40px;
  position: relative;
  top: 0;
  color: #FFB400;
}
.scService .serlist ul li h3::after{
  width: 1px;
  height: 17px;
  margin: auto;
  position: absolute;
  z-index: 2;
  top: 40px;
  right: 0;
  left: 0;
  background: #FFB400;
  content: "";
}
.scService .serlist ul li p{
  margin: 0 0 20px;
  line-height: 2.4rem;
}
/* .scCom */
.scCom{
  width: 100%;
  margin: 0 auto 230px;
  overflow: hidden;
}
.scCom .content {
  width: 100%;
  max-width: 100%;
}
.scCom .img{
  width: 800px;
  height: 450px;
}
.scCom .txtArea img{
  width: 900px;
  margin: 30px 0 0 -50px;
  position: relative;
  /* left: -50px; */
  /* top: 10px; */
  z-index: -1;
  display: inline-block;
}
.scCom .img img{
  width: 100%;
  height: 540px;
  top: 30px;
  left: 0;
  object-fit: contain;
}
.scCom .txtArea{
  width: calc(100% - 800px);
  margin: 0;
}
.scCom .txtArea .tllArea{
  width: 100%;
}
.scCom .txtArea .tllArea img{
  width: 100%;
  margin: 0 auto;
}
.scCom .txtArea .wid {
  width: 450px;
  margin: 100px auto 0 180px;
}
#company .scCom .txtArea .wid{
  margin: 100px auto 200px 180px;
}
.svg {
  top: -30px;
  left: 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 16rem;
  font-weight: 100;
  color: #F0F0F0;
}
.scCom .txtArea .txt{
  margin: 0 auto 40px;
  font-size: 3rem;
  font-weight: 400;
  line-height: 4.4rem;
}
.scCom .txtArea h2 {
  margin: 0 auto 80px;
}
.scCom .txtArea p{
  margin: 0 auto 80px;
}
/* .scPro */
.scPro {
  width: 100%;
  padding: 90px 0 0;
  margin: 0 0 150px;
  position: relative;
  top: 0;
  overflow: hidden;
  background: url(../img/pro_bg.png)no-repeat top 80px center/cover;
}
.scPro .movearea {
  top: -36px;
  bottom: auto;
}
.scPro .txtArea{
  width: 420px;
  margin: 100px auto;
}
.scPro .txtArea h2{
  margin: 0 auto 90px;
  text-align: center;
  font-family: 'Roboto', sans-serif;
}
.scPro .more {
  margin: auto;
}
.scPro .more a {
  background: #fff;
}
.scPro .more a:hover {
  background: #FFB400; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #FFB400, #EF9300); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
/* .scNews */
.scNews{
  width: 100%;
  margin: 0 auto 160px;
}
.scNews .content{
  max-width: 1000px;
  margin: -50px auto 50px;
}
.scNews  .tllArea {
  width: 600px;
  height: 144px;
}
.scNews img.svg{
  width: 600px;
  position: relative;
  z-index: -1;
  left: -18px;
}
.scNews ul{
  width: 86%;
  max-width: 900px;
  margin: 0 auto;
}
.scNews ul li{
  width: 100%;
  position: relative;
  top: 0;
  border-bottom: solid 1px #707070;
  font-weight: 400;
  align-items: baseline;
  justify-content: flex-start;
}
.scNews ul li:first-of-type{
  border-top: solid 1px #707070;
}
.scNews ul li a{
  width: 100%;
  display: inline-flex;
  padding: 30px 0;
}
.scNews ul li:after {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  background: #FFB400;
  content: "";
  opacity: 0.1;
  transition: transform 0.4s;
  transition-timing-function: ease;
  transform: scale(0, 1);
  transform-origin: right top;
}
.scNews ul li:hover:after{
  transition: transform 0.4s;
  transition-timing-function: ease;
  transform: scale(1, 1);
  transform-origin: left top;
}
.scNews ul li .date{
  width: calc(100% - 810px);
}
.scNews ul li .cate{
  width: 140px;
  margin: 0 25px;
  padding: 2px 6px;
  border: solid 1px #EF9300;
  font-size: 1.4rem;
  color: #EF9300;
  text-align: center;
}
.scNews ul li .ar{
  width: 620px;
}
.scNews ul li .ar p{
  margin: 20px 0 0 0;
}
/* scLink */
.scLink{
  width: 100%;
  padding: 150px 0 50px;
  background: #F3F4F5;
}
.scLink .content ul{
  width: 100%;
}
.scLink .content ul li{
  width: 48%;
  margin: 0 0 80px;
  position: relative;
  top: 0;
}
.scLink .content ul li .tll{
  padding: 16px 0 10px;
  font-size: 2rem;
  font-weight: 600;
  color: #FFB400;
}
.scLink .more{
  width: 40px;
  height: 40px;
  /* background: #fff; */
  border: solid 1px #FFB400;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.scLink .more .arrow::before {
  top: 0;
  left: 0;
  right: 0;
}
.scLink .content ul li a{
  transition: all 0.4s ease;
}
.scLink .content ul li .imgcover{
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.scLink .content ul li a .imgcover img{
  transition: all 0.4s ease;
}
.scLink .content ul li a:hover .imgcover img{
  transform: scale(1.05);
}
.scLink .content ul li a:hover .tll{
  color: #EF9300;
}
.scLink .content ul li a p{
  font-size: 1.5rem;
}
.scLink .content ul li a:hover .more{
  background: #FFB400;
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300);
  background: linear-gradient(to left, #FFB400, #EF9300);
  color: #fff;
}
.scLink .content ul li a:hover .more .arrow::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
/* .scHover */
.scHover{
  width: 100%;
}
.scHover ul li{
  width: 50%;

  position: relative;
  top: 0;
}
.scHover ul li:before{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  transition: all 0.2s ease-in;
  z-index: 2;
  background: #FFB400; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #FFB400, #EF9300); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.scHover ul li a{
  position: relative;
  display: block;
  text-align: center;
  padding: 150px 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.scHover ul li a:before{
  position: absolute;
  content: "";
  background: #000;
  opacity: 0.6;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.scHover ul li:hover:before{
  width: 0;
  left: 0;
}
.scHover ul li a:after{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}
.scHover ul li:first-of-type a:after{
  background: url("../img/hover_01.jpg")no-repeat top 50% center/cover;
}
.scHover ul li:nth-of-type(2)  a:after{
  /* background: url("../img/hover_02.png")no-repeat top center/cover,#fff; */
  background: url(../img/hover_02.jpg)no-repeat top 50% center/contain;
}
.scHover ul li h2{
  width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 3;
  /* display: inline-block; */
  font-family: 'ヒラギノ角ゴ Pro W3','ヒラギノ角ゴ W3', 'メイリオ', 'ＭＳ Ｐゴシック',sans-serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.2rem;
}
.scHover ul li h2 img{
  position: absolute;
  top: 14px;
  right: 0;
}
.scHover ul li:nth-of-type(2) h2 img{
  right: -13%;
}
/* footer */
footer{
  width: 100%;
  padding: 90px 0 20px;
  background: #333333;
  color: #fff;
}
footer .content{
  margin: 0 auto 80px;
}
footer a{
  color: #fff!important;
}
footer p{
  font-size: 1.4rem;
  line-height: 2.2rem;
}
footer a {
  font-size: 1.5rem;
}
footer ul.link{
  padding: 10px 0 10px 40px;
  border-left: solid 1px #fff;
}
footer ul li{
  padding: 0 20px 0 0;
}
footer ul p{
  padding: 0 20px 0 0;
}
footer .cpr{
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}
/* # ================================================================
   #COMPANY
# ================================================================= */
table{
  max-width: 1000px;
  width: 100%;
  margin: auto;
  border-collapse: collapse;
}
tr {
  width: 100%;
  border-collapse: collapse;
}
th{
  width: 200px;
  padding: 20px 0;
  background: #F0F0F0;
  color: #FFB400;
  border-bottom: solid 1px #CCCACA;
  border-right: solid 1px #CCCACA;
  font-weight: 500;
}
tr:first-of-type th{
  border-top: solid 1px #CCCACA;
}
td{
  width: calc(100% - 200px);
  padding: 20px 0 20px 40px;
  border-bottom: solid 1px #CCCACA;
  font-weight: 500;
  text-align: left;
}
tr:first-of-type td{
  border-top: solid 1px #CCCACA;
}
#company .scMv h1,#recruit .scMv h1{
  top: 50%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}
h1 span{
  line-height: 2.4rem;
  font-size: 1.6rem;
}
#company .scMv{
  width: 100%;
  height: 600px;
  background: url(../img/company_bg.jpg)no-repeat top center/cover;
}
/* .scProfile */
.scProfile{
  width: 100%;
  margin: 0 0 200px;
}
.scProfile h2{
  text-align: center;
}
/* .scCom */
/* #company .scCom .content {
  align-items: flex-end;
} */
/* #company .scCom .txtArea .wid {
  margin: 100px auto 140px;
} */
#company .scCom .com{
  color: #FFB400;
  font-size: 2rem;
  line-height: 2rem;
  margin: 16px 0 10px;
}
#company .scCom p{
  margin: 0 0 5px;
  line-height: 2.4rem;
}
#company .scCom p:nth-of-type(2){
  font-size: 1.5rem;
}
#company .scCom h2{
  position: relative;
  top: 0;
}
#company .scCom h2:after {
  content: "";
  width: 44px;
  height: 1px;
  background: #FFB400;
  position: absolute;
  bottom: -30px;
  left: 0;
  margin: auto;
}
.scCom .loca{
  max-width: 1050px;
  width: 86%;
  margin: 50px auto 0;
}
.scCom .loca .img {
  width: 480px;
  height: 280px;
}
.scCom .loca .img img{
  height: 310px;
  top: 120px;
  object-fit: contain;
}
/* .scGroup */
.scGroup{
  width: 100%; 
  margin: 0 0 150px;
  overflow: hidden;
}
.scGroup .content{
  margin: -50px auto 0;
}
.scGroup h2{
  max-width: 1000px;
  width: 100%;
}
.scGroup .tllArea {
  width: 1700px;
  position: relative;
  height: 150px;
  top: 0;
  z-index: -1;
}
.scGroup table th{
  border-right: solid 1px #CCCACA;
}
.scGroup table p{
  font-size: 1.7rem;
  font-weight: 500;
  margin: 0 0 10px;
}

/* # ================================================================
   #RECRUIT
# ================================================================= */
#recruit .scMv{
  width: 100%;
  height: 600px;
  background: url(../img/recruit_bg.jpg)no-repeat top center/cover;
}
.scRec{
  width: 100%;
  margin: 0 auto 90px;
  text-align: center;
}
.scRec h2{
  font-weight: 500;
  position: relative;
  top: 0;
  margin: 0 auto 60px;
}
.scRec h2:after{
  content: "";
  width: 44px;
  height: 1px;
  background: #FFB400;  
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
.scRec .rec_link{
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 140px;
  justify-content: center;
}
.scRec .rec_link li{
  width: calc(88% / 3);
  margin: 0 2%;
  position: relative;
  top: 0;
}
.scRec .rec_link li::before, .scRec .rec_link li::after {
  margin: auto;
  position: absolute;
  bottom: -50px;
  vertical-align: middle;
  content: "";
  opacity: 0;
  transition: all 0.4s ease;
}
.scRec .rec_link li:hover::before, .scRec .rec_link li:hover::after {
  opacity: 1;
}
.scRec .rec_link li:before{
  width: 35px;
  height: 35px;
  right: 0;
  left: 0;
  border-top: 1px solid #EF9300;
  border-right: 1px solid #EF9300;
  -webkit-transform: rotate(
135deg
);
  transform: rotate(
135deg
);
}
.scRec .rec_link li a{
  display: inline-block;
  text-align: center;
  color: #FFB400;
  border: solid 1px #FFB400;
  padding: 30px;
  width: 100%;
  font-weight: 500;
  transition: all 0.4s ease;
}
.scRec .rec_link li a:hover{
  color: #fff;
  background: #FFB400; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #FFB400, #EF9300); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.scRec .recArea{
  width: 100%;
  margin: 0 auto 250px;
}
.scRec .recArea#part{
  width: 100%;
  margin: 0 auto;
}
.scRec .recArea#part table{
  margin: 0 auto 100px;
}
.eIdem img{
  margin: auto;
}
.eIdem a:hover img{
  opacity: 0.5;
}
/* scApp */
.scApp{
  width: 100%;
  padding: 80px 0;
  text-align: center;
  background: #F3F4F5;
}
.scApp h2{
  font-weight: 500;
}
.scApp .box{
  width: 450px;
  font-weight: 400;
  margin: 20px auto;
  background: #fff;
  border: solid 1px #000;
}
.scApp .box a{
  width: 100%;
  padding: 20px 0;
  display: inline-block;
  transition: all 0.4s ease;
}
.scApp .box a:hover{
  color: #fff;
  background: #000;
}
.scApp p.left {
  width: 420px;
  margin: auto;
  text-align: left;
}
.scTop{
  width: 100%;
  padding: 230px 0 80px;
  text-align: center;
}
.scTop p.small{
  font-size: 1.4rem;
  margin: 10px auto 30px;
}
.scTop .box{
  max-width: 700px;
  width: 100%;
  margin: auto;
  border: solid 1px #FFB400;
  padding: 20px 50px;
}
.scTop .box .tll{
  font-size: 1.4rem;
  color: #FFB400;
}
.scTop .box p{
  font-size: 1.4rem;
  line-height: 2.4rem;
  text-align: left;
}
#contact h1,#privacy h1{
  color: #FFBB15;
  font-weight: 500;
  font-size: 6rem;
  line-height: 7rem;
  font-family: 'Roboto', sans-serif;
}
#contact h1 span,#privacy h1 span{
  color: #000;
  font-weight: 400;
}
.scContact{
  width: 100%;
  background: #F3F4F5;
  padding: 90px 0 60px;
}

/* フォーム */
.scContact form{
  max-width: 1000px;
  width: 86%;
  margin: 0 auto;
  font-size: 1.4rem;
}
.scContact form th{
  color: #000;
  text-align: left;
  border: none;
  background: none;
  padding: 0 0 50px;
  vertical-align: middle;
  font-weight: 400;
}
.scContact form th span{
  font-size: 1.3rem;
  font-weight: 500;
  color: #FF000E;
  position: relative;
  top: 0;
  padding: 0 0 0 12px;
}
.scContact form th span:before{
  content: "●";
  position: absolute;
  top: 2px;
  left: 0;
  font-size: 1rem;
}
.scContact form td {
  border: none;
  font-weight: 400;
  padding: 0 0 50px;
}
input,textarea,select{
  border: 1px solid #707070;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  padding: 14px;
}
.scContact form td.select{
  position: relative;
  top: 0;
  padding: 0 0 20px;
}
td.select img{
  position: absolute;
  width: 10px;
  top: 20%;
  right: 3%;
  pointer-events: none;
}
.scContact .more {
  width: 220px;
  margin: auto;
}
.scContact .more .arrow {
  width: 100%;
  padding: 8px;
  display: inline-block;
  border: solid 1px #FFB400;
  border-radius: 30px;
  color: #FFB400;
  text-align: center;
  transition: all 0.4s ease;
  background: #fff;
}
.scContact .more .arrow::before {
  width: 8px;
  height: 8px;
  right: 10%;
  border-top: 1px solid #EF9300;
  border-right: 1px solid #EF9300;
  -webkit-transform: rotate(
45deg
);
  transform: rotate(
45deg
);
}
.scContact .more .arrow:hover {
  color: #fff;
  background: #FFB400;
  background: -webkit-linear-gradient(to left, #FFB400, #EF9300);
  background: linear-gradient(to left, #FFB400, #EF9300);
}
.scContact .more .arrow:hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.scContact .arrow::before, .arrow::after {
  margin: auto;
  position: absolute;
  top: 2px;
  bottom: 0;
  vertical-align: middle;
  content: "";
}
.scContact form td.pa {
  padding: 0 0 20px;
}
.txtErrorName, .txtErrorMail, .txtErrorTel {
  padding: 0 0 6px 15px;
  display: none;
  font-size: 1.2rem;
  font-weight: 400;
  color: #ff0000;
  letter-spacing: 0.2rem;
}
.txtErrorName.error, .txtErrorMail.error, .txtErrorTel.error {
  display: block;
}
.scThanks{
  width: 100%;
  text-align: center;
  padding: 200px 0;
}
.scThanks .more{
  margin: 50px auto; 
}
#privacy .scTop .content p {
  text-align: left;
  margin: 0 auto 50px;
}
p.cimbtn {
  width: 52%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}
@media screen and (max-width: 1500px) {
.scCom .img {
  width: 700px;
}
.scCom .txtArea {
  width: calc(100% - 700px);
  margin: 0;
}
#company .scCom .txtArea .wid {
  margin: 100px auto 100px 80px;
}
}
@media screen and (max-width: 1300px) {
header nav ul li {
  margin: 0;
}
header nav ul li.yellow {
  margin: 0 10px 0 0;
}
.scCom .img {
  width: 600px;
  height: 500px;
}
.scCom .txtArea {
  width: calc(100% - 600px);
}
footer .logo {
  width: 130px;
}
footer ul.link {
  padding: 10px 0 10px 20px;
}
footer ul li {
  padding: 0 10px 0 0;
}
footer a {
  font-size: 1.3rem;
}
footer p {
  font-size: 1.3rem;
  line-height: 2rem;
}
}
@media screen and (max-width: 1100px) {
.scCom .img {
  width: 50%;
  height: 400px;
}
.scCom .txtArea {
width: 50%;
}
.scCom .txtArea .wid {
  width: 80%;
}
}