@charset "utf-8";

/*
div{
	border: 1px solid red;
}
*/

/*--------------- default ---------------*/
* { 
    margin: 0px; 
    padding: 0px; 
}

html.wf-active, html.loading-delay {
  visibility: visible;
}

body{
  font-family: "Helvetica Neue",
  Arial,
  "Hiragino Kaku Gothic ProN",
  "Hiragino Sans",
  Meiryo,
  sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 1em;
  line-height: 1.6;
  color: #002A41;
  letter-spacing: 1px;
}

header {
  position: relative;
  height: 89.5vh;
  /* background: #000; */
}

header h1 {
  position: absolute;
  top: 40%;
  width: 100%;
  color: #000;
  font-size: 2em;
  text-align: center;
  transform: translateY(-50%);
}

header h2 {
  position: absolute;
  top: 60%;
  width: 100%;
  color: #000;
  font-size: 2em;
  text-align: center;
  transform: translateY(-50%);
}

nav {
  height: 100px;
  background: #EAEAEA;
  display: flex;
  align-items: center;
}

nav .main-nav {
  float: left;
}

nav .main-nav li,
nav .sub-nav li{
  display: inline-block;
  vertical-align: middle;
  padding: 0 15px;
}

nav .main-nav li:first-child{
  padding-left: 30px;
}

nav .sub-nav {
  position: absolute;
  right: 30px;
  font-weight: bold;
  padding: 10px 0 0 0;
}

/* drawer */
.drawer{
  display: none;
}

#nav-toggle {
  position: absolute;
  top: 25px;
  right: 25px;
  height: 52px;
  cursor: pointer;
  padding: 10px 7px;
}

#nav-toggle > div {
  position: relative;
  width: 36px;
}

#nav-toggle span {
  width: 100%;
  height: 2px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: top .1s ease, -webkit-transform .1s ease-in-out;
  transition: transform .1s ease-in-out, top .1s ease;
  transition: transform .1s ease-in-out, top .1s ease, -webkit-transform .1s ease-in-out;
  will-change: transform;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}
#nav-toggle span:nth-child(2) {
  top: 12px;
}
#nav-toggle span:nth-child(3) {
  top: 24px;
}
#nav-toggle:hover span:nth-child(1) {
  top: 3px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 21px;
}

.open #nav-toggle{
  border-color: #fff;
}

.open #nav-toggle span {
  background: #fff;
}
.open #nav-toggle span:nth-child(1) {
  top: 13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#gloval-nav {
  background: #000;
  color: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  /* text-align: center; */
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity .4s ease, visibility .4s ease;
}

#gloval-nav .m-logo img{
  width: 100px;
}

#gloval-nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 5px 0 5px;
  transition: color .6s ease;
}
#gloval-nav a:hover {
  color: #fff;
}

#gloval-nav .menu-sns{
  margin-top: 30px;
}

#gloval-nav .menu-sns a.m-icon{
  display: inline;
}

#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(80px);
  transform: translateX(80px);
  transition: transform .3s ease, opacity .1s ease, -webkit-transform .1s ease;
  font-size: 0.8em;
}

#gloval-nav ul li.ttl {
  font-weight: bold;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
  margin:20px 0 10px 0;
  font-size: 1em;
}

#gloval-nav ul li:nth-child(2) {
  transition-delay: .1s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: .2s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: .3s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: .4s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: .5s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: .6s;
}
#gloval-nav ul li:nth-child(8) {
  transition-delay: .7s;
}
#gloval-nav ul li:nth-child(9) {
  transition-delay: .8s;
}
#gloval-nav ul li:nth-child(10) {
  transition-delay: .9s;
}
#gloval-nav ul li:nth-child(11) {
  transition-delay: 1.1s;
}
#gloval-nav ul li:nth-child(12) {
  transition-delay: 1.2s;
}
#gloval-nav ul li:nth-child(13) {
  transition-delay: 1.3s;
}
#gloval-nav ul li:nth-child(14) {
  transition-delay: 1.4s;
}
#gloval-nav ul li:nth-child(15) {
  transition-delay: 1.5s;
}
#gloval-nav ul li:nth-child(16) {
  transition-delay: 1.5s;
}
/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 0.9;
}
.open #gloval-nav li {
  opacity: 0.9;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: transform .1s ease, opacity .9s ease, -webkit-transform .5s ease;
  will-change: transform;
}

#gloval-nav .nav-icon a{
display: inline-block;
padding: 20px 0;
}



/*  added */

.bg-gray{
  background-color: #F4F5F5;
}

.blocks{
  padding: 120px 0;
}

.blocks h2,
.blocks h3 {
  text-align: center;
}

.blocks .block-ttl{
  font-size: 2.4em;
  
}

.blocks .block-ttl span{
border-bottom: 1px solid #002A41;
padding-bottom: 20px;
margin-bottom: 20px;
}

.block-subttl{
  margin-top: 30px;
  font-weight: normal;
}

.blocks h2.ttl-product01{
  text-align: left;
  margin: 0 0;
  font-size: 3.5em;
  border-bottom: 1px solid #002A41; 
}

.blocks .sub-ttl01{
  margin: 0 0;
}

.blocks .description{
  font-size: 1.2em;
  line-height: 1.6em;
}

.numbers{
  font-size: 6em;
  margin-bottom: 0;
}

strong{
  color:#002A41;
}


.blocks h2.ttl-product02{
  text-align: left;
  margin: 0 0;
  font-size: 3.5em;
  color:#F68D00;
}


.subttl-product02{
  color:#F68D00;
  margin-top: 0;
  margin-bottom: 40px;
}

.des-bdr{
  border-top: 1px solid #002A41;
  padding-top: 40px;
}

.ls03{
letter-spacing: 0.3em;
}


/*  added */



h2{
  font-size: 24px;
  font-weight: bold;
  margin: 30px 0 20px 0;
}

h3{
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 20px;
}

h4{
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 30px;
}

.btn-next{
  background: #D0BE60 0% 0% no-repeat padding-box;
  border-radius: 25px;
  opacity: 1;
  display: inline-block;
  color: #fff;
  padding: 10px 50px;
  margin-top: 20px;
  position: absolute;
  right: 0;
  bottom: 25px;
  font-weight: bold;
}

.btn-next a{
  color: #fff;
}

footer {
  /* height: 200px; */
  background: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  margin: 100px auto 50px auto!important;
}

footer ul{
  margin: 20px 0 30px;
}

footer ul li{
  display: inline-block;
  padding: 0 10px;
  
}

footer img.logo{
  margin: 0 0 30px 0;
}

#pageTop {
  display: none;
  position: fixed;
  bottom: 0;
  right: 170px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* header */
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
/* header */



.object-fit-img {
  object-fit: cover;
  object-position: 50% 50%;
  font-family: 'object-fit: cover; object-position: 50% 50%;';
}

@media screen and (max-width:1200px) {

}

@media screen and (max-width:800px) {

}

@media screen and (max-width:600px) {

}

@media (min-width: 3800px) {

}

@media (min-width: 1408px) {

}

@media (min-width: 1281px) {

}

@media (min-width: 1216px) and (max-width: 1407px) {

}

@media (min-width: 971px) and (max-width: 1216px) {

}

@media (min-width: 320px) and (max-width: 970px) {

  .columns {
    margin-left: 0;
    margin-right: 0;
  }

#top-logo {
    position: absolute;
    top: 25px;
    left: 15px;
    z-index: 100;
}

#top-logo img{
  width: 80%;
}

.drawer{
  height: 90px;
  background-color: rgba(250, 250, 250, 0.8);
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  display: block;
}

#nav-toggle {
  top: 20px;
}

nav{
    display: none;
  }

  header {
      height: 100vh;
    }

  header h1 {
    position: absolute;
    top: 48%;
    width: 50%;
    left: 25%;
  }

  header h2 {
        top: 60%;
        width: 90%;
        left: 5%;
    }
    
h2 {
  padding: 0 10px;
  margin: 30px 0 20px 0;
}

h4{
  padding: 0 10px;
  margin: 10px 0 20px;
}

#pageTop {
  right: 20px;
}

footer {
  padding: 0 10px;
}


.blocks {
    padding: 50px 0;
}

.blocks .block-ttl {
    font-size: 1.8em;
}

.blocks .sub-ttl01 {
    margin: 0 10px;
}

.blocks h2.ttl-product02 {
    font-size: 2.5em;
}

.mdn{
  display: none;
}

}