* {
  margin: 0;
  padding: 0;
}
*::after,
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*スクロール背景のCSS*/
body, html, main {
  /* important */
  height: 100%;
}

.fixed-bg-img {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  padding-bottom: 30px

}

.fixed-bg-img.bg-1 {
  min-height: 90%;
  background-image: url("../img/bg-img-1.jpg");
}
.fixed-bg-img.bg-2 {
  text-align: center;
  background-image: url("../img/bg-img-2.jpg");
}
.fixed-bg-img.bg-3 {
  text-align: center;
  background-image: url("../img/bg-img-3.jpg");
}
.fixed-bg-img.bg-4 {
  text-align: center;
  background-image: url("../img/bg-img-4.jpg");
}

.fixed-bg-color {
  text-align: center;
  padding-bottom: 30px

}
.fixed-bg-color.bg-1 {
  background: #ededed;
}

/**/

body {
  font-family: 'Alfa Slab One', cursive;
  background: #eee;
  animation: fadeIn 2s ease 0s 1 normal;/*bodyのアニメーション*/
  -webkit-animation: fadeIn 2s ease 0s 1 normal;/*bodyのアニメーション*/
  -webkit-text-size-adjust:100%
}
/*bodyのアニメーション*/
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
/**/

.corp-nm {
  font-size: 25px;
  display: table-cell;
  vertical-align: middle;
  height: 600px;
  padding-left: 30px;
  line-height: 1.5;
  color: #fff;
  font-family: "Mplus 1p";
  font-weight: 900;
}
.corp-nm:before{
  content: 'Making you happy with technology';
  font-size: 1.5em; /*1.5倍サイズ*/
  display: block; /*改行*/
  font-family: 'Alfa Slab One', cursive;
}

.p-menu {
  font-size: 40px;
  display: inline;
  vertical-align: middle;
  color: #7d7d7d;
  line-height: 300px;/*上下中央揃え*/
}

.p-title {
  font-size: 30px;
  display: inline;
  vertical-align: middle;
  color: #7d7d7d;
  line-height: 180px;/*上下中央揃え*/
}

.p-tel:before,
.p-mail:before{
  font-family: "Font Awesome 5 Free";
  color: #ffb03f;
  font-weight : 900;
  padding-right :10px;
}
.p-tel:before{
  content: "\f098";
}
.p-mail:before{
  content: "\f199";
}

h3 {
  margin-top: 20px;
  color: #fff;
  padding: 10px 40px;
  background: #7d7d7d;
}

/*コンテンツDIV*/
.div-contents {
  width: 60%;
  text-align: center;
  margin: 0 auto; 
  /*font-family: 'ＭＳ ゴシック', sans-serif;*/
  font-family: "Rounded Mplus 1c", sans-serif;
  font-weight: 300;
  background-color: rgba( 255, 255, 255, 0 );/*透明*/
}

.div-contents ul {
  word-wrap:break-all;
  text-align: left;
  padding :10px 30px;
  position: relative;
  background-color: rgba( 255, 255, 255, 0 );/*透明*/
}
.div-contents ul li {
  padding :5px 20px;
  list-style-type: none!important;
}
.div-contents ul li:before {/*疑似要素*/
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  position: absolute;
  left : 1.5em; /*左端からのアイコンまで*/
  color: #ffb03f; /*アイコン色*/
  font-weight : 900;
}
.div-contents ul li span {
  color: #355496;
  font-weight: bold;
  font-size: 1.1em; /*1.1倍サイズ*/
}

.div-contents.news {
  background-color: rgba( 255, 255, 255, 0.80 );
  line-height: 2.0;
  padding: 10px 10px;
  position: absolute;
  bottom: 15%;
  left: 20%
}
.div-contents.news span{
  border-bottom: dotted 2px #7d7d7d;
}

.div-contents.service {
  background-color: rgba( 255, 255, 255, 0.80 );
  line-height: 2.0;
  padding-bottom: 25px
}

.div-contents.company {
}

.div-contents.company span:before {/*疑似要素*/
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  color: #ffb03f; /*アイコン色*/
  font-weight : 900;
  padding-right :10px;
}

.div-contents.contact {
  background-color: rgba( 255, 255, 255, 0.80 );
  line-height: 2.0;
  padding: 25px 10px;
}

.div-contents.product {
}

.div-contents.privacy {
  background-color: rgba( 255, 255, 255, 0.80 );
  line-height: 2.0;
  padding: 25px 10px;
}

.p-contents {
  margin-top: 10px;
  background-color: rgba( 255, 255, 255, 0.80 );
  line-height: 2.0;
  font-size: 1.1em; /*1.1倍サイズ*/
}

/*table*/
table.table01 {
  width:100%;
  border-collapse: collapse;
  margin-top: 10px;
}
table.table01 tbody th {
  width:20%;
  background:#ffb03f;
  color:#FFF;
  padding:10px 15px;
  border-bottom:#FFF solid 1px;
  vertical-align:top;
}
table.table01 tbody tr:last-child th {
  border-bottom:#ffb03f solid 1px;
  font-weight: bold;
}
table.table01 tbody td {
  background-color: rgba( 255, 255, 255, 0.80 );
  padding:10px 15px;
  border-bottom:#ffb03f solid 1px;
  vertical-align:top;
}

footer {
  padding: 30px;
  text-align: center;
  border-top: solid 1px #bbb;
}
footer p {
  color: #7d7d7d;
  text-decoration: none;
  font-size: 0.8em; /*0.8倍サイズ*/
}


/* ナビゲーション部分 */
.inner {
  width: 100%;
  margin: 0 auto;
}
.inner:after {
  content: "";
  clear: both;
  display: block;
}

/* headerメニュー */
#top-head {
  top: -100px;
  position: absolute;
  width: 100%;
  margin: 100px auto 0;
  padding: 30px 0 0;
  line-height: 1;
  z-index: 999;
}
#top-head a,
#top-head {
  color: #fff;
  text-decoration: none;
  padding-left: 10px;
}
#top-head .inner {
  position: relative;
}
#top-head .logo-img {
  border: 0;
  height: 45px;
  width: 193px;
  background-image: url("../img/logo.png");
  background-size: cover;
}

#top-head .logo-img-2 {
  border: 0;
  height: 45px;
  width: 193px;
  background-image: url("../img/logo_org.png");
  background-size: cover;
}
#top-head .logo-img-2 a{
display: block;
position: absolute;
  height: 45px;
  width: 193px;
}

#global-nav ul {
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
#global-nav ul li {
    float: left;
}
#global-nav ul li a {
  padding: 0 20px;
}
 
/* Fixedメニュー */
#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  padding-top: 5px;
  height: 55px;
  background: #fff;
  background: rgba(255,255,255,.7);
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}
#top-head.fixed .logo-img {
  background-image: url("../img/logo_org.png");
}
#top-head.fixed #global-nav ul li a {
  color: #7d7d7d;
  padding: 0 20px;
}

/* Toggle Button */
#nav-toggle {
  display: none;
  position: absolute;
  right: 12px;
  top: 14px;
  width: 34px;
  height: 36px;
  cursor: pointer;
  z-index: 101;
}
#nav-toggle div {
  position: relative;
}
#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #7d7d7d;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 11px;
}
#nav-toggle span:nth-child(3) {
  top: 22px;
}

/* ◆◆スマホ用◆◆ */
@media screen and (max-width: 740px) {
  #top-head,
  .inner {
    width: 100%;
    padding: 0;
  }
  #top-head {
    top: 0;
    position: fixed;
    margin-top: 0;
  }
  /* Fixed reset */
  #top-head.fixed {
    padding-top: 0;
    background: transparent;
  }
  #mobile-head {
    background: #fff;
    background: rgba(255,255,255,.7);
    width: 100%;
    height: 56px;
    z-index: 999;
    position: relative;
    padding-top: 5px;
  }
  #top-head.fixed .logo-img,
  #top-head .logo-img {
    background-image: url("../img/logo_org.png");
  }
  #global-nav {
    position: absolute;
    /* 開いてないときは画面外に配置 */
    top: -500px;
    background: #fff;
    background: rgba(255,255,255,.7);
    width: 100%;
    text-align: center;
    padding: 10px 0;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
  }
  #global-nav ul {
    list-style: none;
    position: static;
    right: 0;
    bottom: 0;
    font-size: 14px;
  }
  #global-nav ul li {
    float: none;
    position: static;
  }
  #top-head #global-nav ul li a,
  #top-head.fixed #global-nav ul li a {
    width: 100%;
    display: block;
    color: #7d7d7d;
    padding: 18px 0;
  }
  #nav-toggle {
    display: block;
  }
  /* #global-nav スライドアニメーション 上からスライドイン*/
  .open #global-nav {
    /* #global-nav top + #mobile-head height */
    -moz-transform: translateY(556px);
    -webkit-transform: translateY(556px);
    transform: translateY(556px);
  }

  .fixed-bg-img {
    background-attachment: scroll;
  }

  .fixed-bg-img.bg-1 {
    background-image: url("../img/bg-img-1.jpg");
    background-position: right center;
  }
  .fixed-bg-img.bg-2 {
    text-align: center;
    background-image: url("../img/bg-img-2-s.jpg");
  }
  .fixed-bg-img.bg-3 {
    text-align: center;
    background-image: url("../img/bg-img-3-s.jpg");
  }
  .fixed-bg-img.bg-4 {
    text-align: center;
    background-image: url("../img/bg-img-4-s.jpg");
  }


  .corp-nm {
    font-size: 20px;
    height: 400px;
  }

  .p-menu {
    font-size: 30px;
  }

  .p-title {
    font-size: 25px;
  }

  /*コンテンツDIV*/
  .div-contents {
    width: 90%;
  }
  .div-contents.news {
    left: 5%
  }
.div-contents.news span{
  font-size: 0.8em; /*0.8倍サイズ*/
}


  /*table*/
  table.table01 tbody th {
    width:100%;
    display:block;
  }
  table.table01 tbody td {
    display:block;
  }

}