/* CSS Document */
@charset "utf-8";
/* CSS Document */

body{
  opacity: 0;
  font-size: 14px;
  background-image: none;
}

body.loaded {
  opacity: 1;
  transition: all 0.5s;
  background-image: url(/common/images/bg-carbon.png);
}

.indexPage header {
  background-color: #fff;
  z-index: 10;
  overflow: visible;
}
#header2 {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: #fff;
    overflow: visible;
}
#header2.isFixed {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.80);
}
#header2 #header-inner {
  display: flex;
  background-color: #fff;
  width: 100%;
}
#header2 #header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header2 #header-inner #logo {
  max-width: 180px;
  display: flex;
  align-items: center;
  padding: 0 1em;
}
#header2 #header-inner #logo img {
  width: 100%;
  height: auto;
}
.main-menu {
  display: flex;
  align-items: center;
}
.main-menu {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 0 0 auto;
}
.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 40px;
  width: 40px;
  justify-content: center;
  align-items: center;
  z-index: 11;
  /*background-color: #ff0;transparent*/
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 4px;
  width: 28px;
  border-radius: 3px;
  background-color: #666;
  position: absolute;
  transition: all 0.3s;
  transition-timing-function: linear;
}
.menu-btn span:before {
  bottom: 9px;
}
.menu-btn span:after {
  top: 9px;
}
#menu-btn-check {
  display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.menu-content {
  font-size: 1em;
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;
  left: 0; /*leftの値を変更してメニューを画面外へ*/
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.5s; /*アニメーション設定*/
  padding: 70px 10px 20px;
  box-sizing: border-box;
}
.menu-inner {
  position: relative;
  height: 100%;
  overflow: auto;
}
.menu-content > ul {}
.menu-content ul li {
  border-bottom: solid 1px #ccc;
  list-style: none;
}
.menu-content ul li a,
.menu-content #go-en-site a{
  display: block;
  width: 100%;
  font-size: 0.9em;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 0.75em 1.25em 0.75em 0;
  padding: 1em;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 1em;
  top: 1.5em;
}
.menu-content ul li a[href="javascript:;"]::before {
  content: none;
}

.menu-content ul li > ul {
  border-top: solid 1px #ccc;
  padding-left: 1em;
  padding-top: 0;
  display: none;
}

.menu-content ul li > ul li:last-child {
  border-bottom: none;
}


@media only screen and (max-width: 959px) {
.menu-content ul li.opened > ul{
    display: block;
}
}
.menu-content ul li .sns-links i{
    display: inline-block;
    width:1.5em;
    
}



@media only screen and (min-width: 960px) {
  .main-menu {
    position: relative;
    width: auto;
  }
  .menu-btn {
    display: none;
  }
  .menu-content {
    display: flex;
    width: 100%;
    position: static;
    z-index: 0;
    transition: none;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
  }
  .menu-content .menu-inner,
    .menu-content .menu-inner > ul {
    overflow: visible;
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
  }
  .menu-content .menu-inner {
    padding: 0 1em;
  }
  .menu-content .menu-inner > .lv1, .menu-content .menu-inner > .go-en-site {
    margin: 0 1em;
  }
  .menu-content ul li {
    border-bottom: none;
    list-style: none;
    width: auto;
    padding: 0em;
    position: relative;
  }
  .menu-content ul li a {
    padding: 0.75em;
  }
  .menu-content ul li:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    border-bottom: 3px solid #e60012;
  }
  .menu-content ul li:hover:after {
    width: 100%;
    left: 50%;
    margin-left: -50%;
    transition: all 0.3s;
  }
  .menu-content ul li a::before {
    content: none;
  }
  .menu-content ul li > ul {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -50%;
    padding: 0;
    display: none;
    background-color: #fff;
    white-space: nowrap;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  }
  .menu-content ul li:hover, .menu-content ul li:hover > ul {
    display: block;
  }
  .menu-content ul.sns-links {
    display: none;
  }
}
#menu-btn-check:checked ~ .menu-content {
  top: 0;
  left: 0; /*メニューを画面内へ*/
}
#hero {
  position: relative;
}
#hero > .next-section {
  position: absolute;
  bottom: 30px;
  left: 50%;
}
#hero > .next-section a {
  color: #fff;
  display: block;
  line-height: 1em;
  font-size: 3em;
  margin-left: -50%;
  text-align: center;
}
.indexPage #contents.index-contents {
  background-image: none;
  background-color: #fff;
}
#top-main > #main, #top-main > #aside {
  margin: 0 2%;
}
#top-main > #main .main-inner {
  position: sticky;
  top: 0;
} 
#top-main #main section {
    margin-bottom: 2em;
}
@media only screen and (min-width: 640px) {
    
  #top-main {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
  }
  #top-main > div {
    width: 50%;
  }
   #top-main > #main, #top-main > #aside {
  margin: 0 1%;
}
  #top-main > #main {
    width: 70%;
  }
  #top-main > #aside {
    width: 30%;
  }

  #top-main > #aside {}
  #top-main > #aside > div {}
}
@media only screen and (min-width: 960px) {
  #top-main #main {
    width: 48%;
  }
  #top-main > #aside {
    width: 50%;
    display: flex;
  }
  #top-main > #aside > div {
    position: sticky;
    width: 49%;
    margin: 0 1%;
  }
}
#top-main h2 {
  position: relative;
  z-index: 1;
}
#top-main h2 > span {
  position: relative;
  z-index: 1;
}
#top-main h2:after {
  position: absolute;
  content: "";
  display: block;
  height: 3px;
  background-image: -webkit-linear-gradient(0deg, rgba(255, 255, 255, 1.00) 25%, rgba(153, 153, 153, 1.00) 75%);
  background-image: -moz-linear-gradient(0deg, rgba(255, 255, 255, 1.00) 25%, rgba(153, 153, 153, 1.00) 75%);
  background-image: -o-linear-gradient(0deg, rgba(255, 255, 255, 1.00) 25%, rgba(153, 153, 153, 1.00) 75%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 1.00) 25%, rgba(153, 153, 153, 1.00) 75%);
  top: 50%;
  width: 100%;
  z-index: 0;
}
#top-main #news > ul li:nth-child(n+6) {
  display: none;
}
#top-main ul.banners {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#top-main ul.banners li {
  padding: 0;
  margin: 0.5em 1%;
  width: 48%;
  display: flex;
}
@media only screen and (min-width: 640px) {
  #top-main ul.banners li {
    margin: 0.5em 0%;
    width: 100%;
  }
}
#top-main ul.banners li a {
  padding: 0;
}
#top-main ul.banners li a.border {
  padding: 0;
  border: 1px solid #aaa;
}
#top-main ul.banners li img {
  width: 100%;
  height: auto;
}
#top-main ul.banners li img.line01 {
  border: 1px solid #aaa;
  box-sizing: border-box;
}
#top-main ul.banners li.sns-links-box {
  /*position: relative;*/
  display: flex;
}
#top-main ul.banners li .sns-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  width: 100%;
  background-color: #eee;
  border: 1px solid #ccc;
}
#top-main ul.banners li ul.sns-links li {
  margin: 0;
  padding: 0.1em;
  width: calc(100% / 4);
  text-align: center;
  font-size: 28px;
}
#top-main ul.banners li ul.sns-links li a {
  width: 9vmin;
  height: 9vmin;
  color: #fff;
  background-color: #666;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media only screen and (min-width: 640px) {
#top-main ul.banners li ul.sns-links li a {
  width: 4.5vmin;
  height: 4.5vmin;
}
}
#top-main ul.product_menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0.5em 1em 1em;
}
#top-main ul.product_menu li {
  width: 50%;
}
@media only screen and (min-width: 540px) {
  #top-main ul.product_menu li {
    width: 33.33333333%;
  }
}
@media only screen and (min-width: 640px) {
  #top-main ul.product_menu li {
    width: 25%;
  }
}
#top-main ul.product_menu li a {
  width: 100%;
  text-align: center;
  padding: 1em;
  display: block;
  box-sizing: border-box;
  color: #fff;
}
#footer2 .gridContainer {
  width: 88.5%;
  max-width: 1200px;
  padding-left: 0.75%;
  padding-right: 0.75%;
  margin: auto;
  clear: none;
  float: none;
  margin-left: auto;
}

@media only screen and (min-width: 640px) {
#footerMenu{
   display: flex;
  justify-content: space-between;  
}


#footerMenu nav.sns{
   widows: 20em;
    
}

#footerMenu nav.menu{
    
    width:calc(100% - 20em);
}
    
    #footerMenu nav.sns .sns-links{
    margin-right: 0;
}
}
#footerMenu nav.sns{
    text-align: center;
}
    #footerMenu nav.sns .sns-links{
    display: inline-block;
}

#footerMenu nav.sns ul li{
    font-size:2em;
}

#footerMenu nav.sns ul li:not(:last-child):after {
    content: none;
}

#hero #news {
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 5px;
    position: absolute;
    right: 20px;
    bottom: 20px;
    padding: 20px;
    /* box-shadow: 0 0 10px #000 inset; */
    /* text-shadow: 0 0 3px #fff, 0 0 5px #fff; */
    max-width: 640px;
}
#hero #news h3 {
    /* border-top: 1px solid #666; */
    border-bottom: 1px solid #666;
    padding: 0.5em 0;
    margin: 0;
    background-color:transparent;
    color: #333;;
    text-shadow: none;
}



#hero #news ul li{
    display: flex;
}
#hero #news>ul li span.date {
    display: block;
    float: none;
    padding: 0;
    width: 7em;
    background-image: none;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0.9em;
}

#hero #news>ul li .article {
    width:calc(100% - 7em) ;
}

#hero #news .comment{
    display: none;
}
#hero #news>ul li:nth-child(n+4) { display: none;}


@media only screen and (min-width: 769px){

.gridContainer {
    max-width: 1200px;
}
}




.fullbox .ul1> li{
    position: relative;
    margin-bottom: 0.5em;
}
.fullbox .ul2{
    margin-bottom: 0;
    padding-left:1.5em;
}


.fullbox .ul2> li{
    position: relative;
    list-style: none;
}
.fullbox .ul2> li::before{
    content:"※";
    display: inline-block;
    position: absolute;
    left:-1.5em;
}
