*{
    margin: 0;
}
/* コンテンツがヘッダーに隠れないように余白を確保 */

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400; /* 適用するデフォルトの太さ */
    font-style: normal;
}

a{
    text-decoration: none;
}


/* スクロールボタンーーーーーーーーーーーーーーーーーーー */
/* スクロールボタンのスタイル */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: white;
    color: #f1712c;
    padding: 15px 21px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    border: solid 2px #f1712c;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px); /* 初期状態では少し下に配置 */
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    z-index: 1000;
}

.scroll-to-top:hover{
    color: white;
    background-color: #f1712c;
    border: solid 2px white;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* 表示時に元の位置に戻る */
}

@media (max-width: 768px) {
    .scroll-to-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background-color: white;
        color: #f1712c;
        padding: 5px 11px;
        border-radius: 50%;
        font-size: 24px;
        text-align: center;
        border: solid 2px #f1712c;
        cursor: pointer;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px); /* 初期状態では少し下に配置 */
        transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
        z-index: 1000;
    }
}

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* ヘッダー背景色、透明度あり */
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* ナビゲーション下の影 */
    transition: background-color 0.3s ease;
}

.overlay {
    position: fixed; /* スクロールに影響しないように固定 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0); /* 初期状態は透明 */
    pointer-events: none; /* クリックイベントを無視する */
    transition: background 0.8s; /* スムーズな変化を追加 */
    z-index: -2; /* 全体の上に表示されるようにする */
}

.global-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 40px; /* 横の余白を広めに */
  height: 70px; /* 必要に応じて高さも統一 */
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-inner {
    width: 100%;
    max-width: 100%; /* 最大幅を設定 */
    margin: 0 auto; /* 中央揃え */
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 32px;
    margin-left: 150px;
}


.logo img {
    width: 160px; /* 必要に応じて変更 */
    height: auto; /* 比率を保持 */
}

.logo-container {
  display: flex;
  align-items: center;
  margin-right: 20px; /* ロゴとnav-listの隙間を必要なぶんだけ確保 */
}


.nav-container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  flex-shrink: 1;
}

.nav-list {
    display: flex;
    gap: 0px; /* 項目同士の間隔を適切に拡張 */
    list-style: none;
    flex-shrink: 1; /* 横幅が狭くなっても押し出さない */
}


.nav-link {
    text-decoration: none;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 16px;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease; /* 色の変化を滑らかに */
}

.nav-link:hover {
    color: red; /* ホバー時に文字色を変更 */
}


.button-container {
    display: flex;
    gap: 25px; /* ボタン間の余白を少し狭めに */
    flex-shrink: 0; /* ボタンは縮小せず、ぎりぎりまで詰める */
}

.nav-contact-button {
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 999px;
  background: linear-gradient(to right, #ff8a00, #ff5e62);
  color: #000;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s;
}

.nav-contact-button:hover {
  opacity: 0.8;
}


@media (max-width: 768px) {
    header {
        height: 0vh; /* すでに指定済み */
        background-position: center center;
    }

    .nav-contact-button {
        /* お問い合わせボタンのスタイル */
        width: 100%;
        display: inline-block; /* ボタンのサイズを適切に設定する */
        padding: 10px 20px;
        border: none;
        background: linear-gradient(to right, rgb(245, 179, 168), #f1712c);
        color: black !important; /* ボタンの文字色 */
        font-size: 16px;
        font-weight: bold;
        border-radius: 50px;
        cursor: pointer; /* マウスカーソルをポインタにする */
        text-align: center; /* テキストを中央に配置 */
        text-decoration: none; /* 下線を消す */
        transition: background-color 0.3s; /* 背景色の変化にトランジションを追加 */
    }

    .logo img {
        width: 130px; /* 必要に応じて変更 */
        height: auto; /* 比率を保持 */
    }
}



/* ハンバーガーメニューのスタイル */
.hamburger-menu {
    display: none;
    font-size: 60px;
    cursor: pointer;
    margin-right: 20px;
    color: black;
}

/* ハンバーガーがバツに変わる際のスタイル */
.hamburger-menu.active {
    font-size: 30px;
    color: red; /* バツマークの色 */
}

/* モバイル用スタイル */
@media (max-width: 768px) {

    .global-nav {
        /* ナビゲーション全体のスタイル */
        max-width: 100%;
        width: 80%;
        top: 4%;
        left: 0%;
        display: flex;
        align-items: center;
        padding: 0px 10px;
        margin: 20px auto 0 auto; /* 上に90px、左右中央に配置 */
        position: relative; /* ヘッダーの位置を相対的に設定 */
        z-index: 1; /* ヘッダーが画像の上に表示されるようにする */
        background-color: rgba(255, 255, 255, 0.2); /* 白色で80%の透明度 */
    }

    .nav-inner {
        width: 100%;
        max-width: 100%; /* 最大幅を設定 */
        margin: 0 auto; /* 中央揃え */
        display: flex;
        justify-content: space-between; /* 子要素を左右に分ける */
        align-items: center;
        padding: 0px 0;
    }

    .logo{
        font-size: 25px; /* フォントサイズを調整 */
    }

    .logo-container {
        /* ロゴのコンテナのスタイル */
        z-index: 999;
    }
    
    .hamburger-menu {
        display: block; /* モバイルで表示 */
        z-index: 9999;
        margin-right: 0px;
        font-size: 40px;
        margin-bottom: 10px;
    }

    .nav-container {
        display: none; /* 初期状態は非表示 */
        position: fixed; /* 画面全体に広がるように */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(233,243,247);
        flex-direction: column;
        align-items: flex-start; /* 左寄せ */
        padding: 40px 20px; /* 左右に余白を追加 */
        justify-content: space-evenly; /* 項目の間に等間隔のスペース */
        z-index: 99; /* 他のコンテンツの上に表示 */
        padding: 20px 0; /* 上下に余白を追加 */
    }

    .nav-list {
        flex-direction: column;
        width: 100%; /* リスト全体を幅いっぱいにする */
        padding: 0;
        margin: 0;
        gap: 15px; /* 各項目間のスペースを調整 */
        list-style: none;
    }

    .nav-link {
        font-size: 18px; /* フォントサイズを調整 */
        padding: 10px 20px; /* 各リンクに余白を追加 */
        width: 80%; /* 幅を全体に揃える */
        text-align: left; /* 左寄せ */
        background-color: white; /* 背景色を透明に */
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(0, 0, 0, 0.1); /* ホバー時に背景色を追加 */
        color: #007bff; /* ホバー時に文字色を変更 */
    }

    .nav-list li {
        width: 100%; /* リストアイテムを幅いっぱいに */
        text-align: center;
    }

    .button-container {
        flex-direction: column;
        gap: 20px;
        margin-left: 0px;
        padding-left: 0;
        border-left: none;
        width: 80%;
        margin: 0 auto;
        align-items: center;
    }

    .contact-button {
        padding: 15px 30px;
        font-size: 20px; /* ボタンの文字サイズを大きく */
        text-align: center;
        width: 90%; /* ボタンも横幅を広く */
        max-width: 100%; /* 最大幅を設定 */
    }
}



/* メインーーーーーーーーーーーーーーーーーーーーーーーーーー */

/* ヒーローセクション */
.hero-section {
    position: relative;
    width: 100%;
    margin-top: 85px;
    height: 350px;
    background: url('/src/img/job/job-top.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* Hero content will stack vertically */
.hero-content {
    display: flex;
    flex-direction: column; /* Stack vertically */
    align-items: center; /* Center the content */
    justify-content: center;
    z-index: 1;
}

/* Hero text */
.hero-text {
    color: white;
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

/* About Us text */
.sub-hero-text {
    color: white !important; /* Adding !important */
    font-size: 24px;
    font-weight: normal;
    padding: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* パンくずリスト */
.breadcrumb {
    position: absolute;
    bottom: 0px; /* ヒーローセクションの底から20px上に配置 */
    left: 0px;  /* 左から20pxの位置 */
    z-index: 2;
    background-color: rgb(112, 110, 110);
    padding: 20px 90px;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.breadcrumb ul li {
    color: white;
    font-size: 14px;
}

.breadcrumb ul li:not(:last-child)::after {
    content: ">";
    margin: 0 30px;
    color: white;
}

.breadcrumb ul li a {
    color: white;
    text-decoration: none;
}

.breadcrumb ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-section {
        margin-top: 0px;
        height: 300px;
    }

    .hero-text {
        font-size: 28px;
        top: -20px;
    }

    .sub-hero-text {
        font-size: 18px; /* Adjust the font size for mobile */
    }

    .breadcrumb {
        padding: 13px 50px;
    }

    .breadcrumb ul li {
        font-size: 12px;
    }
}


/* 検索枠ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */

.form-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: flex-start; /* 上揃えにする */
    background-color: #b8926d; /* 背景の色 */
    padding: 45px;
    overflow: visible; /* 子要素がはみ出すことを許可 */
}

select, input[type="text"] {
    padding: 12px; /* パディングを増やす */
    font-size: 16px; /* 文字サイズを少し大きくする */
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #333;
    width: 250px; /* 幅を少し広げる */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
    position: relative; /* 相対位置に設定 */
    z-index: 1; /* 他の要素の上に表示 */
}


select:focus, input[type="text"]:focus {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    outline: none;
}

input[type="submit"] {
    background-color: #d2691e; /* ボタンの色 */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #a34c0e; /* ホバー時の色 */
}

input[type="submit"]:focus {
    outline: none;
}

/* 矢印付きのプルダウン（下向き） */
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="m16.843 10.211c.108-.141.157-.3.157-.456 0-.389-.306-.755-.749-.755h-8.501c-.445 0-.75.367-.75.755 0 .157.05.316.159.457 1.203 1.554 3.252 4.199 4.258 5.498.142.184.36.29.592.29.23 0 .449-.107.591-.291 1.002-1.299 3.044-3.945 4.243-5.498z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 30px;

}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .form-container {
        flex-direction: column; /* 縦に並べる */
        align-items: stretch; /* ストレッチして幅を100%に */
        padding: 30px; /* パディングを調整 */
    }

    select, input[type="text"] {
        padding: 10px; /* パディングを少し減らす */
        font-size: 14px; /* 文字サイズを少し小さく */
        width: 100%; /* 幅を100%に設定 */
    }

    input[type="submit"] {
        padding: 12px 0; /* ボタンのパディングを調整 */
        font-size: 14px; /* フォントサイズを少し小さく */
    }

    .keyword-input {
        width: 94% !important; /* 幅を300pxに設定 */
    }
}




/* タイトル文ーーーーーーーーーーーーーーーーーーーーーーーーーー */

.about-text {
    margin: 0 auto; /* 中央に配置 */
    max-width: 80%;
    text-align: left;
    margin-top: 80px;
}

.english-about {
    /* 英語テキストのスタイル */
    font-size: 40px;
    font-weight: bold;
    color: black; /* テキストの色 */
    margin-bottom: 10px; /* 英語と日本語の間にスペースを追加 */
}

.japanese-about {
    /* 日本語テキストのスタイル */
    font-size: 16px;
    font-weight: bold;
    color: black; /* テキストの色 */
    padding-bottom: 10px;
}



@media (max-width: 768px) {
    .about-text {
        margin-top: 40px; /* スマホサイズでの余白を調整 */
    }
    .english-about {
        font-size: 32px; /* フォントサイズを小さく */
    }
    .japanese-about {
        font-size: 14px; /* フォントサイズを小さく */
    }
}


/* スライダーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
#slider-section {
    position: relative;
    width: 100%;
    background-color: rgb(233,222,214);
    padding-bottom: 50px;
    padding-top: 10px;
  }

  .slider {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 40px;
  }


  .slide {
    position: relative;
    width: 100%;
    height: 400px; /* スライドの高さを調整 */
    margin-right: 30px; /* スライド間のスペースを調整 */
  }

  

  /* スライド背景のぼかし（画像部分のみ） */
  .image-container {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .image-container .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-size: cover;
    background-position: center;
    z-index: 1; /* 背景を一番後ろに */
    filter: blur(10px); /* ぼかし効果 */
  }

  .image-container img {
    position: relative;
    z-index: 2; /* ぼかしの上に表示 */
    width: 85%;
    height: 30%;
    margin: 0 auto;
    object-fit: cover; /* 画像の比率を維持しつつサイズ調整 */
  }

  /* テキスト部分のスタイル */
  .text-container {
    position: relative;
    z-index: 3;
    text-align: left;
    height: 50px;
    padding: 10px;
    background-color: white; /* 背景色をつけて視認性を高める */
  }

  .text-container p {
    color: #fff; /* テキスト色を白に設定 */
  }

  .text-container a{
    font-size: 0.8rem;
    color: black !important;
  }
  
  
  
  /* ドットナビゲーションスタイル */
  .slick-dots {
    bottom: 10px;
    list-style: none;
    text-align: center;
    padding: 0;
  }
  
  .slick-dots li {
    display: inline-block;
    margin: 0 5px;
  }
  
  .slick-dots li button {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    outline: none;
  }
  
  /* アクティブなドットのスタイル */
  .slick-dots li.slick-active button {
    background: #000;
  }
  
  /* 矢印ボタンのスタイル */
  .slick-prev,
  .slick-next {
    font-size: 0;
    line-height: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    outline: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .slick-prev {
    left: 10px;
  }
  
  .slick-next {
    right: 10px;
  }

  @media (max-width: 768px) {
    .text-container {
        position: relative;
        z-index: 3;
        text-align: left;
        height: 30px;
        padding: 4px;
        background-color: white; /* 背景色をつけて視認性を高める */
      }

      .text-container a{
        font-size: 0.5rem;
        color: black !important;
      }
      

  }

  /* メイントップーーーーーーーーーーーーーーーーーーーーー */
.work-options-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.work-options-container {
    max-width: 1200px;
    margin: 0 auto;
}

.work-options-heading {
}

.work-options-heading h1 {
    font-size: 35px;
    color: #333;
    text-align: center;
    margin: 80px 0px;
}

.work-options-cards {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.work-option-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: 35%;
    height: auto;
}

.work-option-card img {
    width: 100%;
    height: 80%;
    display: block;
}

.work-option-card p {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 15px 0;
}



@media (max-width: 768px) {
    .work-options-cards {
        flex-direction: column; /* 縦に並べる */
        align-items: center; /* 中央に配置 */
    }

    .work-option-card {
        width: 80%; /* 幅を90%に設定 */
        margin-bottom: -40px; /* カード間のマージン */
    }

    .work-options-heading h1 {
        font-size: 18px; /* フォントサイズを調整 */
        margin: 40px 0; /* マージンを調整 */
    }
}



/* よくある質問ーーーーーーーーーーーーーーーーーーーーーーーーーーー */

#question-section{
    padding: 60px 0px;
    /* background: linear-gradient(to right, rgb(245, 179, 168), #f1712c); */
  }

  .cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin:0 auto;
	color: #333333;
    width: 80%;
    margin-top: 60px;
    margin-bottom: 60px;
}
.cp_qa .cp_actab {
	padding: 20px 0;
	border-bottom: 1px dotted #120f0f;
}
.cp_qa label {
	font-size: 1.2em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.2s ease;
	        transition: 0.2s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}




@media (max-width: 768px) {

    #question-section{
        padding: 20px 0px;
      }

	.cp_qa {
		width: 90%; /* 幅を広げてスマホに合わせる */
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.cp_qa .cp_actab {
		padding: 15px 0; /* パディングを調整 */
	}

	.cp_qa label {
		font-size: 1em; /* フォントサイズを調整 */
		padding: 8px 8px 0 36px; /* ラベルのパディングを調整 */
	}

	.cp_qa .cp_actab-content {
		font-size: 0.9em; /* コンテンツのフォントサイズを小さくする */
		margin: 0 20px; /* マージンを減らしてスペースを確保 */
	}

	.cp_qa .cp_plus {
		font-size: 1.8em; /* プラスアイコンのサイズを小さくする */
		margin: 0 0 0 8px; /* マージンを調整 */
	}
}


  /* フッターーーーーーーーーーーーーーーーーーーーーーーーーーー */
footer {
    background-color: rgb(64, 68, 74);
    padding: 40px 0 20px 0;
}

footer a{
    text-decoration: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    color: white;
}

.footer-logo img {
    width: 200px; /* 適切な幅に設定 */
    height: auto; /* 比率を保持 */
}

.footer-logo a {
    text-decoration: none;
    color: white;
}

.footer-logo h1 {
    margin: 0;
    font-size: 24px; /* 必要に応じて調整 */
    margin-bottom: 20px;
}

.footer-logo .highlight {
    color: red; /* 「LINK」の部分を赤にする */
    font-size: 30px;
    padding-left: 10px;
}

.footer-address,
.footer-phone,
.footer-sns {
    margin-bottom: 15px;
}

.footer-address p,
.footer-phone p {
    margin: 0;
}

.footer-sns .sns-link {
    text-decoration: none;
    color: white;
    margin-right: 15px;
    font-size: 32px; /* アイコンのサイズ */
}

.footer-sns .sns-link:hover {
    color: #0056b3; /* ホバー時の色 */
}

.fa-instagram{
    color: #efa5d8;
}

.fa-line{
    color: #00cc44;
}

.footer-right {
    flex: 2.5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
    display: flex;
    padding-top: 10px;
}


.footer-nav-link {
    text-decoration: none;
    color: white ;
    margin-right: 15px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
}

.footer-nav-link:hover{
    color: red;
}

.footer-contact {
    display: flex;
    gap: 100px;
    margin: 0 auto;
    margin-top: 40px;
}

.contact-btn {
    border: none;
    padding: 25px 70px;
    cursor: pointer;
}


/* 求職者の方ボタン専用スタイル */
.contact-btn-job-seeker {
    background-color: white;
    color: black;
}
.contact-btn-job-seeker:hover{
    background-color: black;
    color: white;
}

/* 企業のご担当の方ボタン専用スタイル */
.contact-btn-employer {
    background-color: black;
    color: white;
}

.contact-btn-employer:hover{
    background-color: white;
    color: black;
}



.footer-bottom{
    border-top: 0.5px solid rgb(188, 186, 186);
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
}

.copyright{
    color: rgb(188, 186, 186);
}

.law-info{

}

.policies {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px; /* 項目間のスペース */
  }
  .policy-item a {
    text-decoration: none;
    color: rgb(188, 186, 186);
  }
  .policy-item a:hover {
    color: rgb(219, 217, 217);
  }

/* スマホ用のスタイル */
@media (max-width: 768px) {
    footer {
        padding: 20px 0; /* パディングの調整 */
    }

    .footer-container {
        flex-direction: column; /* 縦並びに設定 */
    }

    .footer-right {
        justify-content: space-between; /* 要素間のスペースを調整 */
        width: 100%; /* 幅を100%に設定 */
    }

    .footer-left {
        order: 1; /* footer-leftを後に表示 */
        padding-left: 50px;
        margin-top: 30px;
    }

    .footer-logo img {
        width: 150px; /* 適切な幅に設定 */
        height: auto; /* 比率を保持 */
    }

    .footer-logo h1 {
        font-size: 20px; /* フォントサイズを調整 */
        margin-bottom: 15px; /* 下のマージンを調整 */
    }

    .footer-logo .highlight {
        font-size: 24px; /* フォントサイズを調整 */
        padding-left: 5px; /* パディングを調整 */
    }

    .footer-address p,
    .footer-phone p {
        font-size: 14px; /* フォントサイズを調整 */
    }

    .footer-sns .sns-link {
        font-size: 24px; /* アイコンのサイズを調整 */
        margin-right: 10px; /* 右のマージンを調整 */
    }

    .footer-nav-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3列に設定 */
        gap: 10px; /* 各項目の間隔を調整 */
        padding: 0; /* 余計なパディングを削除 */
        margin: 20px 0; /* 上下にマージンを設定 */
        justify-items: center; /* 各項目を中央揃え */
        width: 100%;
        margin: 0 auto;
    }

    .footer-nav-link {
        text-align: center; /* テキストを中央揃え */
        font-size: 11px; /* フォントサイズを調整 */
        padding: 5px 10px; /* パディングを調整 */
    }

    .footer-contact {
        gap: 30px; /* ボタン間のスペースを調整 */
        margin-top: 40px; /* 上のマージンを調整 */
    }

    .contact-btn {
        padding: 15px 30px; /* パディングを調整 */
        font-size: 14px; /* フォントサイズを調整 */
    }


    .footer-bottom{
        border-top: 0.5px solid rgb(188, 186, 186);
        width: 80%;
        margin: 0 auto;
        margin-top: 50px;
        padding-top: 30px;
        display: block;
        justify-content: space-between;
    }
    
    .copyright{
        color: rgb(188, 186, 186);
        padding-bottom: 20px;
    }
    
    .law-info{
    
    }
    
    .policies {
        list-style: none;
        padding: 0;
        margin: 0;
        display: block;
        gap: 20px; /* 項目間のスペース */
      }
      .policy-item{
        padding: 5px 0px;
      }

      .policy-item a {
        text-decoration: none;
        color: rgb(188, 186, 186);
      }
      .policy-item a:hover {
        color: rgb(219, 217, 217);
      }
}
