body {
    margin: 0;
    font-family: 'Noto Sans JP', sans-serif;
}



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

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: 820px;
}

/* 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: 710px;
}

.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: 35%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

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

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

.top-left {
    top: -40px;
    left: 240px;
    animation: slideInLeft 1.5s forwards;
}

.bottom-right {
    bottom: -40px;
    right: 240px;
    animation: slideInRight 1.5s forwards;
}

.border {
    width: 60%;
    height: 3px;
    background-color: white;
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translateX(-50%);
    animation: slideIn 1.3s forwards;
}


.additional-text {
    width: 100%;
    margin-top: 10px; /* 適切なマージンを設定 */
    color: #fff; /* テキストのカラー */
    position: absolute;
    bottom: -140px; /* ボーダーの下に配置 */
    left: 50%; /* 中央寄せ */
    transform: translateX(-50%); /* 水平方向に中央寄せ */
    font-size: 44px; /* 適切なフォントサイズに調整 */
    font-family: 'Noto Sans JP', sans-serif;
}

.additional-text br{
  display: none;
}



@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        left: -100%; /* 初期位置を画面外に設定 */
    }
    to {
        left: 50%; /* 最終位置を中央に設定 */
    }
}

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


.title-text {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 80%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

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

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

.top-left {
  top: -40px;
  left: 15px;
  animation: slideInLeft 1.5s forwards;
}

.bottom-right {
  bottom: -40px;
  right: -30px;
  animation: slideInRight 1.5s forwards;
}

.border {
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  animation: slideIn 1.3s forwards;
}


.additional-text {
  width: 100%;
  margin-top: 10px; /* 適切なマージンを設定 */
  color: #fff; /* テキストのカラー */
  position: absolute;
  bottom: -140px; /* ボーダーの下に配置 */
  top: 160px;
  left: 50%; /* 中央寄せ */
  transform: translateX(-50%); /* 水平方向に中央寄せ */
  font-size: 30px; /* 適切なフォントサイズに調整 */
  padding-top: 30px;
  line-height: 1.4;
}

.additional-text br{
  display: block;
}



}

/*スクロールボタンーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

.header-arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  top: 580px;
  margin-left: -30px;
  bottom: 20px;
}

.header-arrows path {
  stroke: white;
  fill: transparent;
  stroke-width: 1px;  
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.header-arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.header-arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

.header-arrows path.a3 { 
  animation-delay:0s;
  -webkit-animation-delay:0s; /* Safari 和 Chrome */
}


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

  .header-arrows {
    width: 60px;
    height: 72px;
    position: absolute;
    left: 50%;
    top: 400px;
    margin-left: -30px;
    bottom: 20px;
  }
  

}





/*私たちについてーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


#about-section{
  width: 100%;
}

.about-detail{
  display: flex;
  width: 100%;
}

.about-text{
  width: 50%;
  padding: 0px 100px;
}

.about-text h4{
  font-size: 30px;
  line-height: 50px;
}

.about-text p{
  margin-top: 20px;
  font-size: 17px;
  line-height: 35px;
  font-family: 'Noto Sans JP', sans-serif;
}


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


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


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


.about-container p {
  font-size: 16px;
  line-height: 1.6;
  padding-top: 25px;
  margin-left: 10px; /* pタグの左側の余白を追加 */
  font-family: 'Noto Sans JP', sans-serif;
}




.about-card {
  width: 210px;
  height: 400px;
  background: black;
  border-radius: 35px;
  border: 2px solid rgb(40, 40, 40);
  padding: 7px;
  position: relative;
  margin-left: 60px;
  box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
}

.card-int {
  background-image: linear-gradient(to right bottom, #ff0000, #ff0045, #ff0078, #ea00aa, #b81cd7, #8a3ad6, #5746cf, #004ac2, #003d94, #002e66, #001d3a, #020812);

  /* background-image: linear-gradient(to right bottom, #ff0000, #ff0045, #ff0078, #ea00aa, #b81cd7, #8a3ad6, #5746cf, #004ac2, #003d94, #002e66, #001d3a, #020812); */
  background-size: 200% 200%;
  background-position: 0% 0%;
  height: 100%;
  border-radius: 25px;
  transition: all 0.6s ease-out;
  overflow: hidden;
}

.about-card:hover .card-int {
  background-position: 100% 100%;
}

.top {
  position: absolute;
  top: 0px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 35%;
  height: 18px;
  background-color: black;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.speaker {
  position: absolute;
  top: 2px;
  right: 50%;
  transform: translate(50%, 0%);
  width: 40%;
  height: 2px;
  border-radius: 2px;
  background-color: rgb(20, 20, 20);
}

.camera {
  position: absolute;
  top: 6px;
  right: 84%;
  transform: translate(50%, 0%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.048);
}

.int {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  background-color: rgba(0, 0, 255, 0.212);
}

.btn1, .btn2, .btn3, .btn4 {
  position: absolute;
  width: 2px;
}

.btn1, .btn2, .btn3 {
  height: 45px;
  top: 30%;
  right: -4px;
  background-image: linear-gradient(to right, #111111, #222222, #333333, #464646, #595959);
}

.btn2, .btn3 {
  transform: scale(-1);
  left: -4px;
}

.btn2, .btn3 {
  transform: scale(-1);
  height: 30px;
}

.btn2 {
  top: 26%
}

.btn3 {
  top: 36%
}

.quatam {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 35px;
  height: 100%;
  transition: 0.5s ease-in-out;
}

.website {
  display: block;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.about-card:hover .website {
  opacity: 1;
}

.about-card:hover .quatam {
  transform: translateY(-20px);
}

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

  #about-section{
    width: 100%;
  }

  .about-text{
  width: 100%;
  padding: 0px 0px;
}

.about-text h4{
  font-size: 30px;
  line-height: 50px;
}

.about-text p{
  margin-top: 20px;
  font-size: 17px;
  line-height: 35px;
}



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

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


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


  .about-detail{
    display: block;
    width: 100%;
  }


  .about-text h4{
    font-size: 20px;
    line-height: 30px;
    width: 90%;
    padding-left: 10px;
  }

  .about-text p{
    width: 90%;
    margin-top: 20px;
    font-size: 17px;
    line-height: 28px;
    padding: 0px 10px;
  }

  .about-card {
    width: 210px;
    height: 400px;
    margin-left: 80px;
    background: black;
    border-radius: 35px;
    border: 2px solid rgb(40, 40, 40);
    padding: 7px;
    margin-top: 50px;
    position: relative;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.486);
  }

  .int {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    background-color: rgba(0, 0, 255, 0.212);
  }

  .quatam {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    line-height: 35px;
    height: 100%;
    transition: 0.5s ease-in-out;
  }


}







/*サービスーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
/*サービス１ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/

#service-section{
    height: 1800px;
    /* margin-top: 1000px; */
}


.service-wrapper{
}

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

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


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


.service-container p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 25px;
    margin-left: 10px; /* pタグの左側の余白を追加 */
    font-family: 'Noto Sans JP', sans-serif;
}


.service-wrapper {
    display: flex;
    position: relative;
    margin-top: 20px; /* 適切なマージンを設定 */
    width: 100%;
    background-color: white;
}

.service-content-wrapper {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 65px;
    left: 200px;
    width: 40%;
    background-color: white;
    padding: 50px 20px 50px 0px;
    opacity: 0.8;
}


.service-flow span {
    display: inline-block;
    transition: opacity 0.6s, transform 0.6s;
    font-size: 60px;
    padding-bottom: 30px;
    margin-left: 20px;
    color: black;
    font-family: 'Moirai One', system-ui;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.service-flow span.word-1 {
    transition-delay: 0.18s;
}

.service-flow span.word-2 {
    transition-delay: 0.24s;
}

.service-flow span.word-3 {
    transition-delay: 0.30s;
}

.service-flow span.word-4 {
    transition-delay: 0.36s;
}

.service-flow span.word-5 {
    transition-delay: 0.42s;
}

.service-flow span.word-6 {
    transition-delay: 0.48s;
}

.service-flow span.word-7 {
    transition-delay: 0.54s;
}

.service-flow.show span {
    opacity: 1;
    transform: translateX(0);
}


.service-content-wrapper h4{
    font-size: 40px;
    padding-left: 20px;
    color: black;
}

.service-content-wrapper p{
    padding: 20px 0px 10px 20px;
    color: black;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Noto Sans JP', sans-serif;
}

.image-wrapper {
    flex: 1;
    position: absolute;
    z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
    left: 500px;
}

.image-wrapper img {
    width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}






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

    #service-section{
      height: 1650px;
      /* margin-top: 1000px; */
  }

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

    .service-container h3 {
      font-size: 30px;
      font-family: 'Moirai One', system-ui;
      font-family: 'Noto Sans', sans-serif;
  }
  
  
  .service-container p {
      font-size: 12px;
      line-height: 1.6;
      padding-top: 13px;
      margin-left: 10px; /* pタグの左側の余白を追加 */
  }

  .service-content-wrapper {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 100px;
    left: 25px;
    width: 85%;
    background-color: white;
    padding: 30px 0px 30px 0px;
    opacity: 0.8;
}

.service-content-wrapper h4{
  font-size: 20px;
  padding-left: 20px;
  color: black;
}

.service-content-wrapper p{
  padding: 20px 0px 10px 20px;
  color: black;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  line-height: 25px;
}

.service-flow span {
  display: inline-block;
  transition: opacity 0.6s, transform 0.6s;
  font-size: 30px;
  padding-bottom: 15px;
  margin-left: 20px;
  color: black;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}

.image-wrapper {
  flex: 1;
  position: absolute;
  z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
  left: 0px;
}

.image-wrapper img {
  width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}


  }



/*サービス2ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/


.service-wrapper2{
}

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



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



.service-container2 h3 {
    font-size: 40px;
    font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif; 
}


.service-container2 p {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 18px;
    margin-left: 10px; /* pタグの左側の余白を追加 */
    font-family: 'Noto Sans JP', sans-serif;
}


.service-wrapper2 {
    display: flex;
    position: relative;
    margin-top: 20px; /* 適切なマージンを設定 */
    width: 100%;
    background-color: white;
}





.service-content-wrapper2 {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 690px;
    left: 600px;
    width: 40%;
    background-color: white;
    padding: 50px 20px 50px 0px;
    opacity: 0.8;
}

.service-flow2 span {
    display: inline-block;
    transition: opacity 0.6s, transform 0.6s;
    font-size: 60px;
    padding-bottom: 30px;
    margin-left: 20px;
    color: black;
    font-family: 'Moirai One', system-ui;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}


.service-flow2 span.word-1 {
    transition-delay: 0.18s;
}

.service-flow2 span.word-2 {
    transition-delay: 0.24s;
}

.service-flow2 span.word-3 {
    transition-delay: 0.30s;
}

.service-flow2 span.word-4 {
    transition-delay: 0.36s;
}

.service-flow2 span.word-5 {
    transition-delay: 0.42s;
}

.service-flow2 span.word-6 {
    transition-delay: 0.48s;
}

.service-flow2 span.word-7 {
    transition-delay: 0.54s;
}

.service-flow2.show span {
    opacity: 1;
    transform: translateX(0);
}


.service-content-wrapper2 h4{
    font-size: 40px;
    padding-left: 20px;
    color: black;
}

.service-content-wrapper2 p{
    padding: 20px 0px 10px 20px;
    color: black;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    line-height: 25px;
    font-family: 'Noto Sans JP', sans-serif;
}

.image-wrapper2 {
    flex: 1;
    position: absolute;
    top: 596px;
    right: 40%;
    z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
}

.image-wrapper2 img {
    width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}



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


  .service-content-wrapper2 {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 690px;
    left: 0px;
    width: 40%;
    background-color: white;
    padding: 50px 20px 50px 0px;
    opacity: 0.8;
}


  .image-wrapper2 {
    flex: 1;
    position: absolute;
    top: 480px;
    right: 0%;
    z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
}

.image-wrapper2 img {
  width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}

.service-container2 h3 {
  font-size: 30px;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
}


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

.service-content-wrapper2 {
  flex: 1;
  z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
  position: absolute;
  top: 600px;
  left: 25px;
  width: 85%;
  background-color: white;
  padding: 30px 0px 30px 0px;
  opacity: 0.8;
}

.service-content-wrapper2 h4{
  font-size: 20px;
  padding-left: 20px;
  color: black;
}

.service-content-wrappe2 p{
  padding: 20px 0px 10px 20px;
  color: black;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  line-height: 25px;
}

.service-flow2 span {
  display: inline-block;
  transition: opacity 0.6s, transform 0.6s;
  font-size: 30px;
  padding-bottom: 20px;
  margin-left: 20px;
  color: black;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}


}




/*サービス3ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/



.service-wrapper{
}

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

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


.service-container3 h3 {
    font-size: 40px;
    font-family: 'Moirai One', system-ui;
font-family: 'Noto Sans', sans-serif;
}


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


.service-wrapper3 {
    display: flex;
    position: relative;
    margin-top: 20px; /* 適切なマージンを設定 */
    width: 100%;
    background-color: white;
}

.service-content-wrapper3 {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 1210px;
    left: 200px;
    width: 40%;
    background-color: white;
    padding: 50px 20px 50px 0px;
    opacity: 0.8;
}


.service-flow3 span {
    display: inline-block;
    transition: opacity 0.6s, transform 0.6s;
    font-size: 60px;
    padding-bottom: 30px;
    margin-left: 20px;
    color: black;
    font-family: 'Moirai One', system-ui;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
}

.service-flow3 span.word-1 {
    transition-delay: 0.18s;
}

.service-flow3 span.word-2 {
    transition-delay: 0.24s;
}

.service-flow3 span.word-3 {
    transition-delay: 0.30s;
}

.service-flow3 span.word-4 {
    transition-delay: 0.36s;
}

.service-flow3 span.word-5 {
    transition-delay: 0.42s;
}

.service-flow3 span.word-6 {
    transition-delay: 0.48s;
}

.service-flow3 span.word-7 {
    transition-delay: 0.54s;
}

.service-flow3.show span {
    opacity: 1;
    transform: translateX(0);
}


.service-content-wrapper3 h4{
    font-size: 40px;
    padding-left: 20px;
    color: black;
}

.service-content-wrapper3 p{
    padding: 20px 0px 10px 20px;
    color: black;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    line-height: 25px;
}

.image-wrapper3 {
    flex: 1;
    position: absolute;
    z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
    left: 600px;
    top: 1151px;
}

.image-wrapper3 img {
    width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}

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

  .service-content-wrapper3 {
    flex: 1;
    z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
    position: absolute;
    top: 690px;
    left: 0px;
    width: 40%;
    background-color: white;
    padding: 50px 20px 50px 0px;
    opacity: 0.8;
}


.service-container3 h3 {
  font-size: 30px;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
}


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

.service-content-wrapper3 {
  flex: 1;
  z-index: 2; /* コンテンツが写真の上に表示されるようにz-indexを設定 */
  position: absolute;
  top: 1100px;
  left: 25px;
  width: 85%;
  background-color: white;
  padding: 30px 0px 30px 0px;
  opacity: 0.8;
}

.service-content-wrapper3 h4{
  font-size: 20px;
  padding-left: 20px;
  color: black;
}

.service-content-wrappe3 p{
  padding: 20px 0px 10px 20px;
  color: black;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600;
  line-height: 25px;
}

.service-flow3 span {
  display: inline-block;
  transition: opacity 0.6s, transform 0.6s;
  font-size: 30px;
  padding-bottom: 20px;
  margin-left: 20px;
  color: black;
  font-family: 'Moirai One', system-ui;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 700;
}

.image-wrapper3 {
  flex: 1;
  position: absolute;
  top: 980px;
  right: 0%;
  left: 0px;
  z-index: 1; /* 写真がコンテンツの上に表示されるようにz-indexを設定 */
}

.image-wrapper3 img {
width: 100%; /* 写真が親要素に合わせて広がるように設定 */
}


}






/*サービスボタンーーーーーーーーーーーーーーーーーーーーー*/


.service-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 13rem;
  overflow: hidden;
  height: 3rem;
  background-size: 300% 300%;
  backdrop-filter: blur(1rem);
  transition: 0.5s;
  animation: gradient_301 5s ease infinite;
  border: double 4px transparent;
  background-image: linear-gradient(#212121, #212121),  linear-gradient(137.48deg, #ffdb3b 10%,#FE53BB 45%, #8F51EA 67%, #0044ff 87%);
  background-origin: border-box;
  background-clip: content-box, border-box;
  margin-top: 30px;
  margin-left: 20px;
}



.service-btn {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid black;
  padding: 10px 20px;
  font-size: 17px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.service-btn:hover {
  color: white;
}

.service-btn::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: black;
  z-index: -1;
  transition: all 1s;
}

.service-btn:hover::before {
  width: 160%;
}


@media screen and (max-width: 768px) {
  .service-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; /* レスポンシブに対応するために適切な値に調整 */
    max-width: 13rem; /* ボタンの最大幅を設定 */
    overflow: hidden;
    height: 3rem;
    background-size: 300% 300%;
    backdrop-filter: blur(1rem);
    transition: 0.5s;
    animation: gradient_301 5s ease infinite;
    border: double 4px transparent;
    background-image: linear-gradient(#212121, #212121),  linear-gradient(137.48deg, #ffdb3b 10%,#FE53BB 45%, #8F51EA 67%, #0044ff 87%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    margin-top: 20px;
    margin-left: 80px;
  }
  
  .service-btn {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid black;
    padding: 8px 16px; /* 少し小さく調整 */
    font-size: 15px; /* 少し小さく調整 */
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
  }
  
  .service-btn:hover {
    color: white;
  }
  
  .service-btn::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -20px; /* 少し小さく調整 */
    transform: skewX(45deg);
    background-color: black;
    z-index: -1;
    transition: all 1s;
  }
  
  .service-btn:hover::before {
    width: 120%; /* 少し小さく調整 */
  }
  

}



/*オプションーーーーーーーーーーーーーーーーーーーーーーーーー*/

#option-section{
}



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

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

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


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


.option-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}

.option-item {
  width: calc(33.333% - 40px); /* 3列に設定 */
  margin: 20px;
  text-align: center;
  transition: transform 0.3s;
  box-sizing: border-box;
  width: 290px;
  height: 350px;
  background: rgba(250, 248, 248, 0.58);
  border: 1px solid white;
  box-shadow: 12px 17px 51px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(6px);
  border-radius: 17px;
  transition: all 0.5s;
  font-weight: bolder;
  color: black;
}

.option-item:hover {
  transform: scale(1.05);
}

.content{
  width: 80%;
  margin: 0 auto;
}

.content i{
  font-size: 70px;
  padding-top: 30px;
}

.content h5{
  padding-top: 20px;
}

.content p{
  padding-top: 20px;
  text-align: left;
  line-height: 22px;
}

/* 
.option-item .content {
  background-color: #fff; /* 各 li 要素に背景色を設定 */
  /* padding: 20px;
  border: 1px solid #ddd;
} */ */

.option-item h5 {
  margin: 10px 0;
}




.option-item:hover {
  border: 1px solid black;
  transform: scale(1.05);
}

.option-item:active {
  transform: scale(0.95) rotateZ(1.7deg);
}


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

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

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

}




/*お問い合わせーーーーーーーーーーーーーーーーーーーーーーーーー*/

#contact-section{
  width: 100%;
  margin-top: 100px;
}



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


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


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


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


.contact-form{
  width: 100%;
  margin: 100px 0px 200px 0px;
}

.contact-form h4{
  text-align: center;
  font-size: 40px;
}

.contact-btn {
  color: var(--text-color);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--text-color);
  padding: 30px 100px;
  font-size: 17px;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
  top: 60px;
  left: 550px;
}

.contact-btn:hover {
  color: white;
}



.contact-btn:hover,
.contact-btn.dark-mode:hover {
  color: var(--background-color);
  background-color: var(--text-color);
}

.contact-btn:active,
.contact-btn.dark-mode:active {
  color: var(--text-color);
  background-color: var(--background-color);
}

.contact-btn::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: black;
  z-index: -1;
  transition: all 1s;
  background-color: var(--text-color);
}

.contact-btn:hover::before {
  width: 160%;
}


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

  #contact-section{
    width: 100%;
    margin-top: 10px;
  }
  

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

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

  .contact-form{
    width: 100%;
    margin: 50px 0px 100px 0px;
  }

  .contact-form h4{
    text-align: center;
    font-size: 22px;
  }


  .contact-btn {
    color: black;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid black;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
    top: 40px;
    left: 65px;
  }


}




/*フッターーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
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;
  }
  
  
  /* 左側の会社名のスタイル */
  .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);
}




}