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

@font-face{
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, '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 Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, YakuHanMP, '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;
}



/*------------------ヘッダー------------------*/
.logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 40px 25px;
}
/*------------------ヘッダー固定------------------*/
.header_area{
  position: fixed;
  top: 0;
  padding: 0;
  width: 100%;
  z-index: 1000;
  background: rgb(255, 255, 255, 0.9);
}



/*------------------ナビゲーション------------------*/
.nav ul{
  display: flex;
}

.nav li{
  width: 25%; /*--1つの幅--*/
  text-align: center;
}

.nav li a{
  display: block;
  padding: 18px 0;
  background: #e60069;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.6s;     
}
.nav li a:hover{
  color: #e60069;  
  background: #faebd7;
}

.nav ul li{
  list-style: none;
  border-right: 1px solid #fff;
}
.nav ul li:last-child{
  border-right: none;
}

.mgl10{
  position: static;
  margin-left: 10px;
  border: none;
}



/*------------------パンくずリスト部分------------------*/
.bread_area{
  background: #f9f2f4;
  padding: 15px 0 15px 40px;
}

.breadcrumb{
  list-style: none;
}
.breadcrumb li{
  display: inline; /*横に並ぶように*/
  list-style: none;
  font-size: 1.6rem;
}
.breadcrumb li:after{ /* >を表示*/
  content: '>';
  padding: 0 10px;
  color: #555;
}
.breadcrumb li:last-child:after{
  content: '';
}
.breadcrumb li a{
  text-decoration: none;
  color: #e60069;
}
.breadcrumb li a:hover{
  border-bottom: dashed 1px #e60069;
}



/*------------------順番に現れる------------------*/
.flex_delayScroll>li{
  opacity: 0;
}

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.3s;
  animation-fill-mode:forwards;
  opacity: 0;
}

@keyframes fadeUpAnime{
  from {
  opacity: 0;
	transform: translateY(100px);
  }

  to {
  opacity: 1;
	transform: translateY(0);
  }
}



/*------------------バックナンバー部分------------------*/
.number_area{
  padding: 280px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.number_area>li{
  width: 220px;
  margin-bottom: 120px;
}
/*------------------最後の行を左寄せ------------------*/
.number_area:after{
  content: "";
  width: 220px;
  margin-bottom: 120px;
}
.number_area:before{
  content: "";
  width: 220px;
  margin-bottom: 120px;
  order: 1;
}



/*------------------vol.00を見る------------------*/
.number_title{
  margin-top: 14px;
  padding: 10px 0;
  font-size: 1.8rem;
  font-weight: 400;
  color: #000;
  text-align: center;
  border-radius: 20px;
  border: solid 1.3px #000;
  transition: 0.5s;
}
.number_title:hover{
  color: #fff;
  background: #c70044;
  border: solid 1.3px #c70044;
}



/*------------------ヌルっと拡大------------------*/
.number_image{
  overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 220px;	
	height: 310px;	
  background: #000;
}
.number_image>img {
	display: block;
	transition-duration: 0.5s;
}
.number_image>img:hover {
	transform: scale(1.2);	
	transition-duration: 0.5s;	
  opacity: 0.7;	
}



/*------------------ページトップボタン------------------*/
.PageTopBtn{
  font-size: 1.4rem;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.PageTopBtn>a{
  display: block;
  color: #ff7f00;
  background: #fff;
  border: solid 2px #ff7f00;
  width: 90px;
  height: 50px;
  line-height: 3.5;
  text-align: center;
  border-radius: 10px;
  transition: 0.6s;
}
.PageTopBtn>a:hover{
  color: #fff;
  background: #e60039;
  border: solid 2px #e60039;
}



/*------------------フッター------------------*/
.footer-area{
  background-color: #f9f2f4;
  padding: 30px 0;
}

.footer_logo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 40px 60px;
}

.copyright{
  font-size: 1rem; 
}





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





/*------------------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);
  }
  

	
  /*------------------ふわっと表示------------------*/
  .fadein{
    opacity : 0;
    transform: translateY(80px);
    transition: all 1s;
  }
  
  
  
  /*------------------ヘッダー部分------------------*/
  .navi_area_sp{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px;
  }

  .logo_sp{
    width: 70vw;
  }



  /*------------------ハンバーガーメニュー------------------*/
  .navToggle{
    margin-top: 15px;
    display: inline-block;
    width: 36px;
    height: 28px;
    vertical-align: middle;
    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 ul{
    display: block;
  }  
  
  nav{
    width: 250px; /*---メニュー幅---*/
    height: 100%;
    padding-top: 50px;
    background-color: rgb(0, 0, 51, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translate(250px);
    transition: all .5s;
  }

  .nav li{
    width: auto;
  }
  .nav li a{
    padding: 40px 0;
    background: none;
    font-size: 1.9rem;
    line-height: 1.5;
  }
  .nav ul li{
    border-right: none;
  }

  .mgl10{
    margin-left: 0;
  }
  
 
  
  /*------------------パンくずリスト部分------------------*/
  .bread_area{
    padding: 15px 20px 5px 20px;
    -webkit-overflow-scrolling: touch; /* スマホでスクロールを滑らかにする */
    overflow-x: auto; /* [必須] テキストが多い時はX軸にスクロールバーが出現するように */
  }

  /*------------------【スクロールバー】------------------*/
  .bread_area::-webkit-scrollbar {
    height: 5px;
  }
  .bread_area::-webkit-scrollbar-track {
    border-radius: 5px;
    background: #eee;
  }
  .bread_area::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: #999;
  }
  .bread_area ol{
    display: table; /* [必須]  */
  } 
  
  .breadcrumb li{
    font-size: 1.5rem;
    padding-bottom: 11px;
    display: table-cell; /* [必須]  */
    white-space: nowrap; /* [必須] テキストを改行させないように */
  }

  .breadcrumb li:after{ /* >を表示*/
    padding: 0 5px;
  }
  
  
  
  /*------------------バックナンバー部分------------------*/
  .number_area{
    padding: 170px 0 20px;
  }
  .number_area>li{
    width: 46%;
    margin-bottom: 40px;
  }
  /*------------------最後の行を左寄せ------------------*/
  .number_area:after{
    display: none;
  }
  .number_area:before{
    display: none;
  }
  

  
  /*------------------vol.00を見る------------------*/
  .number_title{
    display: block;
    padding: 12px 0;
    font-size: 1.7rem;
    color: #fff;
    background-color: #880025;
    border: none;
  }
 
    
  
  /*------------------ヌルっと拡大------------------*/
  .number_image{
    width: 100%;
    height: 100%;
    background: none;
  }
  .number_image>img {
    transition-duration: none;
  }
  
  
  
  /*------------------ページトップ------------------*/
  .PageTopBtn{
    font-size: 1.4rem;
    position: fixed;
    bottom: 15px;
    right: 15px; 
  }
  
  
  
  /*------------------フッター------------------*/ 
  .footer-area{
    padding: 20px 0 20px 0;
  }

  .footer_logo{
    display: block;
    margin: 10px 20px 10px;
  }
  
  .w_logo_bot{
    margin: 0 auto;
  }
  
  .copyright{
    font-size: 1.2rem; 
    line-height: normal;
    padding: 10px 0 0;
  }

  
  
 }






