@charset "UTF-8";

/* 全体------------------------------------------------------------------------------------------------------------- */

body{
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.7em;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", sans-serif;
  letter-spacing: 0.05em;
}

img{
  max-width: 100%;
}

a {
  display: block;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}

.btn {
  color: #fff;
  background-color: #03ade8;
  border-radius: 8px;
  width: 245px;
  height: fit-content;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.Arrow-Right {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  width:0.8em;
  height: 0.8em;
  transform: rotate(45deg);
  margin: 7px 0 0px;
}

main .btn{
  margin: 60px 0 0 0;
}

h2 {
  font-size: 20px;
  position: relative;
  padding: 1.5rem 0;
  text-align: center;
  letter-spacing: 0.3em;
  font-weight: lighter;
  margin: 80px 0 60px 0;
}

h2 span {
  font-size: 41px;
  display: block;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

h2:before {
  position: absolute;
  bottom: -10px;
  left: calc(50% - 30px);
  width: 60px;
  height: 5px;
  content: '';
  border-radius: 3px;
  background: #03ade8;
}

.center{
  text-align: center;
}




@media screen and (max-width: 780px) {
  body{
     font-size:1.3em;
   }
}





/* ヘッダー ----------------------------------------------------------------------------------------------------------*/

header {
    display: flex;
    justify-content: space-between;
    padding: 0px 3% 25px;
}

header nav ul{
    display: flex;
}

header nav ul li{
    margin: 0 0.5em;
    background-color: #fff;
    width: 120px;
    text-align: center;
}

header nav ul li a{
    color: #4f4f4f;
}

header nav ul .contact{
    position: relative;
    background-color: #03ade8;
    color: #fff;
    padding: 2em 1.5em;
    margin: -30px 0 0 0;
    border-radius: 0 0 20px 20px;
}

header nav ul .contact a{
    color: #fff;
}

header nav ul li .u-line:hover {
  opacity: 1;
}

header nav ul li .u-line::after {
  border-bottom: solid 2px #5ac0ed;
  bottom: 0;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

header nav ul li .u-line:hover::after {
  width: 100%;
}

header nav ul li a .sub-menu {
  position: absolute;
  width: 100%;
  top: 50px;
}

.sub-menu-item {
  opacity: 0;
  height: 0;
  /* サブメニューが出現する速度の調整 */
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 1.5em 0;
  position: absolute;
  width: 120px;
}

/* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */
header nav ul li:hover> .sub-menu > .sub-menu-item {
  opacity: 1;
  height: 50px;
  margin: 1.5em 0;
}

@media screen and (max-width: 1060px) {
  header {
    padding: 0 0.5% 25px;
}

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

  header {
    display: flex;
    padding: 0 3% 25px;
}

  header nav ul {
    display: block;
  }

  header nav ul li {
    margin: 0;
  }

  header nav ul .contact {
    position: static;
    background-color: #fff;
    color: #4f4f4f;
    padding: 0;
    margin: 0px 0 0 0;
    border-radius: 0;
  }



 /*　ハンバーガーボタン　*/

  .hamburger {
    display: block;
    position: relative;
    z-index: 3;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }
  
  /* ナビ開いてる時のボタン */

  .hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
  }
  
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
  }
  
  nav.globalMenuSp {
    position: fixed;
    z-index : 2;
    top  : 0;
    left : 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
    position: fixed;
   overflow-y: scroll;
  }
  
  nav.globalMenuSp ul {
    background: #fff;
    margin: 0 auto;
    padding: 60px 0;
    width: 100%;
  }
  
  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin: 0px 0;
  }


  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #4f4f4f;
    padding: 0.5em 0;
    text-decoration: none;
  }
  
  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }


  nav.globalMenuSp ul li .sub-menu{
    padding: 0;
  }

  .sub-menu-item {
    height: fit-content;
    position: static;
    margin: 0;
    opacity: 1;
}

header nav ul li:hover> .sub-menu > .sub-menu-item {
  opacity: 1;
  height: fit-content;
  margin:  0;
}
}





/* フッター----------------------------------------------------------------------------------------------------------*/

footer .footer-flex{
  width: 80%;
  margin: 120px auto;
  display: flex;
  justify-content: space-between;
}

footer  .footer-flex .name .address{
  color: #8e8e8e;
  font-size: 0.9em;
    margin: 45px 0 0 0;
}

footer  .footer-flex .footer-nav ul li{
  margin-bottom: 25px;
}

footer  .footer-flex .footer-nav ul li a{
  color: #4f4f4f;
}

footer .copy-right{
  color: #8e8e8e;
  font-size: 0.8em;
  text-align: center;
}

@media screen and (max-width: 930px) {
  footer .footer-flex {
    width: 95%;
}
}

@media screen and (max-width: 810px) {
  footer .footer-flex {
    width: 50%;
    display: block;
}

footer .footer-flex .footer-nav {
  margin: 30px 0 50px 0;
}
}

@media screen and (max-width: 450px) {
  footer .footer-flex {
    width: 90%;
}
}




/* TOP----------------------------------------------------------------------------------------------------------*/


/* メイン画像・スライドショー ----------------------------------------------------------------------------------------------------------*/

#top .pc-main-v video {
  height: 85vh;
  display: block;
  width: 100%;
}

#top .sp-main-v {
  display: none;
}

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

  #top .pc-main-v {
    display: none;
  }

  #top .sp-main-v {
    display: block;
  }

/* --- 全体のBOX定義 ---------------------------------------- */
.box {
  position   : relative;
  width  : 100vw;
  height     : 65vh;
  margin     : auto;
  overflow   : hidden;
}

/* --- 背景の指定 ------------------------------------------- */
.box .bgImg {
  position   : absolute;
  top        : 0;
  left       : 0;
  bottom     : 0;
  right      : 0;
  opacity    : 0;
  animation  : bgAnime 20s infinite;   /* 4画像 × 各5s = 20s */
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.box .src1 {
  background-image : url(img/main-sp1.jpg);   /* 背景の画像を指定 */
  background-size: cover;
  height: 65vh;
}
.box .src2 {
  background-image : url(img/main-sp2.jpg);   /* 背景の画像を指定 */
  animation-delay  : 5s;
  background-size: cover;
  height: 65vh;
}
.box .src3 {
  background-image : url(img/main-sp3.jpg);   /* 背景の画像を指定 */
  animation-delay  : 10s;
  background-size: cover;
  height: 65vh;
}
.box .src4 {
  background-image : url(img/main-sp4.jpg);   /* 背景の画像を指定 */
  animation-delay  : 15s;
  background-size: cover;
  height: 65vh;
}

@keyframes bgAnime {
   0% { opacity: 0; }
   5% { opacity: 1; }
  25% { opacity: 1; }
  30% { opacity: 0; }
 100% { opacity: 0; }
}

/* --- 前面の文字定義（サンプルのため変更してください） ----- */
.box .boxString{
  position   : absolute;
  display    : inline-block;
  top        : 50%;                               /* 中央寄せ */
  left       : 50%;
  transform  : translate(-50%,-50%);
  z-index    : 1;
  width: 90%;
}

.box .boxString img{
  width: 100%;
}

}


/* メイン画像・スライドショーここまで----------------------------------------------------------------------------------------------------------*/

main .w-890{
  width: 890px;
  margin: 80px auto;
}

main .w-890 .text{
  width: 480px;
}

main .w-890 .btn-img{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.right {
  text-align: right;
  position: relative;
  top: 60px;
}

.right .img2{
  position: relative;
  top: -60px;
  right: 190px;
}

main .back-b{
  background-color: #eaf4fc;
  padding: 80px 0;
}

main .back-b .wrap{
  background-color: #fff;
  padding: 60px 5%;
  width: 890px;
  margin: 0 auto;
}

main .back-b .wrap h2{
  margin: 0 0 60px;
}

main .back-b .wrap .btn{
  margin: 60px auto 0;
}

@media screen and (max-width: 930px) {
  main .w-890 {
    width: 90%;
}

main .back-b .wrap{
  width: 90%;
}

}

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

  main .w-890 .text {
    width: 100%;
}

  main .w-890 .btn-img {
    display: block;
  }

  main .w-890 .btn-img .btn {
    margin: 60px auto 0;
  }

 .right img{
    width: 50%;
}

.right .img2 {
  position: relative;
  top: -3em;
  right: 0;
  text-align: left;
  }

}



/* 会社概要----------------------------------------------------------------------------------------------------------*/

#company .company-flex{
  display: flex;
  margin: 0 0 30px 0;
}

#company .company-flex .item{
  width: 400px;
  border-left: solid 5px #03ade8;
  padding-left: 10px;
  height: fit-content;
}

#company .company-flex .btn {
  margin: 30px 0 0 0;
}

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

  #company .company-flex li,
  #company .company-flex .item{
    width: 50%;
}

}

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

  #company .company-flex {
    display: block;
}

#company .company-flex li, #company .company-flex .item {
  width: 100%;
}

}

/* 沿革----------------------------------------------------------------------------------------------------------*/

#company .history-flex{
  display: flex;
  margin: 0 0 30px 0;

}

#company .history-flex li{
  width: 80%;
}

#company .history-flex .item{
  width: 20%;
  border-left: solid 5px #03ade8;
  padding-left: 10px;
  height: fit-content;
}

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

  #company .history-flex{
    display: block;
  
  }
  
  #company .history-flex li{
    width: 100%;
  }
  
  #company .history-flex .item{
    width: 100%;
  }

}




/* 工場設備紹介----------------------------------------------------------------------------------------------------------*/

main .back-b .wrap p{
  border-bottom: solid 1px #03ade8;
  margin-bottom: 10px;
}

main .back-b .wrap .img{
  text-align: center;
  margin: 30px 0 0 ;
}

main .back-b .wrap .img img{
 max-width: 100%;
}

#factory .back-b .wrap{
  margin: 60px auto;
}






/* 事業案内----------------------------------------------------------------------------------------------------------*/

 .contents .container .big-text {
  margin:20px 0 20px;
}

#SUPPORT .img{
  text-align: center;
  margin: 40px 0 60px;
  padding: 0  0 60px;
}

/* 左に数字と文章,右に写真のくくり */
.container {
  display: flex;
  justify-content: space-between;
  padding: 0 auto 60px ;
  margin: 30px auto 60px;}

.container .text-wrap{
  width: 300px;
}

.container .text-wrap .number-blue{
  font-size: 44px;
  font-weight: bold;
  color: #03ade8;
  margin: 0 0 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* 左に数字と文章,右に写真のひとくくりここまで*/


@media screen and (max-width: 1000px) {
  .container .text-wrap{
    width: 290px;
  }
}

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

  .img img{
    max-width: 100%;
  }

  .container {
    display: block;
  }

  .container .text-wrap {
    width: 100%;
    display: flex;
  }

  .container .text-wrap .number-blue {
    margin: 0 20px 20px 0;
}

  .container .img{
    text-align: center;
    margin-top: 30px;
  }

  .container .img img{
    max-width: 100%;
  }

}


/* 商品紹介----------------------------------------------------------------------------------------------------------*/

#product .back-b .wrap{
  margin: 60px auto;
}


/* 包材の知識----------------------------------------------------------------------------------------------------------*/

main .back-b .wrap .flex-in-wrap{
  display: flex;
  margin: 0 0 15px;
}

main .back-b .wrap .flex-in-wrap div{
  width: 90%
}

main .back-b .wrap .flex-in-wrap .label{
  width: 10%;
}

#knowledge .back-b .wrap{
  margin: 60px auto;
}

@media screen and (max-width: 930px) {
  main .back-b .wrap .flex-in-wrap{
    display: block;
  }

  main .back-b .wrap .flex-in-wrap div{
    width: 100%
  }
  
  main .back-b .wrap .flex-in-wrap .label{
    width: fit-content;
  }

}



/* アクセス----------------------------------------------------------------------------------------------------------*/


#access .access-flex{
  display: flex;
  margin: 0 0 30px 0;
}

#access .access-flex .item{
  width: 400px;
  border-left: solid 5px #03ade8;
  padding-left: 10px;
  height: fit-content;
}

#access .access-flex .btn {
  margin: 30px 0 0 0;
}

#access .map-flex{
  display: flex;
  justify-content: space-between;
  margin: 60px 0 30px 0;
}

#access .map-flex .map{
  width: 45%;
} 

#access .map-flex .map iframe{ 
  max-width: 100%;
}

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

  #access .map-flex {
    display: block;
  }

  #access .map-flex .map {
    width: 100%;
}

#access .map-flex .map iframe{ 
  max-width: 100%;
  width: 100%;
}

}


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

  #access .access-flex li,
  #access .access-flex .item{
    width: 50%;
}

}

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

  #access .access-flex {
    display: block;
}

#access .access-flex li, #access .access-flex .item {
  width: 100%;
}

}


/* お問い合わせ----------------------------------------------------------------------------------------------------------*/

#contact .w-890 .text {
  width: 100%;
  margin: 0 0 20px 0;
}

#contact .mark{
  color: #f29c03;
}

#contact .Form-Item {
  display: flex;
  margin: 30px 0;
}

#contact .Form-Item .Form-Item-Label{
  width: 50%;
}

#contact .Form-Item input,
#contact .Form-Item textarea{
  border: solid 0.5px #4f4f4f;
  padding: 10px;
  width: 50%;
}

#contact form .box {
  text-align: left;
  width: fit-content;
}

#contact form input[type=checkbox] {
	width:			1em;
	height:			1em;
	-moz-transform:		scale(1.4);
	-webkit-transform:	scale(1.4);
	transform:		scale(1.4);
}

#contact .btn {
  justify-content: center;
  margin: 0 auto;
}

#contact .checkbox-flex a{
  display: inline;
  color: #4f4f4f;
}


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

#contact .Form-Item {
  display: block;
}

#contact .checkbox-flex {
  display: flex;
}

#contact .Form-Item .Form-Item-Label {
  width: 100%;
}

#contact .Form-Item .checkbox {
  width: fit-content;
}


#contact .Form-Item input, #contact .Form-Item textarea {
  width: 100%;
}

}


@media screen and (max-width: 430px) {
  #contact .checkbox-flex {
    display: block;
}
}

/* プライバシーポリシー----------------------------------------------------------------------------------------------------------*/

#privacy .w-890  .medium{
  font-size: 1.2em;
  margin: 0 0 10px 0;
}