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

@font-face{
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-style:normal;
}

html{
  font-size: 62.5%; /* 62.5％ X 16px=10px */
}

body{
  color: #4d5156;
  font-family: 'YakuHanJP_Noto', 'Noto Sans JP', 'Noto Serif JP', sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
}

a{
  color: #4d5156;
}

img{
  max-width: 100%;
  height: auto;
}

.inner{
  max-width: 1040px;
  margin: 0 auto;
}

.text-center{
  text-align: center;
}  
  
.sp_img{
  display: none;
}

.pc_br{
  display: none;
}

.navToggle{
  display: none;
}



/*------------------ふわっと表示------------------*/
.fadein{
  opacity : 0;
  transform: translateY(80px);
  transition: all 1s;
}



/*------------------ヘッダー------------------*/
.head_area{
  display: flex;
  justify-content: space-between; 
  align-items: flex-end;
  padding: 20px 40px 30px;
}

.navi_area{
  display: flex;
  align-items: flex-end;
}

.head_logo{
  width: 320px;
}
/*------------------ナビメニュー------------------*/
.navi-item{
  display: flex;
}

.navi-item>li{
  margin-right: 30px;
} 
.navi-item>li:last-child{
  margin-right: 0;
} 

.reading{
  font-size: 1.1rem;
}

.navi-item>li>a{
  font-size: 1.7rem;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  transition: 0.3s;
  display: inline-block;
  position: relative;
} 

.small{
  text-transform: lowercase;   
}
/*------------------マウスが乗った時の色------------------*/
.navi-item>li>a:after{ /*--アンダーライン--*/
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  background: #9d1d2b;
  position: absolute;
  bottom: -6px;
  transform: scale(0, 1);
  transition: 0.3s;
}
.navi-item>li>a:hover{
  color: #9d1d2b;
}
.navi-item>li>a:hover:after{
  transform: scale(1, 1);
}
/*------------------カレント------------------*/
.navi-item>li.current>a{
  color: #01aad9;
  pointer-events: none;
}
.navi-item>li.current>a:after{
  height: 2px;
  width: 100%;
  background: #01aad9;
  position: absolute;
  bottom: -6px;
  transform: scale(1, 1);
}



/*------------------メイン画像------------------*/
.main_img{
  width: 100%;
  height: 0;
  padding-top: calc(250 / 1200 * 100%); /* calc(画像高さ÷画像横幅×100%) */
  background: url("../work/work_img/work_img.jpg") center / cover no-repeat;
  margin-bottom: 110px;
}



/*------------------コンテンツ------------------*/
.work_area{
  margin-bottom: 200px;
}

.content{
  padding-bottom: 200px;  
}



/*------------------ページ内リンク------------------*/
#web{
  position: relative;  
  z-index: 20;        
  margin-top: -400px;
  padding-top: 400px;
}

#magazine{ 
  position: relative;  
  z-index: 10;         
  margin-top: -430px;
  padding-top: 430px;
}

#flyer{ 
  margin-top: -400px;
  padding-top: 400px;
    z-index: 0;
}



/*------------------テキスト部分------------------*/
h2{
  font-size: 4.4rem;
  font-weight: 500;
  text-transform: uppercase;
  padding-bottom: 16px;
  text-align: center;
}

h2>span{
  margin-left: 16px;
  font-weight: 300;  
}

.japanese{
  font-size: 2rem;
  font-weight: 400;  
}

h3{
  font-size: 3.2rem;
  font-weight: 300;
  text-transform: uppercase;
  padding-bottom: 20px;
  text-align: center;  
}

h3>span{
  margin-left: 18px;
  font-weight: 300;  
}

.copy>p{
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.7;
  text-align: center;  
}



/*------------------ピクト------------------*/
.pict_area{
  display: flex;
  justify-content: center; 
  padding-top: 40px;
}

.pict_area>li{
  margin-right: 100px;  
}
.pict_area>li:last-child{
  margin-right: 0;  
}



/*------------------photo_box------------------*/
.photo_box_area{
  display: flex;
  justify-content: space-between; 
  flex-wrap: wrap; 
}
.photo_box_area>li{
  width: 330px; 
  margin-bottom: 30px;
}
.photo_box_area:after{
  content: "";  
  width: 330px; 
}

.circumscribed_hidden{
  width: 100%;
  position: relative; /*--親--*/
  overflow: hidden;
}
 
.mask{
  position: absolute; /*--子--*/
  width: 100%;
  height: auto;
  padding-top: 82%; /* 画像の高さ調整をした場合は、こちらも同じ値に変更 */
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.7);
}
 
.mask_text>p{
  position: absolute; /*--子--*/
  width: 100%;
  top: 100%;
  left: 0;
  font-size: 2rem;
  line-height: 1.5;
  color: #fff;
  text-align: center;
  transition: all 0.5s ease;
}

.mg10{
  margin: 0 8px;
}

.mgl5{
  margin-left: 8px;
}

.mask_text_low{
  font-size: 1.4rem;
} 

.mouse_over_mask{
  width: 100%;
  position: absolute; /*--子--*/
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.5s ease;
}
 
.photo_box:hover .mouse_over_mask{
  opacity: 1;
}
 
.photo_box:hover .mask_text>p{
  top: 50%;
  transform: translateY(-50%);
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: capitalize; 
  position: fixed;
  bottom: 30px;
  right: 30px;
}

.PageTopBtn>a{
  display: block; 
  color: #4d5156;
  background: #fff;
  border: solid 1px #4d5156;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: 0.6s;
}
.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039;
  border: solid 1px #e60039;
}



/*------------------footer------------------*/
.footer_area{
  margin-top: 200px;
  padding: 50px 0 20px;
  background: #000033;
}

.footer_title{
  font-size: 2.4rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 12px;
}
.footer_title>span{
  margin-left: 10px;
  font-weight: 300;   
}

.company_info{
  padding: 40px 0 6px; 
}
.company_info>li{
  font-size: 1.4rem;
  font-weight: 300;
  color: #fff;
  padding-bottom: 8px; 
}
.company_info>li:last-child{
  padding-bottom: 0px; 
}
.company_info>li:nth-child(1){
  font-size: 1.6rem;
}
.company_info>li:nth-child(2){
  font-size: 2.4rem;
  font-weight: 400;   
}
.company_info>li:nth-child(4){
  padding-top: 12px;   
}

.mglr10{
  margin: 0 18px; 
}

.tel{
  font-size: 1.5rem;
  margin-right: 4px;
}

.company_info>li>a{
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  padding-top: 10px;
}

.footer_nav{
  display: flex;
  justify-content: center;
}
.footer_nav>li>a{
  color: #fff;
}
.footer_nav>li:nth-child(1){
  padding-right: 18px;
}

.small{
  text-transform: lowercase;  
}

.copyright{
  padding-top: 10px;  
  font-size: 1.2rem;
  color: #fff;
}





/*------------------タブレット版------------------*/
@media screen and (min-width: 641px) and (max-width: 960px){
  html{
    min-width: 1500px;
  }  
 }





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

  .inner{
    padding: 0 20px;
  }
  
  .pc_img{
    display: none;
  }

  .sp_img{
    display: block;
  }
 
  .pc_br{
    display: block;
  }
  
  .sp_br{
    display: none;
  }
  
  
  
  /*------------------黒い半透過のレイヤー------------------*/
  .overlay{
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    opacity: 0;
    transition: opacity .5s;
  }
  .overlay.open{
    position: fixed;
    width: 100%;
    height: 120%;
    opacity: 1;
  }



  /*------------------メニュー幅分スライド------------------*/
  main.open{
    transform: translateX(-250px);
  }
  

	
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 20px;
  }
  
  .head_area{
    display: block;
    padding: 0 0 0;
  }  
  
  .logo_sp{
    width: 70vw;
  }



  /*------------------ハンバーガーメニュー------------------*/
  .navToggle{
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    top: 0;
    right: 0;
    z-index: 100;
  }

  .navToggle>span{
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: #000033;
    transition: all .5s;
  }

  .navToggle.active>span{
    background-color: #fff;
  }

  .navToggle>span:nth-of-type(1){
    top: 0;
  }

  .navToggle.active>span:nth-of-type(1){
    transform: translateY(12px) rotate(-45deg);
  }

  .navToggle>span:nth-of-type(2){
    top: 12px;
  }

  .navToggle.active>span:nth-of-type(2){
    opacity: 0;
  }

  .navToggle>span:nth-of-type(3){
    bottom: 0;
  }

  .navToggle.active>span:nth-of-type(3){
    transform: translateY(-12px) rotate(45deg);
  }



  /*------------------右から左へ------------------*/
  nav.open {
    transform: translateZ(0);
  }
  /*------------------ナビメニュー------------------*/ 
  nav{
    width: 250px; 
    height: 100%;
    padding-top: 20px;
    background-color: rgb(0, 0, 51, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(250px);
    transition: all .5s;
  }

  .navi-item{
    display: block; 
    overflow-y: scroll;
    overflow-scrolling: touch;
    max-height: 100vh; 
  }  

  .navi-item>li{
    margin-right: 0;
    font-size: 2.6rem;
    font-weight: 400;
    text-align: center;
    padding: 40px 0;
  }

  .navi-item>li:last-child{
    margin-bottom: 100px;
  } 
  
  .navi-item>li>a{
    color: #fff;
  } 
  
  
  
  /*------------------メイン画像------------------*/
  .main_img{
    padding-top: calc(300 / 768 * 100%); /* calc(画像高さ÷画像横幅×100%) */
    background: url("../work/work_img/work_img_sp.jpg") center / cover no-repeat;
    margin-bottom: 40px;
  }



  /*------------------コンテンツ------------------*/
  .work_area{
    margin-bottom: 60px;
  }

  .content{
    padding-bottom: 60px;  
  }  
  
  

  /*------------------ページ内リンク------------------*/
  #web{
    margin-top: -70px;
    padding-top: 70px;   
  }
  #magazine{ 
    margin-top: -110px;
    padding-top: 110px;   
  }
  #flyer{ 
    margin-top: -110px;
    padding-top: 110px;   
  }
  
  
  
  /*------------------テキスト部分------------------*/
  h2{
    font-size: 4rem;
    padding-bottom: 20px;
  }

  h2>span{
    margin-left: 0;
  }

  .japanese{
    font-size: 1.8rem;
  }

  h3{
    font-size: 3rem;
    padding-bottom: 10px;
  }

  h3>span{
    margin-left: 15px;
  }

  .copy>p{
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left; 
    text-align: justify;
    text-justify: inter-ideograph; /*--edge--*/  
  } 
  
  
  
  /*------------------ピクト------------------*/
  .pict_area{
    display: block; 
    padding-top: 20px
  }

  .pict_area>li{
    margin-right: 0;
    margin-bottom: 20px;
    padding: 15px;
    background: #f3f0e7;
    border-radius: 20px; 
  }
  .pict_area>li:last-child{
    margin-right: 0;
    margin-bottom: 0;
  }
  
  
  
  /*------------------photo_box------------------*/
  .photo_box_area{
    display: block; 
  }
  .photo_box_area>li{
    width: auto;
  }  
  
    
  
  /*------------------sp用------------------*/
  .sp_photo_box{
    position: relative; /*--親--*/ 
  }

  .bg_dark{
    background-color: #000000;
  }  

  .bg_dark>img{
    display: block;
    opacity: 0.4;
  } 

  .sp_mask_text{
    position: absolute; /*--子--*/
    bottom: 10px;
    left: 10px;
  }

  .sp_mask_text>p{
    font-size: 1.8rem;
    line-height: 1.4;
    color: #fff;
  }

  
  
  /*------------------ページトップ------------------*/
  .PageTopBtn{    
    font-size: 1.4rem;
    position: fixed;
    z-index: 30; 
    bottom: 0;
    right: 0;
  }  

  .PageTopBtn>a{
    color: #fff;
    background: #e60039;
    border: solid 1px #e60039;
  }   
  

  
  /*------------------footer------------------*/
  .footer_area{
    margin-top: 70px;
  }  
  
  .footer_title{
    font-size: 3rem;
    padding-bottom: 14px;
  }

  .icon>a>img{
    width: 65px;
  }

  .company_info{
    padding: 50px 0 6px; 
  }  
  
  .company_info>li{
    line-height: 1.4;
    padding-bottom: 3px; 
  }

  .mglr10{
    margin: 0 0; 
  }

  .company_info>li>a{
    padding-top: 8px;
  }  
  
 }

















