@charset "utf-8";
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: black;
  color: #fff;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
nav img{
    width: 50px;
}
nav{
    height: 100px;
    display: flex;
    align-items: center; 
}
.top-text{
  display: flex; 
  flex-direction: column;
  justify-content: center; 
  align-items: center;    
}
.box-h1{
  width: 30vw;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  text-align:center ;
}
h1{
    font-size: 30px;
}
a{
  text-decoration: none;
  color: #fff;
  font-size: 1.2rem;
}

.pc-menu{
  display: none;
}

/* -------------------- モバイルメニュー -------------------- */
.hamburger-overlay {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1000;
  height: 48px;
}
.nav-overlay__list {
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; 
  align-items: center;  
  justify-content: center; 
  height: 100%;           
}
.nav-overlay__item {
    margin: 20px 0; 
    text-decoration:none ;
    font-weight: bold;
}
.nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(96, 95, 95, 0.997);
    visibility: hidden;
    opacity: 0;
    transition: all .6s;
    z-index: 900;
    pointer-events: none;
}

.nav-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    list-style: none;
    text-decoration: none;
    background-color: #EDFF00;
    transition: all .6s;
}
.nav-overlay__content {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center;      
  height: 100%;     
  pointer-events: auto;    
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
    opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
}
/* -----------  ここまで ------------ */
/* スライダー */
.hero-container{
  margin-bottom: 7vh;
}
.slick-slide {
  padding-top: 50px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  transform: scale( .75 );
}
.is--active {
  transform: scale( 1 );
}
.slick-slide img{
  width: 230px;
}
.slide-wrapper {
    position: relative;
    display: inline-block;
} 
.img-border{
  outline: 1px solid #fff;
}
.slide-wrapper p{
  margin-top: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: bold;
}
.sen img{ 
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
}
.slide-wrapper img {
 	position:relative;
	top:0;
}

.slide-wrapper:hover img {
  top:-15px;
  transition:0.3s;
}

.genre-label {
    position: absolute;
    top: 0;
    left: 0cqw;
    background: rgba(0, 0, 0, 0.268);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 20px;
    font-weight: bold;
}

/* 詳細箇所 記事*/

.dt-p{
  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
}
.detail-container {
    background-color: #fff;
    width: 85vw; 
    display: block;
    margin: 50px auto; 
    border-radius: 20px;
}
.fadeIn {
  transform: translate3d(0, 50px, 0);
  transition: 1s;
  opacity: 0;
}
.fadeIn.animated {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.dt-img {
    text-align: center;
    padding-top: 20px;
}
.img-border2{
  outline: 1px solid #000000;
}
.dt-img img{
    height: auto;
    width: 300px;
    object-fit: cover;

}
.dt-tx {
    color: #000;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
     margin: 0 auto; 
    padding-bottom: 20px;
}
.dt-tt {
    border-bottom: solid 1px #000;
    margin-top: 10px;
    margin-bottom: 5px;
    padding-bottom: 5px;
     width: 100%;
    font-size: 16px;
}
.dt-tt span {
    font-size: 12px;
    color: #878787;
    margin-right: 20px;
}
.dt-di {
    border-bottom: solid 1px #000;
    padding-bottom: 5px;
     width: 100%;
     font-size: 16px;
}
.dt-di span {
    font-size: 12px;
    color: #878787;
    margin-right: 20px;
}
.dt-tag {
  color:black ;
  font-size: 12px;
  margin-top: 5px;
}
.dt-st {
    margin-top: 20px;
    font-size: 12px;
}
.dt-st span{
  font-size: 12px;
  color: #4048c1;
  display: block;
  font-weight: bold;
}
.dt-po {
  margin-top: 20px;
  font-size: 12px;
}
.dt-po span{
  font-weight:bold;
  font-size: 12px;
  color: #f4b300;
  display: block;
}
/* ----------  ここまで --------------- */
/* -----------  TOP　LOGO ------------ */
#page_top{
  width: 90px;
  height: 90px;
  position: fixed;
  right: 15px;
  bottom: 40px;
  background: #EDFF00;
  border-radius: 50%;
  transition: transform 0.3s ease; 
}
#page_top:hover {
  background-color: #9f1b0f;
}

#page_top a:hover::before {
  color: #fff; 
}
#page_top a:hover::after {
  color: #fff; 
}

#page_top a{
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #000;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 13px;
  font-weight: bold;
  color: #000;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.detail-bg {
  background-image: url("../img/section-bac.jpg"); 
  background-size: contain; 
  background-position: center bottom;
   background-attachment: scroll;   background-repeat: no-repeat; 
  padding: 10px 0;
}
/* フッター */

footer {
  border-top: 2px solid #fff; 
  padding-top: 20px;         
  margin-top: 100px;          
  display: flex;
  flex-direction: column;
  justify-content: center;  
  align-items: center;
  min-height: 500px;      
  text-align: center;
  position: relative;
  padding: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 80px;
  margin-bottom: auto;      
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-nav > a {
    margin-top: 40px; /* 上の余白を調整 */
}
/* 768px 以上（タブレット・PC）用 */
@media (min-width: 768px) {

/* --------------- メニュー--------------- */
.hamburger-overlay {
    display: none; /* ハンバーガー非表示 */
}
.nav-overlay {
    display: none; /* スライドオーバーレイ非表示 */
}
.pc-menu {
  display: flex;  /* 横並びに表示 */
  gap: 20px;      /* メニュー間の隙間 */
  list-style: none;
  padding: 0;
  margin: 0;
}

.pc-menu li {
  margin: 0 20px;
}
nav {
  height: 200px;
  flex-direction: row; 
  align-items: center;
}
nav img{
    width: 90px;
}
  nav ul {
    display: flex; 
  }

  nav li {
    margin: 0 50px; 
    list-style: none;
  }

  a {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
}
h1{
    font-size: 60px;
    padding: 0 20px;
}
.hero-container{
  margin-bottom: 13vh;
}
.slick-slide img{
  width: 380px;
}
.genre-label{
  font-size: 30px;
}
.slide-wrapper p{
  margin-top: 1rem;
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
}
.sen img{
  display: block;
  max-width: 1900px;
  width: 100%;
}

/* ----------－記事---------- */
.dt-p{
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  color: #000;
  font-weight: bold;
  font-size: 1.4rem;
}
.detail-container {
    width: 50vw;
    height: auto;
    border-radius: 30px;
}
.dt-img {
    padding-top: 40px;
}
.dt-img img{
    width:400px;
    height: auto;
}
.dt-tx {
    color: #000;
    padding-bottom: 40px;
}
.dt-tt {
    border-bottom: solid 2px #000;
    margin-top: 20px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font-size: 24px;
}
.dt-tt span {
    font-size: 17px;
    margin-right: 30px;
}
.dt-di {
    border-bottom: solid 2px #000;
    padding-bottom: 10px;
     font-size: 24px;
}
.dt-di span {
    font-size: 17px;
    margin-right: 30px;
}
.dt-tag {
  color: #000;
  font-size: 17px;
  margin-top: 10px;
}
.dt-st {
    font-size: 17px;
}
.dt-st span{
  font-weight:bold;
  font-size: 1.2rem;
  color: #4048c1;
}
.dt-po {
    margin-top: 30px;
    font-size: 17px;
}
.dt-po span{
  font-size: 1.2rem;
  color: #f4b300;
  font-weight:bold;
}

#page_top{
  width: 120px;
  height: 120px;
  position: fixed;
  right: 20px;
  bottom: 80px;
  background: #EDFF00;
  border-radius: 50%;
  z-index: 999;
  transition: transform 0.3s ease; 
}
#page_top:hover {
  background-color: #9f1b0f;
}

#page_top a:hover::before {
  color: #fff; 
}
#page_top a:hover::after {
  color: #fff; 
}
#page_top a{
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  text-decoration: none;
}
#page_top a::before{
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #000;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after{
  content: 'PAGE TOP';
  font-size: 18px;
  font-weight: bold;
  color: #000;
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.detail-bg {
  background-image: url("../img/section-bac.jpg"); 
  background-size: cover; 
  background-position: center bottom;
  background-attachment: fixed;  
  padding: 50px 0;
}
/* フッター */
footer {
  margin-top: 250px;
  display: flex;
  flex-direction: column;      
  justify-content: flex-end;  
  align-items: center;      
  min-height: 400px;          
  position: relative;
  padding: 20px;
  }

.footer-nav {
  display: flex;
  flex-direction: row;        
  justify-content: flex-end; 
  gap: 20px;
  margin-bottom: 20px;        
  width: 100%;          
}

.footer-nav ul {
  flex-direction: row;
  gap: 20px;
  }

footer p {
  position: static;          
  transform: none;
  margin-top: 10px;           
  font-size: 14px;
}
}
