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: 470px;
    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: 80px;
        animation: slideInLeft 1.5s forwards;
    }

}


/*コンタクトフォームーーーーーーーーーーーーーーーーーーーーーーー*/

.form-ui{
    margin-bottom: 270px;
}

#form {
    position: relative;
    top: 100px;
    left: 400px;
    display: grid;
    place-items: center;
    width: 600px;
    height: 900px;
    padding: 25px;
    background-color: #161616;
    box-shadow: 0px 15px 60px #d6f75f;
    outline: 1px solid #a9c056;
    border-radius: 10px;
}
  
  #form-body {
    position: absolute;
    top: 200px;
    right: 25px;
    left: 25px;
    width: 600px;
    margin: -156px auto 0 auto;
  }

  .contact-text{
    color: white;
    font-size: 16px;
    padding: 20px 0px;
  }
  
  #welcome-lines {
    text-align: center;
    line-height: 1;
  }
  
  #welcome-line-1 {
    color: #d6f75f;
    font-weight: 600;
    font-size: 40px;
  }
  
  #welcome-line-2 {
    color: #ffffff;
    font-size: 18px;
    margin-top: 17px;
  }
  
  #input-area {
    margin-top: 40px;
  }
  
  .form-inp {
    padding: 11px 25px;
    background: transparent;
    border: 1px solid #e3e3e3;
    line-height: 1;
    border-radius: 8px;
  }
  
  .form-inp:focus {
    border: 1px solid #d6f75f;
  }
  
  .form-inp:first-child {
    margin-bottom: 15px;
  }
  
  .form-inp input {
    width: 100%;
    background: none;
    font-size: 13.4px;
    color: #d6f75f;
    border: none;
    padding: 0;
    margin: 0;
  }
  
  .form-inp input:focus {
    outline: none;
  }

  .form-inp textarea {
    width: 100%;
    background: none;
    font-size: 13.4px;
    color: #d6f75f;
    border: none;
    padding: 0;
    margin: 0;
    height: 100px;
  }

  .form-inp textarea:focus {
    outline: none;
  }
  
  #submit-button-cvr {
    margin-top: 20px;
  }
  
  #submit-button {
    display: block;
    width: 100%;
    color: #d6f75f;
    background-color: transparent;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
    padding: 14px 13px 12px 13px;
    border: 0;
    outline: 1px solid #d6f75f;
    border-radius: 8px;
    line-height: 1;
    cursor: pointer;
    transition: all ease-in-out .3s;
  }
  
  #submit-button:hover {
    transition: all ease-in-out .3s;
    background-color: #d6f75f;
    color: #161616;
    cursor: pointer;
  }
  
  #forgot-pass {
    text-align: center;
    margin-top: 10px;
  }
  
  #forgot-pass a {
    color: #868686;
    font-size: 12px;
    text-decoration: none;
  }
  
  #bar {
    position: absolute;
    left: 50%;
    bottom: -50px;
    width: 28px;
    height: 8px;
    margin-left: -33px;
    background-color: #d6f75f;
    border-radius: 10px;
  }
  
  #bar:before,
  #bar:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #ececec;
    border-radius: 50%;
  }
  
  #bar:before {
    right: -20px;
  }
  
  #bar:after {
    right: -38px;
  }


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

    #form {
        position: relative;
        top: 100px;
        left: 20px;
        display: grid;
        place-items: center;
        width: 300px;
        height: 900px;
        padding: 25px;
        background-color: #161616;
        box-shadow: 0px 15px 60px #d6f75f;
        outline: 1px solid #a9c056;
        border-radius: 10px;
    }

    #form-body {
        position: absolute;
        top: 200px;
        right: 25px;
        left: 25px;
        width: 300px;
        margin: -156px auto 0 auto;
      }

    .form-inp {
        padding: 11px 25px;
        background: transparent;
        border: 1px solid #e3e3e3;
        line-height: 1;
        border-radius: 8px;
      }

      #welcome-line-1 {
        color: #d6f75f;
        font-weight: 600;
        font-size: 25px;
      }
      
      #welcome-line-2 {
        color: #ffffff;
        font-size: 10px;
        margin-top: 17px;
      }

      .form-inp input {
        width: 100%;
        background: none;
        font-size: 13.4px;
        color: #d6f75f;
        border: none;
        padding: 0;
        margin: 0;
      }

  }
  

/*送信後phpデザインーーーーーーーーーーーーーーー*/

  #result-message {
    font-weight: bold;
    text-align: center;
    font-size: 30px;
    width: 100%;
    margin-top: 20px;
}

#result-message.success {
    color: black;
}

#result-message.error {
    color: black;
}




/*コンタクトボタンーーーーーーーーーーーーーーーー*/


.contact-button {
    height: 50px;
    width: 340px;
    margin-top: 30px;
    position: relative;
    background-color: transparent;
    cursor: pointer;
    border: 2px solid #252525;
    overflow: hidden;
    border-radius: 0px;
    color: #333;
    transition: all 0.5s ease-in-out;
  }
  
  .btn-txt {
    z-index: 1;
    font-weight: 800;
    letter-spacing: 4px;
  }
  
  .type1::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.5s ease-in-out;
    background-color: #333;
    border-radius: 30px;
    visibility: hidden;
    height: 10px;
    width: 10px;
    z-index: -1;
  }

  .contact-button a{
    text-decoration: none;
    color: black;
  }
  
  .contact-button:hover {
    box-shadow: 1px 1px 200px #252525;
    color: #fff;
    border: none;
  }
  
  .type1:hover::after {
    visibility: visible;
    transform: scale(100) translateX(2px);
  }

  .contact-button.type1 {
    /* 既存のボタンのスタイル */

    /* ボタン内のリンクに関するスタイル */
    text-decoration: none; /* 下線をなくす */
    color: #ffffff; /* リンクのテキスト色 */
    display: inline-block; /* リンクをインラインブロック要素として表示 */
    padding: 10px 20px; /* パディング */
}

.contact-button.type1:hover {
    background-color: #007bff; /* ホバー時の背景色変更 */
}


/*thanks contact----------------------------*/
.loader {
    --col1: rgba(228, 19, 141, 0.925);
    --col2: rgb(255, 179, 80);
    font-size: 2em;
    font-weight: 600;
    perspective: 800px;
    position: relative;
  }
  
  .loader::after,
  .loader::before,
  .loader .text::after,
  .loader .text::before {
    perspective: 800px;
    animation: anim 2s ease-in-out infinite, dotMove 10s ease-out alternate infinite, move 10s linear infinite 1s;
    ;
    content: '●';
    color: var(--col1);
    position: absolute;
    translate: -60px 500px;
    width: 5px;
    height: 5px;
  }
  
  .loader::before {
    animation-delay: 3s;
    color: var(--col1);
  }
  
  .loader .text::before {
    color: var(--col2);
    animation-delay: 2s;
  }
  
  .loader .text::after {
    color: var(--col2);
  }
  
  .loader .text {
    animation: anim 20s linear infinite, move 10s linear infinite 1s;
    color: transparent;
    background-image: linear-gradient(90deg, 
    var(--col1) 0%,
    var(--col2) 100%);
    background-clip: text;
    background-size: 100%;
    background-repeat: no-repeat;
    transform: skew(5deg, -5deg);
    -webkit-background-clip: text;
    position: relative;
  }
  
  @keyframes anim {
    0%, 100% {
      text-shadow: 2px 0px 2px rgba(179, 158, 158, .5);
    }
  
    50% {
      background-size: 0%;
      background-position-x: left;
      text-shadow: 2px 10px 6px rgba(179, 158, 158, 1);
    }
  }
  
  @keyframes move {
    50% {
      translate: 0px 0px;
      rotate: x 60deg;
      transform: skew(-5deg, 5deg);
    }
  }
  
  @keyframes dotMove {
    0%, 100% {
      translate: -60px 300px;
    }
  
    50% {
      translate: 160px -250px;
      scale: .5;
      opacity: .85;
    }
  }



/*フッターーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
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);
  }
  
  
  
  
  }