/*-------------------------------------------
共通
-------------------------------------------*/
@charset "utf-8";
html{
  font-size: 100%;
  width: 100vw;
}
body{
  color: #333;
  font-size: 1rem;/*16px*/
  width: 100%;
  margin: 0;
  font-family: jaf-domus, dnp-shuei-mgothic-std, sans-serif;
  line-height: 1.5rem;
}

ul {
  list-style: none;
}

section{
  margin-bottom: 100px;
}
h2,h3{
  line-height: 1.7rem;
}
a{
  text-decoration: none;
  color: #333;
}
/* サイト全体のコンテンツ幅を設定 */
.container{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.flex{
  display: flex;
}
.section-title{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 2.25rem;
  margin: 0 auto 70px;
}
.section-title-min{
  font-family:yu-mincho-pr6n,sans-serif;
  font-size: 1.125rem;
}




/*-------------------------------------------
header
-------------------------------------------*/

/*.mainvisual-img{
  width: 100%;
  object-fit: cover;
}*/
.decoration{
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  z-index: 1;
}
.header{
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;/* fixed+space-betweenのため必要 */
  height: 140px;
  position: fixed;
  z-index: 2;
  justify-content: space-between;
  padding: 70px 50px 0px;
  background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0));
}
h1{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

/* グローバルナビ */
.gloval-nav li{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
  font-size: 1.35rem;
  padding-left: 35px;
}

/* sp用ハンバーガーメニュー */
.openbtn{
  display: none;
}
/* sp用グローバルナビ */
.open-menu{
  display: none;
}

/* 交差ブロック */
.decoration-box1{
  width: 100%;
  padding: 60px 0 120px;
  margin-bottom: 130px;
  color: #FFF;
  font-size: 1.875rem;
  font-weight: bold;
  font-family: Georgia, 'Times New Roman', Times, serif;
  text-align: center;
  position: relative;/* 起点 */
  
}

/* 交差ブロック_青 */
.decoration-box1::before {
  content: '';
  position: absolute;/* 移動 */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #141c3e;
  transform: skewY(-2deg) translateY(-60px);/* -4deg */
  z-index: -1;
}
/* 交差ブロック_白 */
.decoration-box1::after {
  content: '';
  position: absolute;/* 移動 */
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #dce5ee;
  transform: skewY(2deg) translateY(-60px);
  z-index: -2;
}




/*-------------------------------------------
works
-------------------------------------------*/
#works{
  text-align: center;
}
.works-img{
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 50px;
}
.works-img img:hover{
  box-shadow:0px 0px 8px 5px #ededed;
  border-radius: 10px;
}
.works-img img{
  width: 260px;
}


/*-------------------------------------------
about
-------------------------------------------*/
#about{
  padding: 100px 0;
  background-color: #dce5ee;
  text-align: center;
}
.about-contents{
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
}
.about-contents-text{
  /*width: 480px;*/
  width: 48%;
  background-color: #FFF;
  text-align: left;
  padding: 50px;
  box-shadow:0px 0px 15px 5px #c6cdd5;
}
.about-contents-img{
  /*width: 480px;*/
  width: 48%;
  height: auto;
  box-shadow:0px 0px 15px 5px #c6cdd5;
}
.about-contents-img img{
  width: 100%;
  vertical-align:top;
}


/*-------------------------------------------
skills
-------------------------------------------*/
.skills-all{
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px 0;
  margin-bottom: 150px;
}
.skills-contents{
  width: 30%;
  text-align: center;
}
.skills-contents img{
  width: 100%;
  margin-bottom: 30px;
  border-radius: 5px;
}
.skills-name{
  font-family: yu-mincho-pr6n,sans-serif;
  font-size: 1.1rem;
  margin-bottom: 30px;
}
.skills-text{
  text-align: left;
}

/*------------------ lisence ---------------*/
.license{
  text-align: center;
  font-family: yu-mincho-pr6n,sans-serif;
  line-height: 2.3rem;
}
.lisence-title{
  font-size: 1.5rem;
  /*margin: 0 auto 10px;*/
  margin-bottom: 30px;
}
.license-list{
  width: 90%;
  max-width: 570px;
  font-size: 1.125rem;
  display:inline-block;
  text-align: left;
  padding: 30px 0;
  border-top: double 6px #141c3e;
  border-bottom: double 6px #141c3e;
}
.license-list ul{
  list-style: unset;
  padding: 0 50px;
}




/*-------------------------------------------
career
-------------------------------------------*/
#career{
  padding: 100px 0;
  background-color: #dce5ee;
  margin-bottom: 0;
}

dl{
  margin: 0 auto;
}
dt{
  padding: 15px 30px 15px 0;
  font-family: yu-gothic-pr6n, sans-serif;
}
dd{
  position: relative;
  padding: 15px 0 15px 30px;
  border-left: solid 1px #141c3e;
}
dd::before{
  content:'';
  position: absolute;
  top:20px;
  left: -5px;
  width:10px;
  height: 10px;
  background:#141c3e;
  border-radius: 50%;
}




/*-------------------------------------------
footer
-------------------------------------------*/
#footer{
  height: 150px;
  background-color: #141c3e;
  text-align: center;
}
.copyright{
  line-height: 150px;
  color: #FFF;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: bold;
}









/*-------------------------------------------
Tablet
-------------------------------------------*/
@media screen and (min-width:600px) and ( max-width:899px) {

  /*-------------------------------------------
  共通
  -------------------------------------------*/

  
  /*-------------------------------------------
  header
  -------------------------------------------*/
  
  
  
  /*-------------------------------------------
  works
  -------------------------------------------*/

  .works-img{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 0;
  }
  .works-img a{
    width: 30%;
  }
  .works-img img{
    width: 100%;
  }
  
  
  /*-------------------------------------------
  about
  -------------------------------------------*/
  .about-contents-text{
    width: 70%;
    background-color: #FFF;
    font-family: fot-tsukubrdgothic-std, sans-serif;
    text-align: left;
    padding: 50px;
    margin: 0 auto 50px;
  }
  .about-contents-img{
    width: 50%;
    height: auto;
    margin: 0 auto;
  }
  
  }








/*-------------------------------------------
SP
-------------------------------------------*/
@media screen and (max-width: 599px) {

  /*-------------------------------------------
  共通
  -------------------------------------------*/
  body{
    color: #333;
    font-size: 0.8rem;/*16px*/
    font-family: jaf-domus, dnp-shuei-mgothic-std, sans-serif;
    width: 100%;
    margin: 0;
    line-height: 1.5rem;
  }
  

  /*-------------------------------------------
  header
  -------------------------------------------*/

  .mainvisual-img_sp{
    width: 100vw;
  }
  .decoration{
    display: none;
  }
  .header{
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;/* fixed+space-betweenのため必要 */
    height: 140px;
    position: fixed;
    z-index: 2;
    justify-content: space-between;
    padding: 25px 50px 0px;
    background: linear-gradient(rgba(255,255,255,1),rgba(255,255,255,0));
  }
  h1{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 1.5rem;
    text-align: center;
  }
  .gloval-nav{
    display: none;
  }
  .decoration-box1{
    width: 100%;
    padding: 30px 0 60px;
    margin-bottom: 80px;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    position: relative;/* 起点 */
    
  }
  
  .decoration-box1::before {
    content: '';
    position: absolute;/* 移動 */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #141c3e;
    transform: skewY(-4deg) translateY(-30px);
    z-index: -1;
  }
  .decoration-box1::after {
    content: '';
    position: absolute;/* 移動 */
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #dce5ee;
    transform: skewY(4deg) translateY(-30px);
    z-index: -2;
  }

  /* ハンバーガーメニュー */
.openbtn{
  display: block;
  /*position: relative;*/
  position: fixed;
  top:10px;
  right: 10px;
  cursor: pointer;
	cursor: pointer;
  width: 50px;
  height:50px;
  z-index: 4;/* 最前面に */
}
.openbtn span{
  display: inline-block;
  transition: all .4s;/*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: #525252;
  width: 45%;
}
.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
    background: #fff;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
    background: #fff;
}

/* sp用グローバルナビ */
.open-menu{
  display: block;
  position: fixed;
  z-index: 3;
  width: 100vw;
  height: 100vh;
  background-color: rgba(15,55,110,0.95);
  font-size: 1.5rem;
  transition: all 0.6s;
  text-align: left;
  left: 100%;
}
.open-menu ul{
  position: absolute;
  top:30%;
  left:40%;
  transform: translate(-50%,-50%);
}
.open-menu li{
  padding: 10px 0;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.open-menu a{
  color: #fff;
}

/*openクラスが付与されてmenuが開く*/
.open-menu.open{
  left: 0;
}


  /*-------------------------------------------
  works
  -------------------------------------------*/

  .works-img{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px 0;
  }
  .works-img a{
    width: 100%;
  }
  .works-img img{
    width: 100%;
  }


  /*-------------------------------------------
  about
  -------------------------------------------*/

  .about-contents-text{
    width: 100%;
    background-color: #FFF;
    text-align: left;
    padding: 50px;
    margin: 0 auto 50px;
  }
  .about-contents-img{
    width: 80%;
    height: auto;
    margin: 0 auto;
  }



  /*-------------------------------------------
  skills
  -------------------------------------------*/

  .skills-all{
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 70px 0;
    margin-bottom: 100px;
  }
  .skills-contents{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .skills-contents img{
    margin-bottom: 25px;
  }
  .skills-name{
    font-family: yu-mincho-pr6n,sans-serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  .skills-text{
    text-align: left;
  }

  /*------------------ lisence ---------------*/
.license{
  text-align: center;
  font-family: yu-mincho-pr6n,sans-serif;
  line-height: 1.1rem;
}
.lisence-title{
  font-size: 1.2rem;
  /*margin: 0 auto 10px;*/
  margin-bottom: 30px;
}
.license-list{
  width: 90%;
  max-width: 570px;
  font-size: 1.125rem;
  display:inline-block;
  text-align: left;
  padding: 30px 0;
  border-top: double 6px #141c3e;
  border-bottom: double 6px #141c3e;
}
.license-list ul{
  list-style: unset;
  padding: 0 7%;
}
.license-list li{
  margin-bottom: 12px;
}

}