@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  margin: 0;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  height: 100%;
  min-width: 320px;
  margin: 0;
  font-family: "Noto sans JP", serif;
}

body .Wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  width: 100%;
}

a {
  text-decoration: none;
  color: #333;
}

p {
  margin: 0;
  font-size: 1.6rem;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/*iOSのフォーム独自デザインリセット*/
input[type=submit],
input[type=reset],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: none;
  appearance: button;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=reset]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

.mobile {
  display: none;
}

.pc {
  display: block;
}

.pc_tab {
  display: block;
}

.sp {
  display: none;
}

/*-----------------
    ヘッダー
 *-----------------*/
.sub #Header {
  box-shadow: 0 5px 4px rgba(174, 43, 43, 0.16);
}

#Header {
  width: 100%;
  height: 100px;
}

#HeaderInner {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 5px;
}
#HeaderInner h1 {
  font-size: 2.4rem;
  margin: 0;
  line-height: 100px;
}
#HeaderInner .barwrap {
  display: none;
}
#HeaderInner .Menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#HeaderInner .Menu li {
  padding: 0 0 0 30px;
}
#HeaderInner .Menu a {
  font-size: 1.8rem;
  font-weight: 700;
}

/*-----------------
    トップ
 *-----------------*/
.TopMovie {
  position: relative;
  width: 100%;
}
.TopMovie #Video {
  width: 100%;
}
.TopMovie #VideoSp {
  display: none;
  height: 100vh;
}
.TopMovie .TopBack {
  position: absolute;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  background-image: url("../img/cover.png");
  z-index: 1;
}
.TopMovie .Logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  min-width: 300px;
  z-index: 2;
}
.TopMovie .ScrollWrap {
  position: absolute;
  width: 100%;
  max-width: 1150px;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto serif JP", serif;
  z-index: 2;
}
.TopMovie .Scroll {
  position: absolute;
  bottom: 180px;
  left: 0;
  font-size: 1.6rem;
  color: #FFF;
  transform: rotate(90deg);
}
.TopMovie .arrow {
  content: "";
  position: absolute;
  top: 12px;
  left: 68px;
  width: 100px;
  height: 3px;
  background: rgba(255, 255, 255, 0);
  overflow: hidden;
}
.TopMovie .arrow:before {
  position: absolute;
  top: 0;
  left: -100px;
  content: "";
  width: 100px;
  height: 1px;
  background: #FFF;
  -webkit-animation: arrow 2s ease 0s infinite normal;
  animation: arrow 2s ease 0s infinite normal;
}
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  60% {
    -webkit-transform: translate3d(100px, -50%, 0);
    transform: translate3d(100px, -50%, 0);
  }
  100% {
    -webkit-transform: translate3d(100px, -50%, 0);
    transform: translate3d(100px, -50%, 0);
  }
}

.TopExplanation {
  width: 100%;
  background-image: url("../img/TopRed.png");
  background-color: #F1453F;
  background-size: cover;
  background-position: center;
}
.TopExplanation h2 {
  font-size: 6rem;
  margin: 0;
  padding: 175px 0;
  color: #FFF;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(178, 80, 77, 0.8);
}
.TopExplanation p {
  width: 100%;
  max-width: 1150px;
  color: #FFF;
  font-size: 2.4rem;
  margin: 0 auto;
  padding: 0 5px 45px 5px;
  text-shadow: 1px 1px 2px rgba(174, 43, 43, 0.8);
}

.TopProductListWrap {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 100px 0;
}
.TopProductListWrap h2 {
  font-size: 4.8rem;
  text-align: center;
  margin: 0;
}
.TopProductListWrap .TopProductList {
  padding: 100px 5px 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.TopProductListWrap .TopProductList .Item {
  width: 45%;
  padding: 0 0 50px 0;
}
.TopProductListWrap .TopProductList .Img {
  overflow: hidden;
  position: relative;
}
.TopProductListWrap .TopProductList .Img img {
  transition-duration: 1s;
}
.TopProductListWrap .TopProductList .Img a {
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
  width: 140px;
  height: 50px;
  background-color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  color: #FFF;
  position: absolute;
  text-align: center;
  line-height: 50px;
}
.TopProductListWrap .TopProductList .Details:hover img {
  transition-duration: 1s;
  transform: scale(1.1);
}
.TopProductListWrap .TopProductList .Details:hover a {
  background-color: #E7161A;
}
.TopProductListWrap .TopProductList h3 {
  font-size: 3.2rem;
  margin: 0;
  padding: 10px 0;
}
.TopProductListWrap .TopProductList .price {
  font-size: 3.2rem;
  font-weight: 700;
  padding: 10px 0;
}
.TopProductListWrap .TopProductList .price .tax {
  font-size: 1.6rem;
  padding: 0 0 0 10px;
}

/*-----------------
    フッター
 *-----------------*/
#Footer {
  width: 100%;
  background-color: #000;
}
#Footer .FooterMenu {
  display: block;
  width: 617px;
  margin: 0 auto;
  padding: 50px 0;
}
#Footer .FooterMenu li {
  display: inline-block;
  padding: 0 25px;
}
#Footer .FooterMenu li a {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
}
#Footer .FooterImg {
  width: 310px;
  margin: 0 auto;
}
#Footer .add {
  text-align: center;
  font-size: 1.4rem;
  color: #FFF;
  padding: 20px 0;
}
#Footer small {
  display: block;
  padding: 20px 0;
  margin: 0;
  text-align: center;
  font-size: 1.2rem;
  color: #FFF;
  font-weight: 700;
}

/*-----------------
 商品詳細
 *-----------------*/
.ProductWrap {
  width: 100%;
  max-width: 1150px;
  margin: 30px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ProductWrap .ProductLeft {
  width: 49%;
  padding: 0 5px;
}
.ProductWrap .ProductLeft p {
  margin: 30px 0 0 0;
  padding: 5px 0 0 15px;
  font-size: 1.8rem;
}
.ProductWrap .ProductLeft ul {
  margin: 0;
  padding: 0 0 0 15px;
  font-size: 1.6rem;
}
.ProductWrap .ProductLeft .ProductThumb {
  padding: 0;
}
.ProductWrap .ProductLeft .ProductExample {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.ProductWrap .ProductLeft .ProductExample .modelroom {
  margin: 20px 0 0 0;
}
.ProductWrap .ProductLeft .ProductExample .modelroom p {
  margin: 0;
  padding: 0;
}
.ProductWrap .ProductLeft .ProductExample > div {
  width: 50%;
}
.ProductWrap .ProductLeft .ProductExample > div .img {
  width: 100%;
  height: auto;
}
.ProductWrap .ProductRight {
  width: 49%;
  padding: 0 5px;
}
.ProductWrap .ProductRight h2 {
  font-size: 3.2rem;
}
.ProductWrap .ProductRight .option {
  margin: 15px 0;
}
.ProductWrap .ProductRight .text {
  margin: 25px 0;
}
.ProductWrap .ProductRight .price {
  font-size: 3.2rem;
  margin: 15px 0;
  font-weight: 700;
}
.ProductWrap .ProductRight .price .tax {
  font-size: 1.6rem;
}
.ProductWrap .ProductRight ul {
  margin: 0;
  padding: 0;
  padding-left: 25px;
}
.ProductWrap .ProductRight ul li {
  font-size: 1.6rem;
}
.ProductWrap .ProductRight .Img {
  width: 100%;
  margin: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ProductWrap .ProductRight .Img p {
  width: 49%;
}
.ProductWrap .ProductRight .Img .ImgChild {
  width: 100%;
}
.ProductWrap .ProductRight table {
  width: 100%;
  font-size: 1.6rem;
  margin: 10px 0;
}
.ProductWrap .ProductRight table .ttl {
  font-weight: 700;
  color: #FFF;
  background-color: #4472C4 !important;
}
.ProductWrap .ProductRight table th {
  width: 240px;
  font-weight: 400;
  padding: 5px 0 5px 20px;
  text-align: left;
}
.ProductWrap .ProductRight table tr:nth-child(even) th,
.ProductWrap .ProductRight table tr:nth-child(even) td {
  background-color: #CFD5EA;
}
.ProductWrap .ProductRight table tr:nth-child(odd) th,
.ProductWrap .ProductRight table tr:nth-child(odd) td {
  background-color: #E9EBF5;
}
.ProductWrap .ProductRight table td {
  padding: 5px 0 5px 20px;
}
.ProductWrap .ProductThumb {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.ProductWrap .ProductThumb li {
  width: 24%;
  margin-top: 1%;
}

/*-----------------
 事業内容
*-----------------*/
.BusinessWrap {
  width: 100%;
}
.BusinessWrap h2 {
  font-size: 6.4rem;
  text-align: center;
  margin: 50px 0 0 0;
}
.BusinessWrap h2 .Red {
  color: #D90B04;
}
.BusinessWrap h3 {
  font-size: 2.4rem;
  margin: 0;
  text-align: center;
}
.BusinessWrap .line {
  line-height: 70px;
}
.BusinessWrap .Txt {
  width: 90%;
  max-width: 800px;
  margin: 20px auto;
  line-height: 30px;
}
.BusinessWrap .Business {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 50px 0;
}
.BusinessWrap .Business .Img {
  width: 40%;
  height: 550px;
  background-position: center;
  background-size: cover;
}
.BusinessWrap .Business .TextContent {
  width: 60%;
  margin: 0 0 0 30px;
  padding: 0 5px;
  max-width: 750px;
}
.BusinessWrap .Business .TextContent h3 {
  text-align: left;
  margin: 30px 0;
  padding: 0 0 0 10px;
  border-left: 15px solid #D90B04;
}
.BusinessWrap .Business .TextContent p {
  line-height: 30px;
}
.BusinessWrap .content1 .Img {
  background-image: url("../img/service-1.jpg");
}
.BusinessWrap .content2 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.BusinessWrap .content2 .TextContent {
  margin: 0 30px 0 0;
}
.BusinessWrap .content2 .Img {
  background-image: url("../img/service-2.jpg");
}
.BusinessWrap .content3 .Img {
  background-image: url("../img/service-3.jpg");
}

.RelationWrapWrap {
  padding: 0 5px;
}

.RelationWrap {
  width: 100%;
  max-width: 1150px;
  background: #BF2B2B;
  margin: 50px auto;
  padding: 0 30px;
}
.RelationWrap h3 {
  font-size: 3.6rem;
  color: #FFF;
  padding: 30px 0 20px 0;
  text-align: center;
  border-bottom: 1px solid #FFF;
}
.RelationWrap .Relation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  padding: 20px 30px;
}
.RelationWrap .Relation .Item {
  width: 50%;
  max-width: 400px;
}
.RelationWrap .Relation .Item p {
  font-size: 2.4rem;
  color: #FFF;
}
.RelationWrap .Relation .Item ul {
  font-size: 1.6rem;
  color: #FFF;
  margin: 0;
  padding: 0 0 0 30px;
}

/*-----------------
 会社概要
*-----------------*/
.CompanyWrap .Company {
  display: block;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.CompanyWrap .Company .TextContent {
  width: 100%;
  max-width: 100%;
  margin: 0;
}
.CompanyWrap .Company .TextContent h3 {
  line-height: 70px;
}
.CompanyWrap .showroom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.CompanyWrap .showroom .txt {
  width: 59%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.CompanyWrap .showroom .txt img {
  margin: 10px 0 0 0;
}
.CompanyWrap .showroom .img {
  width: 39%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.CompanyWrap .CompanyTable {
  width: 100%;
  font-size: 1.6rem;
  line-height: 30px;
  border-collapse: collapse;
}
.CompanyWrap .CompanyTable tr {
  border-bottom: 1px solid #707070;
}
.CompanyWrap .CompanyTable tr:last-child {
  border-bottom: 0;
}
.CompanyWrap .CompanyTable th {
  padding: 20px 10px 20px 0;
  text-align: right;
}
.CompanyWrap .CompanyTable td {
  padding: 20px 0 20px 20px;
}
.CompanyWrap .CompanyTable td a {
  text-decoration: underline;
  color: #1D41CF;
}
.CompanyWrap #initmap {
  width: 100%;
  height: 600px;
}
.CompanyWrap #initmap img {
  width: 171px;
  height: 121px;
}

/*-----------------
 フォーム
*-----------------*/
.OderWrap {
  background-color: #FEEFEF;
}
.OderWrap .Red {
  color: #D90B04;
}

.ContactFormWrap {
  width: 100%;
  max-width: 1150px;
  margin: 50px auto 0 auto;
  padding: 30px 0;
}
.ContactFormWrap .Red {
  color: #D90B04;
}
.ContactFormWrap h2 {
  font-size: 6.4rem;
  margin: 0 0 20px 0;
  text-align: center;
}
.ContactFormWrap .ContactForm {
  width: 100%;
  padding: 0px 5px;
  margin: 30px 0;
}

.FormTable {
  width: 100%;
  font-size: 1.6rem;
  line-height: 30px;
  border-collapse: collapse;
}
.FormTable tr {
  border-bottom: 1px solid #707070;
}
.FormTable tr:last-child {
  border-bottom: 0;
}
.FormTable th {
  position: relative;
  width: 40%;
  text-align: right;
  padding: 15px 10px 15px 100px;
}
.FormTable th .must {
  font-size: 1.4rem;
  line-height: 18px;
  color: #FFF;
  padding: 3px 10px;
  background: #D90B04;
  position: absolute;
  top: 50%;
  left: 25px;
  transform: translateY(-50%);
}
.FormTable td {
  padding: 15px 25px 15px 5px;
}
.FormTable td input[type=text],
.FormTable td input[type=email],
.FormTable td input[type=tel],
.FormTable td textarea {
  height: 30px;
  width: 100%;
  border: 1px solid #707070;
  padding: 5px;
}
.FormTable td input[type=text].zip {
  width: 200px;
}
.FormTable td input[type=tel] {
  width: 300px;
}
.FormTable td textarea {
  padding: 5px;
  height: 100px;
  resize: vertical;
}

.button {
  display: block;
  font-size: 3.2rem;
  color: #FFF;
  border: 0;
  background-color: #BF2B2B;
  padding: 10px 20px;
  margin: 40px auto;
}

.submit {
  font-size: 3.2rem;
  color: #FFF;
  border: 0;
  background-color: #BF2B2B;
  padding: 10px 20px;
  margin: 40px 20px;
}

.button2 {
  font-size: 3.2rem;
  color: #FFF;
  border: 0;
  background-color: #707070;
  padding: 10px 20px;
  margin: 40px 20px;
}

.policy {
  width: 80%;
  margin: 50px auto;
  border: 1px solid #707070;
  padding: 30px 20px;
}
.policy h3 {
  font-size: 2.4rem;
  margin: 0;
  text-align: center;
}
.policy p {
  margin: 30px 0 0 0;
}

.Done {
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .hidden {
    overflow: hidden;
  }
  .mobile {
    display: block;
  }
  .pc {
    display: none;
  }
  /*-----------------
   ヘッダー
   *-----------------*/
  #Header {
    height: 50px;
  }
  #HeaderInner {
    position: relative;
  }
  #HeaderInner h1 {
    font-size: 2rem;
    line-height: 50px;
  }
  #HeaderInner .MobileMenu {
    margin: 0;
    padding: 20px 0 0 0;
  }
  #HeaderInner .MobileMenu li {
    text-align: center;
    line-height: 50px;
    padding: 0;
  }
  #HeaderInner .MobileMenu li a {
    display: block;
    width: 100%;
    color: #FFF;
  }
  #HeaderInner .barwrap {
    display: block;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 2;
  }
  #HeaderInner .barwrap .bar1 {
    top: 12.5px;
  }
  #HeaderInner .barwrap .bar2 {
    top: 19.5px;
  }
  #HeaderInner .barwrap .bar3 {
    top: 26.5px;
  }
  #HeaderInner .barwrap .bar1, #HeaderInner .barwrap .bar2, #HeaderInner .barwrap .bar3 {
    position: absolute;
    width: 20px;
    height: 1px;
    background: #000;
    left: 10px;
    transition: all 0.5s;
  }
  #HeaderInner .barwrap:hover {
    cursor: pointer;
  }
  #HeaderInner .barwrap.active {
    border: 1px solid #000;
    border-radius: 50%;
  }
  #HeaderInner .active .bar1 {
    -webkit-transform: translateY(7px) rotate(45deg);
    transform: translateY(7px) rotate(45deg);
  }
  #HeaderInner .active .bar2 {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-btn17-bar02 0.8s forwards;
    animation: active-btn17-bar02 0.8s forwards;
  }
  #HeaderInner .active .bar3 {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
  #HeaderInner .MobileMenu {
    display: block;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 50px;
    left: 0;
    z-index: 3;
  }
  #HeaderInner .MobileMenu li {
    transform: translateX(-150%);
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
  }
  #HeaderInner .MobileMenu li:nth-child(1) {
    animation-delay: 0.2s;
  }
  #HeaderInner .MobileMenu li:nth-child(2) {
    animation-delay: 0.3s;
  }
  #HeaderInner .MobileMenu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  #HeaderInner .MobileMenu li:nth-child(4) {
    animation-delay: 0.4s;
  }
  #HeaderInner .MobileMenu li:nth-child(5) {
    animation-delay: 0.5s;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateX(-100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  /*-----------------
   トップ
   *-----------------*/
  .TopMovie .ScrollWrap {
    display: none;
  }
  .TopExplanation h2 {
    font-size: 2.4rem;
    padding: 30px 0;
  }
  .TopExplanation p {
    font-size: 1.6rem;
  }
  .TopProductListWrap {
    padding: 30px 0;
  }
  .TopProductListWrap h2 {
    font-size: 2.4rem;
  }
  .TopProductListWrap .TopProductList {
    padding: 30px 5px 0 5px;
  }
  .TopProductListWrap .TopProductList h3 {
    font-size: 2rem;
  }
  .TopProductListWrap .TopProductList .price {
    font-size: 2rem;
  }
  /*-----------------
   フッター
   *-----------------*/
  #Footer {
    padding: 20px 5px 0 5px;
  }
  #Footer .FooterMenu {
    display: none;
  }
  /*-----------------
   商品詳細
   *-----------------*/
  .ProductWrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ProductWrap .ProductLeft {
    width: 100%;
  }
  .ProductWrap .ProductLeft h2 {
    font-size: 3.2rem;
    margin: 0;
  }
  .ProductWrap .ProductLeft .text {
    margin: 20px 0;
    padding: 0;
  }
  .ProductWrap .ProductLeft .ProductExample {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ProductWrap .ProductLeft .ProductExample > div {
    width: 100%;
  }
  .ProductWrap .ProductLeft .modelroom p {
    margin: 0;
    padding: 0;
  }
  .ProductWrap .ProductRight {
    width: 100%;
  }
  .ProductWrap .ProductRight .price {
    text-align: right;
  }
  /*-----------------
   事業内容
   *-----------------*/
  .BusinessWrap h2 {
    font-size: 4rem;
    margin: 30px 0 0 0;
  }
  .BusinessWrap h3 {
    font-size: 1.8rem;
  }
  .BusinessWrap .Txt {
    width: 100%;
    padding: 0 5px;
  }
  .BusinessWrap .Business {
    padding: 30px 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .BusinessWrap .Business .Img {
    width: 90%;
    height: 100px;
  }
  .BusinessWrap .Business .TextContent {
    width: 100%;
    margin: 0;
  }
  .BusinessWrap .Business .TextContent h3 {
    margin: 15px 0;
  }
  .BusinessWrap .content2 .Img {
    order: 1;
  }
  .BusinessWrap .content2 .TextContent {
    order: 2;
  }
  .RelationWrap {
    margin: 30px auto;
    padding: 0 10px;
  }
  .RelationWrap h3 {
    font-size: 2.4rem;
    padding: 15px 0 10px 0;
  }
  .RelationWrap .Relation {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 15px 10px;
  }
  .RelationWrap .Relation .Item {
    width: 100%;
    padding: 0 0 15px 0;
  }
  .RelationWrap .Relation .Item p {
    font-size: 1.8rem;
  }
  /*-----------------
   会社概要
   *-----------------*/
  .CompanyWrap .CompanyTable tr {
    display: block;
    width: 100%;
  }
  .CompanyWrap .CompanyTable th, .CompanyWrap .CompanyTable td {
    width: 100%;
    display: block;
  }
  .CompanyWrap .CompanyTable th {
    padding: 20px 0 0 20px;
    text-align: left;
  }
  .CompanyWrap .CompanyTable td {
    padding: 10px 0 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .sp {
    display: block;
  }
  /*-----------------
   トップ
   *-----------------*/
  .TopMovie {
    overflow: hidden;
  }
  .TopMovie #Video {
    display: none;
  }
  .TopMovie #VideoSp {
    height: 100vh;
    display: block;
    transform: translate(-35px, 0);
  }
  .TopProductListWrap .TopProductList .Item {
    width: 100%;
    padding: 0 0 30px 0;
  }
  /*-----------------
   会社概要
   *-----------------*/
  .CompanyWrap .showroom {
    width: 100%;
    display: block;
  }
  .CompanyWrap .showroom .txt {
    width: 100%;
  }
  .CompanyWrap .showroom .img {
    width: 100%;
    margin: 10px 0 0 0;
  }
  /*-----------------
   フォーム
   *-----------------*/
  .ContactFormWrap {
    margin: 0;
  }
  .ContactFormWrap h2 {
    font-size: 4rem;
  }
  .FormTable {
    display: block;
  }
  .FormTable tbody, .FormTable tr {
    display: block;
    width: 100%;
  }
  .FormTable th, .FormTable td {
    display: block;
    width: 100%;
  }
  .FormTable th {
    padding: 15px 5px 5px 60px;
    text-align: left;
  }
  .FormTable th .must {
    left: 5px;
  }
  .FormTable .item {
    padding: 15px 5px 5px 0;
  }
  .FormTable td {
    padding: 0 0 10px 0;
  }
  .button {
    font-size: 2rem;
    margin: 20px auto;
  }
  .submit, .button2 {
    font-size: 2rem;
    margin: 20px 10px;
  }
  .policy {
    width: 95%;
    margin: 30px auto;
    padding: 10px;
  }
  .policy h3 {
    font-size: 1.8rem;
  }
  .policy p {
    margin: 10px 0 0 0;
  }
}/*# sourceMappingURL=style.css.map */