body {
    margin: 0;
}



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

header {
  max-width: 100%;
    position: relative;
    height: 100%;
    width: 100%;
}

.video-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 100%;
}

.video-container img{
  max-width: 100%;
  height: auto;
  /* opacity: 0.8; */
}

.top-img{
  max-width: 100%;
  height: 600px;
}

/* video {
  
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.8;
} */

@media screen and (max-width: 768px) {
  .top-img {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    height: 510px;
}

.top-img img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を維持比率で切り取り */
  object-position: center; /* 画像の中央に配置 */
}

/* video {
  width: 100%;
  height: 300%;
  object-fit: cover;
  opacity: 0.8;
} */
  
}


/*ナビゲーションーーーーーーーーーーーーーーーーー*/

nav {
  max-width: 100%;
  width: 100%;
  padding: 20px 10px;
  top: 0;
  left: 0;
  display: flex; /* block から flex に変更 */
  align-items: center;
  z-index: 6; /* ナビゲーションを前面に配置 */
  position: fixed;
  transition: background-color 1.0s ease; /* 背景色のトランジション */
}


.logo {
  width: 160px; /* ロゴの最大幅を調整 */
  height: 50px;
}

.nav-right{
  display: flex;
  align-items: center;
  margin-left: 500px;
}

.nav-container{
  display: flex;
}

.nav-container li {
  display: inline-block;
  margin-right: 20px;
}

.nav-container li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: 0.5s;
  position: relative;
  overflow: hidden;
  transition: color 0.5s, width 0.5s;
}

.nav-container li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff; /* 下線の初期カラー */
  transition: width 0.5s; /* widthプロパティのみトランジションを適用 */
}

.nav-container li a:hover {
  color: #fff; /* ホバー時のテキストカラー */
  width: 0%;
}

.nav-container li a:hover::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff; /* ホバー時の下線カラー */
}

        /* スクロール時の固定スタイル */
        nav.fixed {
          background-color: rgba(0, 0, 0, 0.8); /* スクロール時の背景色（黒で透明度0.8） */
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* 必要に応じて影を追加 */
          background-color: rgba(0, 0, 0, 0.8); /* スクロール時の背景色（黒で透明度0.8） */
      }


  /*ナビゲーションインスタボタンーーーーーーーーーーーーーーーー*/
  .nav-Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
    margin-left: 30px;
  }
  
  .svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }

  .svgContainer-2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }

  

  .svgContainer-2 img{
    width: 32px;
    height: 32px;
  }


  .BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    z-index: -1;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
}

.BG-2 {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: #00c300;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
z-index: -1;
border-radius: 9px;
pointer-events: none;
transition: all .3s;
}

.nav-Btn:hover .BG {
transform: rotate(35deg);
transform-origin: bottom;
}

.nav-Btn:hover .BG-2 {
transform: rotate(35deg);
transform-origin: bottom;
}

.nav-Btn:hover .svgContainer {
background-color: rgba(156, 156, 156, 0.466);
}



/*明るさ調節ーーーーーーーーーーーーーーーーーーーーーーーーー*/

:root {
  --background-color: #fff; /* 初期の背景色（白） */
  --text-color: #000; /* 初期のテキスト色（黒） */
  --underline-color: #000; /* 下線の初期色を定義 */
}

  
body {
  background-color: var(--background-color);
  color: var(--text-color);
}

.toggle input:checked ~ .service-container::after {
  background-color: #fff; /* ボタンがチェックされたときに下線の色を白に変更 */
}

.toggle {
  display: inline-block;
}

.toggle {
  position: relative;
  height: 40px;
  width: 40px;
}

.toggle:before {
  box-shadow: 0;
  border-radius: 84.5px;
  background: #fff;
  position: absolute;
  margin-left: -36px;
  margin-top: -36px;
  opacity: 0.2;
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
}

.toogle input:checked~.label {
  color: rgba(255, 255, 255, 0.8);
}

.toggle .button {
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.5), inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 3px 4px -1px rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.8), inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);
  border-radius: 68.8px;
  position: absolute;
  background: #eaeaea;
  margin-left: -34.4px;
  margin-top: -34.4px;
  display: block;
  height: 50px;
  width: 50px;
  left: 60px;
  top: 30px;
}


.toggle .label {
  transition: color 300ms ease-out;
  line-height: 40px;
  text-align: center;
  position: absolute;
  font-weight: 700;
  font-size: 28px;
  padding-left: 30px;
  display: block;
  opacity: 0.9;
  height: 100%;
  width: 100%;
  color: rgba(0, 0, 0, 0.9);
}

.toggle input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 26px;
  top:-8px;
}

.toggle input:active ~ .button {
  filter: blur(0.5px);
  box-shadow: 0 12px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 30px 1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 25px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px 1px rgba(255, 255, 255, 0.6);
}

.toggle input:active ~ .label {
  font-size: 26px;
  color: rgba(0, 0, 0, 0.45);
}

.toggle input:checked ~ .button {
  filter: blur(0.5px);
  box-shadow: 0 10px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 20px 0 rgba(0, 0, 0, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.6);
}

.toggle input:checked ~ .button {
  filter: blur(0.5px);
  box-shadow: 0 10px 25px -4px rgba(255, 255, 255, 0.4), inset 0 -8px 25px -1px rgba(0, 0, 0, 0.9), 0 -10px 15px -1px rgba(0, 0, 0, 0.6), inset 0 8px 20px 0 rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(0, 0, 0, 0.6);
}



@media screen and (max-width: 768px) {
  .nav-container{
    display: none;
  }

  .logo{
    width: 90px; /* ロゴの最大幅を調整 */
    height: 30px;
  }


  .nav-right{
    display: flex;
    align-items: center;
    margin-left: 30px;
  }

  /*インスタボタン---------------*/
  .nav-Btn {
    width: 35px; /* レスポンシブに対応するために適切な値に調整 */
    height: 35px; /* レスポンシブに対応するために適切な値に調整 */
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
    margin-left: 20px; /* レスポンシブに対応するために適切な値に調整 */
  }
  
  .svgContainer,
  .svgContainer-2 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .svgContainer-2 img {
    width: 28px; /* レスポンシブに対応するために適切な値に調整 */
    height: 28px; /* レスポンシブに対応するために適切な値に調整 */
  }
  
  .BG,
  .BG-2 {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
  }
  
  .BG {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    z-index: -1;
  }
  
  .BG-2 {
    background: #00c300;
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    z-index: -1;
  }
  
  .nav-Btn:hover .BG {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .nav-Btn:hover .BG-2 {
    transform: rotate(35deg);
    transform-origin: bottom;
  }
  
  .nav-Btn:hover .svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
  }
  


  /*明るさボタンーーーーーーーーーーーーーー*/
  .toggle {
    position: relative;
    height: 30px;
    width: 30px;
  }

  .toggle .label {
    transition: color 300ms ease-out;
    line-height: 31px;
    text-align: center;
    position: absolute;
    font-weight: 700;
    font-size: 20px;
    padding-left: 31px;
    display: block;
    opacity: 0.9;
    height: 100%;
    width: 100%;
    color: rgba(0, 0, 0, 0.9);
  }

  .toggle .button {
    transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.5), inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 3px 4px -1px rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.8), inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);
    border-radius: 68.8px;
    position: absolute;
    background: #eaeaea;
    margin-left: -34.4px;
    margin-top: -34.4px;
    display: block;
    height: 40px;
    width: 40px;
    left: 60px;
    top: 30px;
  }

  .toggle input {
    opacity: 0;
    position: absolute;
    cursor: pointer;
    z-index: 1;
    height: 100%;
    width: 100%;
    left: 29px;
    top:-6px;
  }
}





/*ハンバーガーメニューーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333;
  display: none;
  z-index: 9;
}

.bar {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 6px 0;
  transition: 0.4s;
}

.menu-btn {
  display: none;
  margin-left: 30px;
  cursor: pointer;
  z-index: 19;
}

.menu-btn .bar {
  transition: 0.6s;
  transform-origin: center; /* 変更：回転の中心を指定 */
}

.mobile-nav-container {
  list-style: none;
  padding: 80px 20px 20px 20px;
  margin: 0;
  display: none;
  flex-direction: column;
  background-color: #333;
  position: fixed;
  top: 0%;
  left: 100%;
  transition: left 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  z-index: 4;
  overflow-y: auto;
  box-sizing: border-box;
}

.mobile-nav-container li {
  margin-bottom: 20px;
  border-bottom: 1px solid #555; /* ボーダーのスタイルを追加 */
  padding-bottom: 10px; /* 適切なスタイリングを行うために padding を追加 */
}

.mobile-nav-container a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px; /* 修正：メニュー項目のパディングを追加 */
  display: block; /* 修正：リンクをブロック要素に変更 */
  transition: background-color 0.3s ease; /* 修正：背景色へのトランジションを追加 */
       
}

@media screen and (max-width: 768px) {
  .menu-btn {
      display: block;
      margin-left: 60px;
  }

  .menu-btn.open .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-6px, 6px);
  }

  .menu-btn.open .bar:nth-child(2) {
      opacity: 0;
  }

  .menu-btn.open .bar:nth-child(3) {
      transform: rotate(45deg) translate(-6px, -6px);
  }

  .overlay.active {
      display: block;
      position: fixed;
  }


  body.menu-open {
    overflow: hidden; /* メニューが表示されている間、スクロールを禁止 */
}

  body.menu-open .overlay {
    background-color: #333;/* 背景を暗くする */
    opacity: 0.7;
    z-index: 5; /* ハンバーガーメニューの下に配置 */
}

body.menu-open .mobile-nav-container {
  display: block;
  z-index: 10;
}

body.menu-open .mobile-nav-container {
  left: 0; /* メニューが開かれたときに左から表示されるように変更 */
}

}



/*ヘッダーテキストーーーーーーーーーーーーーーーーーーーーーーーーー*/
.title-text {
    position: absolute;
    top: 30%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.main-text {
    font-size: 90px;
    line-height: 1.6; /* テキストの高さを調整 */
    font-family: 'Arial', sans-serif;
    transform: translateY(20px);
    animation: floatIn 1.0s forwards;
}


.small-text {
    font-size: 35px;
    position: absolute;
    color: rgb(237, 232, 232);
    line-height: 1.2; /* テキストの高さを調整 */
    font-family: 'Arial', sans-serif;
    
}


.top-bottom {
    top: 180px;
    left: 520px;
    animation: slideInLeft 1.5s forwards;
}


@media screen and (max-width: 768px) {

    .title-text {
        position: absolute;
        top: 25%;
        left: 50%;
        width: 80%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
    }
    
    .main-text {
        font-size: 60px;
        line-height: 1.6; /* テキストの高さを調整 */
        font-family: 'Arial', sans-serif;
        transform: translateY(20px);
        animation: floatIn 1.0s forwards;
    }
    
    
    .small-text {
        font-size: 25px;
        position: absolute;
        color: rgb(237, 232, 232);
        line-height: 1.2; /* テキストの高さを調整 */
        font-family: 'Arial', sans-serif;
    }
    
    
    .top-bottom {
        top: 120px;
        left: 100px;
        animation: slideInLeft 1.5s forwards;
    }

}


/*サービス一覧ーーーーーーーーーーーーーーーーーーーーーーーーー*/



#works-section{
  max-width: 100%;
}


.works-container {
  max-width: 1200px;
  margin: 0 auto;
  margin: 50px;
  display: flex;
  position: relative; /* 親要素を相対的な位置に設定 */
}


.works-container::after {
  content: "";
  display: block;
  width: 5%; /* 下線の長さを100%に設定 */
  height: 2px; /* 下線の太さ */
  background-color: #000; /* 下線の色 */
  position: absolute;
  bottom: -10px; /* 下線の位置調整 */
  left: 0;
}


.works-container h3 {
  font-size: 50px;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
}


  .works-container p {
      font-size: 16px;
      line-height: 1.6;
      padding-top: 25px;
      margin-left: 10px; /* pタグの左側の余白を追加 */
  }




  .works-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 要素間を均等に配置 */
    margin-left: 80px;
    width: 90%;
}

.works-detail {
    flex: 0 1 calc(50% - 20px); /* 2列になるように幅を調整（20pxはパディング分） */
    box-sizing: border-box;
    margin-bottom: 90px; /* 適切なマージンを設定 */
    text-align: left;
}

.works-detail h4{
  font-size: 25px;
  padding-bottom: 20px;
  color: rgb(101, 101, 101);
}

.works-detail img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影の設定 */
}

.works-detail h5 {
    margin-top: 10px;
    font-size: 20px;
}


@media screen and (max-width: 768px) {
  .works-container {
    max-width: 768px;
    margin: 0 auto;
    display: flex;
    margin: 60px 20px;
    position: relative; /* 親要素を相対的な位置に設定 */
    }
    
    .works-container h3 {
        font-size: 30px;
        font-family: 'Moirai One', system-ui;
        font-family: 'Noto Sans', sans-serif;
    }
    
    
    .works-container p {
        font-size: 12px;
        line-height: 1.6;
        padding-top: 13px;
        margin-left: 10px; /* pタグの左側の余白を追加 */
    }


    .works-info {
      flex-direction: column;
      flex-wrap: wrap;
      justify-content: space-between; /* 要素間を均等に配置 */
      margin-left: 20px;
      width: 90%;
  }

  .works-detail {
    flex: 0 1 calc(50% - 20px); /* 2列になるように幅を調整（20pxはパディング分） */
    box-sizing: border-box;
    margin-bottom: 50px; /* 適切なマージンを設定 */
    text-align: left;
}


  .works-detail h4{
    font-size: 20px;
    padding-bottom: 20px;
    color: rgb(101, 101, 101);
  }
  
  .works-detail img {
      width: 100%;
      height: auto;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影の設定 */
  }
  
  .works-detail h5 {
      margin-top: 10px;
      font-size: 15px;
  }
  }













/*フッターーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
footer {
    justify-content: space-between;
    background-color: #333;
    color: #fff;
    width: 100%;
    margin-top: 100px;
    display: flex;
    justify-content: space-around;
  }
  
  
  /* 左側の会社名のスタイル */
  .footer-left h2 {
    font-size: 50px;
    margin-top: 100px;
    position: relative;
  }
  
  .footer-left h2::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 5%;
    width: 16px; /* Adjust the width of the line as needed */
    height: 4px; /* Adjust the height of the line as needed */
    background-color: #e9de15; /* Adjust the color of the line as needed */
    transform: translateX(-50%);
  }
  
  
  
  /* 中央のSitemapのスタイル */
  .footer-center {
    text-align: center;
    text-align-last: left;
  }
  
  .footer-center h3 {
    font-size: 25px;
    margin-bottom: 80px;
    margin-top: 100px;
    position: relative;
  }
  
  .footer-center h3::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 5%;
    width: 16px; /* Adjust the width of the line as needed */
    height: 4px; /* Adjust the height of the line as needed */
    background-color: #e9de15; /* Adjust the color of the line as needed */
    transform: translateX(-50%);
  }
  
  .footer-center ul {
    list-style: none;
  }
  
  .footer-center ul li {
    margin-bottom: 25px;
  }
  
  .footer-center a {
    text-decoration: none;
    color: #fff;
  }
  
  /* 右側のSNSのスタイル */
  .footer-right {
    text-align: center;
    display: block;
  }
  
  .footer-right h3 {
    font-size: 25px;
    margin-bottom: 80px;
    margin-top: 100px;
    position: relative;
  }
  
  .footer-right h3::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 5%;
    width: 16px; /* Adjust the width of the line as needed */
    height: 4px; /* Adjust the height of the line as needed */
    background-color: #e9de15; /* Adjust the color of the line as needed */
    transform: translateX(-50%);
  }
  
  
  
  
  
  
  /*フッターsnsボタン---------------------------------*/
  
  .footer-sns-icon{
  
  }
  
  .footer-Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 30px;
  }
  
  .footer-svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  .footer-svgContainer-2 {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  
  
  .footer-svgContainer-2 img{
    width: 32px;
    height: 32px;
  }
  
  .footer-lineIcon{
    padding-top: 5px;
  }
  
  
  .footer-BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    z-index: -1;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
  }
  
  .footer-BG-2 {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #00c300;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
  z-index: -1;
  border-radius: 9px;
  pointer-events: none;
  transition: all .3s;
  }
  
  .footer-Btn:hover .BG {
  transform: rotate(35deg);
  transform-origin: bottom;
  }
  
  .footer-Btn:hover .BG-2 {
  transform: rotate(35deg);
  transform-origin: bottom;
  }
  
  .footer-Btn:hover .svgContainer {
  background-color: rgba(156, 156, 156, 0.466);
  }
  
  
  
  @media screen and (max-width: 768px) {
    footer {
      justify-content: space-between;
      background-color: #333;
      color: #fff;
      max-width: 768px;
      width: 100%;
      display: block;
      justify-content: space-around;
      margin-top: -40px;
    }
    
    
    /* 左側の会社名のスタイル */
    .footer-left h2 {
      font-size: 30px;
      margin-top: 100px;
      top: 50px;
      width: 80%;
      position: relative;
      padding-left: 30px;
    }
    
    .footer-left h2::before {
      content: "";
      position: absolute;
      top: -20px;
      left: 5%;
      width: 16px; /* Adjust the width of the line as needed */
      height: 3px; /* Adjust the height of the line as needed */
      background-color: #e9de15; /* Adjust the color of the line as needed */
      transform: translateX(-50%);
      margin-left: 20px;
    }
    
    
    
    /* 中央のSitemapのスタイル */
    .footer-center {
      text-align: center;
      text-align-last: left;
      width: 90%;
    }
    
    .footer-center h3 {
      font-size: 20px;
      margin-bottom: 40px;
      margin-top: 130px;
      position: relative;
      padding-left: 30px;
    }
    
    .footer-center h3::before {
      content: "";
      position: absolute;
      top: -20px;
      left: 5%;
      width: 16px; /* Adjust the width of the line as needed */
      height: 3px; /* Adjust the height of the line as needed */
      background-color: #e9de15; /* Adjust the color of the line as needed */
      transform: translateX(-50%);
      margin-left: 20px;
    }
    
    .footer-center ul {
      list-style: none;
      padding-left: 30px;
      font-size: 20px;
    }
    
    .footer-center ul li {
      margin-bottom: 25px;
      border-bottom: 1px solid white; /* 各liの下に白いボーダーを追加 */
      margin-bottom: 5px; /* ボーダーとの間隔を調整（必要に応じて変更） */
    }
  
    .footer-center li{
      padding: 18px 0px;
    }
    
    .footer-center a {
      text-decoration: none;
      color: #fff;
    }
    
    /* 右側のSNSのスタイル */
    .footer-right {
      text-align: left;
      display: block;
      width: 80%;
    }
    
    .footer-right h3 {
      font-size: 20px;
      margin-bottom: 50px;
      margin-top: 100px;
      position: relative;
      padding-left: 30px;
    }
    
    .footer-right h3::before {
      content: "";
      position: absolute;
      top: -20px;
      left: 5%;
      width: 16px; /* Adjust the width of the line as needed */
      height: 3px; /* Adjust the height of the line as needed */
      background-color: #e9de15; /* Adjust the color of the line as needed */
      transform: translateX(-50%);
      margin-left: 20px;
    }
    
    
  
  
  /*フッターsnsボタン---------------------------------*/
  
  
  .footer-sns-icon{
    width: 100%;
    padding-left: 30px;
    display: flex;
    padding-bottom: 50px;
  }
  
  .footer-Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    /* overflow: hidden; */
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
    margin-top: 0px;
    margin-left: 30px;
  }
  
  .footer-svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
    margin-left: -40px;
  }
  
  .footer-svgContainer-2 {
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
  }
  
  
  
  .footer-svgContainer-2 img{
    width: 32px;
    height: 32px;
  }
  
  .footer-lineIcon{
    padding-top: 5px;
  }
  
  
  .footer-BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    z-index: -1;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
}

.footer-BG-2 {
position: absolute;
content: "";
width: 100%;
height: 100%;
background: #00c300;
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
z-index: -1;
border-radius: 9px;
pointer-events: none;
transition: all .3s;
}

.footer-Btn:hover .BG {
transform: rotate(35deg);
transform-origin: bottom;
}

.footer-Btn:hover .BG-2 {
transform: rotate(35deg);
transform-origin: bottom;
}

.footer-Btn:hover .svgContainer {
background-color: rgba(156, 156, 156, 0.466);
}




}