@charset "UTF-8";
/* *{
  outline: 2px red solid;
}  */
/* レスポンシブ対応---------------------------------------*/
@media (max-width: 768px) {
  .main-bar {
    height: 60px; /* 黒帯の高さを60pxに変更 */
  }

  .slash {
    height: 60px; /* 斜線の高さを60pxに変更 */
  }

  .slash.thick {
    width: 20px !important; /* 斜線の太さを20pxに変更 */
  }

  .slash.spaced-middle {
    margin-left: 20px; /* 斜線の間隔を広げる */
    margin-right: 3px; /* 斜線の間隔を調整 */
  }

  .slash.spaced-last {
    margin-left: 20vw; /* 斜線3本目の位置を画面幅に対して20%に設定（大きさの変更ではなく位置調整） */
  }
}

@media (max-width: 600px) {
  .slash.spaced-last {
    margin-left: 20px; /* スマホなど小さい画面での3本目の位置を20pxに設定 */
  }
}

@media (max-width: 480px) {
  .slash.spaced-last {
    margin-left: 10px; /* 更に小さな画面では3本目の位置を10pxに設定 */
  }
}
/* レスポンシブ対応ここまで---------------------------------------*/



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



body {
  font-family: 'Noto Serif JP', serif;
}

html {
  scroll-behavior: smooth;
}

.custom-header {
  width: 98%; /* ヘッダーの幅を100%に設定 */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: transparent;
  /* padding: 0; */
  display: flex;
  justify-content: center; /* ヘッダーのコンテンツを中央揃え */
}

.header-inner {
  display: flex;
  align-items: center;
  width: 100%;

}

.main-bar {
  flex: 1;
  height: 80px; /* 黒帯の高さを80pxに設定 */
  background-color: #1a1a1a;
  clip-path: polygon(0 0, 100% 0, calc(100% - 29px) 100%, 0% 100%); /* 右下のカットを調整 */
  display: flex;
  align-items: center;
  padding: 0 30px; /* 黒帯内の余白 */
  width: 100%; /* 幅を100%に設定 */
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  /* transition: opacity 0.3s; */
}

.nav-links a:hover {
  opacity: 0.7;
}

.slashes {
  display: flex;
  flex-shrink: 0;
  margin-left: 10px;
}

.slash {
  height: 80px; /* 斜線の高さを80pxに設定 */
  background-color: #1a1a1a;
  transform: skewX(-20deg); /* 斜線の角度（-20度）を設定 */
}

.slash.thick {
  width: 30px !important; /* 太い斜線の幅を30pxに設定 */
}

.slash.spaced-middle {
  width: 10px; /* 普通の斜線の幅を10pxに設定 */
  margin-left: 30px; /* 斜線1本目との間隔を30pxに設定 */
  margin-right: 5px; /* 次の斜線との間隔を5pxに設定 */
}

.slash.spaced-last {
  width: 10px; /* 3本目の斜線の幅を10pxに設定 */
  margin-left: 80px; /* 3本目の斜線を100pxだけ離して表示 */
}

/* .menu-btn,
.menu-icon{
  display: none;
} */



/* レスポンシブ対応 */
@media (max-width: 768px) {
  
  
  .custom-header{
    width: 96%;
  }
  .main-bar {
    height: 60px; /* 黒帯の高さを60pxに変更 */
    clip-path: polygon(0 0, 100% 0, calc(100% - 29px) 100%, 0% 100%); /* 右下のカットを調整 */
  }

  .slash {
    height: 60px; /* 斜線の高さを60pxに変更 */
    transform: skewX(-26deg);
  }

  .slash.thick {
    width: 20px !important; /* 斜線の太さを20pxに変更 */
  }

  .slash.spaced-middle {
    margin-left: 20px; /* 斜線の間隔を広げる */
    margin-right: 3px; /* 斜線の間隔を調整 */
  }

  .slash.spaced-last {
    margin-left: 30px; /* 3本目の斜線を30pxだけ離す */
  }
}



  /*ヘッダーここまで---------------------------------------------*/



  /*メイン----------------------------------------------------*/
  .logo{
    text-align: center;
    margin-top: 400px;
  }
  .logo img {
    opacity: 0;
    animation: fadeIn 2s ease-in-out forwards;
    width: 1100px;
    max-width: calc(100% - 40px)
  }

  @media (max-width: 768px){
    .logo{
      margin-top: 300px;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .logo2{
    margin: 400px auto;
    text-align: center;
    margin-bottom: 250px;
  }
  .logo2 img{
    width: auto;
    height: 350px;
  }
  .logo2 p{
    font-size: 40px;
    margin-top: 10px;
  }
  .logo2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 2.1s ease;
  }
  
  .logo2.fade-in {
    opacity: 1;
    transform: translateY(0);
  }
  

  @media (max-width: 768px){
    .logo2 img{
      width: auto;
      height: 200px;
    }
    .logo2 p{
      font-size: 28px;
      margin-top: 10px;
    }
  }

  .concept {
    display: flex;
    align-items: center; /* 縦方向の中央揃え */
    justify-content: center; /* 必要なら左右の余白調整 */
    gap: 40px; /* 画像とテキストの間隔 */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }
  
  .concept img {
    max-width: 40%; /* 必要に応じて調整 */
    height: auto;
  }
  
  .concept h1,
  .concept p {
    text-align: center;
  }
  
  .concept h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }
  
  .concept p {
    line-height: 1.6;
    font-size: 20px;
  }
  
  .concept-text {
    flex: 1;
  }

  @media (max-width: 768px){
    .concept{
      display: inline;
      text-align: center;
    }
    .concept h1{
      font-size: 30px;
      margin-top: 30px;
    }
    .concept p{
      font-size: 16px;
    }
    .concept img{
    max-width: none;
     width: 300px;
     height: auto;
     display: block;      /* ← これ追加！ */
    margin: 0 auto;
    margin-top: 10px;
    }
  }
  
  
  @import url(https://fonts.googleapis.com/css?family=Raleway:400,700);
.snip1445 {
  /* font-family: 'Raleway', Arial, sans-serif; */
  position: relative;
  overflow: hidden;
  /* margin: 10px; */
  min-width: 230px;
  max-width: 1200px;
  width: 100%;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  background-color: #000000;
  margin: 300px auto;
}
.snip1445 *,
.snip1445 *:before,
.snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
.snip1445 img {
  /* width: 1200px; */
  width: 100%;
  max-width: 1200px;
  height: auto;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1445 figcaption {
  position: absolute;
  bottom: 25px;
  right: 25px;
  padding: 5px 10px 10px;
}
.snip1445 figcaption:before,
.snip1445 figcaption:after {
  height: 2px;
  width: 400px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
.snip1445 figcaption:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.snip1445 figcaption:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.snip1445 figcaption div:before,
.snip1445 figcaption div:after {
  width: 2px;
  height: 300px;
  position: absolute;
  content: '';
  background-color: #ffffff;
}
.snip1445 figcaption div:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.snip1445 figcaption div:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.snip1445 h2,
.snip1445 h4 {
  margin: 0;
  text-transform: uppercase;
}
.snip1445 h2 {
  font-weight: 400;
  font-size: 35px;
}
.snip1445 h4 {
  display: block;
  font-weight: 700;
  background-color: #ffffff;
  padding: 5px 10px;
  color: #000000;
  font-size: 20px;
}
.snip1445 a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.snip1445:hover img,
.snip1445.hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.5;
  opacity: 0.5;
}
.snip1445:hover figcaption:before,
.snip1445.hover figcaption:before,
.snip1445.reverse:hover figcaption:before,
.snip1445.reverse.hover figcaption:before,

.snip1445:hover figcaption:after,
.snip1445.hover figcaption:after,
.snip1445.reverse:hover figcaption:after,
.snip1445.reverse.hover figcaption:after,

.snip1445:hover figcaption div:before,
.snip1445.hover figcaption div:before,
.snip1445.reverse:hover figcaption div:before,
.snip1445.reverse.hover figcaption div:before,

.snip1445:hover figcaption div:after,
.snip1445.hover figcaption div:after,
.snip1445.reverse:hover figcaption div:after,
.snip1445.reverse.hover figcaption div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.snip1445:hover figcaption:before,
.snip1445.hover figcaption:before,
.snip1445:hover figcaption:after,
.snip1445.hover figcaption:after

{
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

/* ★これを CSS の一番最後に追加するだけ！ */
.snip1445.reverse figcaption {
  left: 25px;
  right: auto;
}

.snip1445.reverse figcaption:before {
  right: 0;
  left: auto;
  transform: translateX(-100%);
}

.snip1445.reverse figcaption:after {
  left: 0;
  right: auto;
  transform: translateX(100%);
}

.snip1445.reverse figcaption div:before {
  right: 0;
  left: auto;
  transform: translateY(100%);
}

.snip1445.reverse figcaption div:after {
  left: 0;
  right: auto;
  transform: translateY(-100%);
}

@media (max-width:768px) {
  .snip1445 h2 {
    font-size: 25px;
  }
  .snip1445 h4 {

    font-size: 15px;
  }
  .snip1445 {
    margin: 100px auto;
  }
}


/* Demo purposes only */
/* $(".hover").mouseleave(
  function () {
    $(this).removeClass("hover");
  }
); */

  /*メインここまで--------------------------------------------*/

  /*カンパニーページ-------------------------------------------*/
  .back {
    margin: 0;
    padding: 0;
    background: url(../image/logo.PNG) no-repeat center 150px fixed;
    background-size: 500px auto;
    position: relative;
  }
  
  /* ← こっちが正解！ */
  .back::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: -1;
  }

  
  .company {
    max-width: 800px;
    margin: 150px auto;
    padding: 50px 20px;
    font-family: 'Noto Serif JP', serif;
  }
  
  .company h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
  }
  
  .info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #3c3c3c;
    padding: 15px 0;
  }
  
  .info-block h3 {
    margin: 0;
    text-align: left;
    width: 40%;
    font-weight: 600;
    font-size: 20px;
  }
  
  .info-block p {
    margin: 0;
    text-align: left;
    width: 60%;
    font-size: 18px;
    line-height: 1.6;
  }

  @media(max-width:768px){
    .info-block p {
      margin: 0;
      text-align: left;
      width: 60%;
      font-size: 16px;
      line-height: 1.6;
    }
  }
  /*カンパニーページここまで----------------------------------*/

  /*コンタクトページ-----------------------------------------*/

  .contact {
    max-width: 800px;
    margin: 150px auto;
    padding: 50px 20px;
  }
  
  .contact h1 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 40px;
  }

  .contact p{
    text-align: center;
    font-size: 18px;
    margin-top:80px;
    margin-bottom: 150px;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    gap: 450px; /* アイコンブロック同士の距離 */
    margin-top: 40px;
  }

  .adress a {
    color: inherit;
    text-decoration: none;
  }
  
  .adress a:hover {
    text-decoration: underline;
  }
  
  
  .adress {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .adress i {
    font-size: 55px; /* アイコン大きく！ */
    margin-bottom: 15px;
    color: #1a1a1a; /* 色はお好みで */
  }
  
  .adress h2 {
    margin: 5px 0 2px;
    font-size: 25px;
  }
  
  .adress p {
    font-size: 16px;
    margin: 0;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    /* gap: 80px; */
    margin-top: 40px;
    position: relative;
  }
  
  .contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #3c3c3c; /* 縦線の色 */
    transform: translateX(-50%);
  }
  
  @media (max-width: 768px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
      gap: 200px; /* 上下の間隔 */
    }
  
    .contact-info::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 1.5px;
      width: 80%;
      background-color: #3c3c3c;
      transform: translateY(-50%);
      margin: 0 auto;
    }
  }
  
  
  
  /*フッター------------------------------------------------*/
  footer{
    background-color: #1a1a1a;
    /* text-align: center; */
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 200px;
  }
  footer p{
    color: #fff;
  }
  /*フッターここまで-----------------------------------------*/

  /*スマホ用------------------------------------------------*/

  @media (max-width: 432px) {

    .nav-links a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 13px;
      /* transition: opacity 0.3s; */
    }
    .nav-links {
      display: flex;
      gap: 16px;
    }

    .logo2 img{
      width: auto;
      height: 150px;
    }
    .logo2 p{
      font-size: 20px;
      margin-top: 10px;
    }

    .concept h1{
      font-size: 25px;
      margin-top: 30px;
    }
    .concept p{
      font-size: 12px;
    }
    .concept img{
    max-width: none;
     width: 250px;
     height: auto;
     display: block;      /* ← これ追加！ */
    margin: 0 auto;
    /* margin-top: 10px; */
    }

    .snip1445 h2 {
      font-size: 23px;
    }
    .snip1445 h4 {
  
      font-size: 15px;
    }
    .snip1445 {
      margin: 100px auto;
    }
    .snip1445 figcaption {
      position: absolute;
      bottom: 10px;
      right: 25px;
      padding: 5px 0 10px;
    }

    /*カンパニー・コンタクトページ----------------------------------------*/
    .back {
      margin: 0;
      padding: 0;
      background: url(../image/logo.PNG) no-repeat center 780px;
      background-size: 80px auto;
      background-attachment: scroll !important;
    }

    .company {
      max-width: 800px;
      margin: 50px auto;
      padding: 50px 20px;
      font-family: 'Noto Serif JP', serif;
      margin-bottom: 200px;
    }

    .company h1 {
      text-align: center;
      margin-bottom: 100px;
      font-size: 25px;
    }
    
    .info-block {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #3c3c3c;
      padding: 15px 0;
    }
    
    .info-block h3 {
      margin: 0;
      text-align: left;
      width: 40%;
      font-weight: 600;
      font-size: 16px;
    }
    
    .info-block p {
      margin: 0;
      text-align: left;
      width: 60%;
      font-size: 14px;
      line-height: 1;
    }

    .contact {
      max-width: 800px;
      margin: 50px auto;
      padding: 50px 20px;
      font-family: 'Noto Serif JP', serif;
    }
    
    .contact h1 {
      text-align: center;
      margin-bottom: 40px;
      font-size: 25px;
    }
  
    .contact p{
      font-size: 14px;
      margin-top:40px;
      margin-bottom: 80px;
    }

    .contact-info {
      display: flex;
      justify-content: center;
      gap: 5px; /* アイコンブロック同士の距離 */
      margin-top: 10px;
    }

    .adress {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .adress i {
      font-size: 50px; /* アイコン大きく！ */
      /* margin-bottom: 5px; */
    }

    .adress h2 {
      margin: 0px 0 0px;
      font-size: 25px;
    }

    .contact-info::before {
      top: 42%;
    }

/*フッター--------------------------------------------------*/
footer{
  margin-top: 100px;
}
  }