/*トップテキスト　白背景など*/
.hero-text{
  position: relative;
  transform: translateY(-2rem);
  display: flex;
  flex-direction: column;
  color: #faa755;
}
.hero-text strong{
  display: inline-block;
  color: #faa755;
  background-color: rgba(255,255,255,0.8);
  font-size: 1.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

/*背景画像スライド*/
.wp-block-cover__image-background {
  transition: opacity 1s ease-in-out; /* JavaScriptでフェード効果を適用 */
  background-size: cover;
  background-position: center;
  width: 100%; /* 必要に応じて調整 */
  height: 100%; /* 必要に応じて調整 */
}


/* top テキスト */
.vkp_catch_bg_flow{
  font-size:min(32px,6.4vw);
  position: relative;
  display:inline-block;
  padding:0 10px;
}

/* 背景 */
.vkp_catch_bg_flow::before {
  background-color:rgba(255,255,255,1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  z-index: -1;
  animation: bg 1s ease-out backwards;
  border-radius:5px;
}
.vkp_catch_bg_flow.vkp_second_flow::before{
  animation: bg 1s ease-out 0.5s backwards;
}
.vkp_catch_bg_flow.vkp_third_flow::before{
  animation: bg 1s ease-out 1s backwards;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(1);
  }
  50%, 100% {
    opacity: 1;
  }
}

/* フェードイン */
.wp-block-group.vkp_fadein{
  animation-name: fadein;
  animation-duration: 1s; /* アニメーションの時間 */
  animation-delay:1.5s; /* 秒後に開始 */
  animation-fill-mode:backwards;/*最初のキーフレームの状態*/
}
@keyframes fadein{
  0%{
    opacity: 0;
    transform: translatey(20px);/* 動かす距離 */
  }
  100%{
    opacity: 1;
    transform: translatey(0);
  }
}

/*トップ、シエンちゃん吹き出し*/
.top_shien_hukidasi{
  position: relative;
  margin-top:-15px;
  right:-3%;
  z-index:2 !important;

}
.top_shien_hukidasi img{
  width:120px;
  height:120px;
  margin-top:-30px;

}

/*ひまわりちゃん調整*/
.Irast_Himawari {
  position: relative;
}

.Irast_Himawari::after {
  content: '';
  position: absolute;
  top: 100px;  /* 初期位置を指定 */
  left: 50%;  /* 左右中央に移動 */
  transform: translateX(-50%);
  width: 180px;
  height: 180px;
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/ひまわり.png');
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0;
  opacity: 0;  /* 最初は非表示に */
}

.Irast_Himawari.animate::after {
  animation: slideUp 2s forwards;  /* スクロールして位置に達したらアニメーションを開始 */
}

@keyframes slideUp {
  0% {
    top: 100px;
    opacity: 0;
    z-index: 0;
  }
  50% {
    opacity: 1;
    z-index: 0;
  }
  100% {
    top: -100px;
    opacity: 1;
    z-index: 0;
  }
}


@media screen and (max-width:768px) {
  .Irast_Himawari::after {
    width: 150px;
    height: 150px;
  }
  @keyframes slideUp {
    0% {
    top: 100px;
    opacity: 0;
    z-index: 0;
    }
      50% {
        opacity: 1;
        z-index: 0;
    }
      100% {
        top: -82px;
        opacity: 1;
        z-index: 0;
    }
  }
}
.Irast_Himawari.moveComplete::after {
  z-index: 1 !important;  /* アニメーションが完了したら z-index: 1 に変更 */
}


/*ひまわ装飾調整*/
.himawari_dec{
position: relative;
}

.himawari_dec::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 180px;
  height: 180px;
  /*background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/ひまわ_タイトル横.png');*/
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りひまわり.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.himawari_dec::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  /*background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/ひまわ_タイトル横_反転.png');*/
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りひまわり.png');
  background-size: contain;
  background-repeat: no-repeat;

}

@media screen and (max-width:992px) and (min-width: 769px) {
  .himawari_dec::before {
    top: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
  }
  .himawari_dec::after { 
    top: -80px;
    right: -80px;
    width: 160px;
    height: 160px;
  }

}

@media screen and (max-width:768px) {
  .himawari_dec::before {
    top: -90px;
    left: -45px;
    width: 140px;
    height: 140px;

  }
  .himawari_dec::after { 
    top: -90px;
    right: -45px;
    width: 140px;
    height: 140px;
  }

}

/*エスポのお仕事　エス君　シエンちゃんの配置*/
.es_shien_irast {
  position: relative;
  width: 100%;
}

.es_shien_irast::before {
  content: '';
  position: absolute;
  top: -110px;
  left: -60px;
  width: 200px;
  height: 200px;
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/エス（色調整）反転.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-5deg) translateX(-100%);
  z-index: 1;
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}

/* 表示されたときの状態 */
.es_shien_irast.visible::before {
  transform: rotate(-5deg) translateX(0);
  opacity: 1;
}

.es_shien_irast::after {
  content: '';
  position: absolute;
  top: -110px;
  right: -60px;
  width: 200px;
  height: 200px;
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/シエン（色調整）反転.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(15deg) translateX(100%);
  z-index: 1;
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
}
.es_shien_irast.visible::after {
  transform: rotate(15deg) translateX(0);
  opacity: 1;
}

@media screen and (max-width:768px) {
.es_shien_irast::before{
    width: 170px;
    height: 170px;
    left: -40px;
  }
.es_shien_irast::after{
    width: 170px;
    height: 170px;
    right: -40px;
  }
}


/*エスポのお仕事　クレヨン四角背景*/
.work_back{
background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/クレヨン長方形_緑明るくweb用.jpg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(100%); 
  border-radius: 22px;
}


/*詳しくはこちらボタン*/
.sample_btn {
  display: block;
  width: 300px;
  line-height: 60px;
  margin:0 auto;
  text-decoration: none;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  border-bottom-left-radius:20px;
  border-bottom-right-radius:20px;
  color: white !important;
  box-shadow: 5px 5px 0px #664400;
  background-color: #FAA755;
  transition: .3s;
  text-align:center;
}

.sample_btn:hover {
  box-shadow: unset;
  color: white;
  transform: translate(4px,4px);
}


/*就職先について　画像の角丸*/
#img_radius img{
border-radius:10px;
}


/*チョウ２匹　装飾*/
.fluffy2{
position:relative;
width:100%;
}
.fluffy2_img {
  width: 90px;
  height: 200; /* アニメーションの高さを調整 */
  margin: 80px 0; /* 上下の中央揃え、左右は寄せない */
  position: absolute; /* 絶対配置に変更 */
  top:-370px;
  right: 0; /* 画面の右側に配置 */
  animation: fluffy2 4s infinite;
  animation-play-state: running; /* 初期状態ではアニメーションが動いている */
}

@keyframes fluffy2 {
  0%, 100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 768px) {
  .fluffy2_img {
    width: 80px;
    top:150px;
  }
}

/* クローバーを回転させる設定 */
@keyframes rotate {
  0% {
    transform: rotate(0deg) scaleX(-1);
  }
  100% {
    transform: rotate(360deg) scaleX(-1);
  }
}


/* クローバーの装飾調整 */
.clover_dec {
  position: relative;
}

.clover_dec::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -70px;
  width: 150px;
  height: 150px;
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りクローバー.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
  transition: transform 1s ease-in-out; /* アニメーションのスムーズな動き */
  z-index: 10;
}

.clover_dec.rotate::before {
  animation-name: rotate;
  animation-duration: 1s;
  animation-fill-mode: forwards; /* アニメーション終了後の状態を保持 */
  animation-iteration-count: 1; /* 回転数 */
}

.himawari_dec{
position: relative;
}

.himawari_dec::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 180px;
  height: 180px;
  /*background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/ひまわ_タイトル横.png');*/
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りひまわり.png');
  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}

.himawari_dec::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  /*background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/ひまわ_タイトル横_反転.png');*/
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りひまわり.png');
  background-size: contain;
  background-repeat: no-repeat;

}

@media screen and (max-width:992px) and (min-width: 769px) {
  .himawari_dec::before {
    top: -60px;
    left: -80px;
    width: 160px;
    height: 160px;
  }
  .himawari_dec::after { 
    top: -60px;
    right: -80px;
    width: 160px;
    height: 160px;
  }

}

@media screen and (max-width:768px) {
  .himawari_dec::before {
    top: -70px;
    left: -45px;
    width: 140px;
    height: 140px;

  }
  .himawari_dec::after { 
    top: -70px;
    right: -45px;
    width: 140px;
    height: 140px;
  }

}

/* メディアクエリでのサイズ調整 */
@media screen and (max-width: 992px) and (min-width: 769px) {
  .clover_dec::before {
    top: -65px;
    left: -75px;
    width: 130px;
    height: 130px;
  }
}

@media screen and (max-width: 768px) {
  .clover_dec::before {
    top: -70px;
    left: -50px;
    width: 120px;
    height: 120px;
  }
}

/*左右反転　右側に配置*/
.clover_dec_right{
  position: relative;
}

.clover_dec_right::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -70px;
  width: 150px;
  height: 150px;
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/飾りクローバー.png');
  background-size: contain;
  background-repeat: no-repeat;
    transform: scaleX(-1);
  transition: transform 1s ease-in-out; /* アニメーションのスムーズな動き */
  z-index: 10;
}

.clover_dec_right.rotate::before {
  animation-name: rotate;
  animation-duration: 1s;
  animation-fill-mode: forwards; 
  animation-iteration-count: 1;
}

@media screen and (max-width:992px) and (min-width: 769px) {
  .clover_dec_right::before {
    top: -65px;
    right: -75px;
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 768px) {
.clover_dec_right::before {
    top: -70px;
    right: -50px;
    width: 120px;
    height: 120px;
  }
}

/*問い合わせフォーム上部などのチョウの装飾*/
.fluffy{
  position:relative;
  width:100%;
}
.fluffy_img {
  width: 90px;
  height: auto; /* アニメーションの高さを調整 */
  margin: 80px 0; /* 上下の中央揃え、左右は寄せない */
  position: absolute; /* 絶対配置に変更 */
  top:-150px;
  right: 0; /* 画面の右側に配置 */
  animation: fluffy 4s infinite;
  animation-play-state: running; /* 初期状態ではアニメーションが動いている */
}

@keyframes fluffy {
  0%, 100% {
    transform: translateY(20px);
  }
  50% {
    transform: translateY(0px);
  }
}

@media screen and (max-width: 768px) {
  .fluffy_img {
    width: 80px;
    top:-190px;
  }
}

/*問い合わせフォーム入力箇所の装飾*/
.wpcf7-form input:not(.not_decration), 
.wpcf7-form textarea {
  border: 3px solid #faa755;
  background-color:white;
  border-radius: 15px;
}

/*見学チェックの表示、非表示*/
.kengaku_hidden{
  margin:0;
  padding:0;
  display: none;
}

/*フッターひまわりとチョウの装飾*/
.footer_Himawari{
  margin:0 0 -70px 0;
  padding:0;
  width:100%;
  position: relative; /* positionを追加 */
}
.footer_Himawari img{
  position: relative; /* positionを追加 */
  z-index:1;
  width:100%;
}

/*共通CSS設定*/

.page-header { 
	display:none;
}

.breadcrumb-list { 
	display:none;
}
.site-body {
	padding-top: 0;
}

/*問い合わせ送信ボタン中央寄せ*/
.submit_cover{
  text-align: center;
	
}
input[type="submit"] {
	display: inline-block;
  text-align: center;
	font-weight:bold !important;
  font-size:1.3rem;
	padding-right:80px;
	padding-left:80px;
}
.wpcf7-spinner {
	display: block;
}

header{
	background-color:#EFDB92!important;
	
	/*初期　オレンジ色より
	background-color:#FAA755 !important;*/
}

footer{
	background-color:#CAE9AC!important;
	/*初期　オレンジ色より
  background-color:#FAA755 !important;
	*/
	color:black !important;
	/*初期　白色
	color:white !important;
	*/
}

.widget .widget_nav_name{
	color:white !important;
}

/*ヘッダー文字色*/
.nav li a, nav li a {
  color: black;
  text-decoration: none;
}
li a, nav li a {
  color: #000000;
  font-weight:bold;
  text-decoration: none;
}

/*文章　外枠＋背景の設定*/
.moji_box{
  padding: 1.5rem;
	background-color:rgba(255,255,255,1);
	border:2px solid #faa755;
	border-radius:8px;
	z-index:0;
}

/*フッター上のメインカラー線の色*/
.site-footer {
    border-top: none;
}

/*タイトル文字スマホ画面の調整*/
@media screen and (max-width:768px){
  
.title_moji_sp{
	font-size:1.9rem !important;
	font-weight:bold;
	}
.title_moji_sp2{
	font-size:1.5rem !important;
	font-weight:bold;
	}
.main_moji_sp{
	font-size:1.2rem !important;
	}

.main_moji_sp2{
	font-size:1.5rem !important;
	}
	
}


/*ルビの影響による上の余白解消*/
.top_padding{
	padding-top:1rem !important;
	margin-top:1rem !important;
}


/*メニュー　ルビ*/
.global-nav-list li{
	font-size:14px;
	font-weight:bold;
	white-space: nowrap;
	padding-right:10px;
}

/*ヘッダー　ロゴ調整*/
.site-header-logo{
	margin-left:-20px;
}
.site-header-logo img{
	max-height: 80px;
}

form p{
	margin-top:2rem;
}


/*メニュー文字サイズ調整*/
.global-nav-list>li .global-nav-name{
	font-size:18px;
}


/*メニュー小見出し　サイズ調整*/
.menu-description {
  font-size: 12px !important; /* お好きなサイズに変更 */
  display: block; /* ブロック要素にして、改行を確実に */
}

/*コンタクトフォーム　フォントサイズ調整*/
.wp-block-contact-form-7-contact-form-selector{
	font-size:1.1rem !important;
	
}
/*ルビ調整*/
ruby > rt {
    display: ruby-text;
    font-size: 56%;
    text-align: start;
	font-weight:bold;
}
.right_kotei{
position:fixed;
bottom:2%;
left:3%;
z-index:9999;
}

/* ひまわりジャンプ */
.Hima_butterfly_dec_right{
  width:90px;
  position:relative;
  top:80px;
  right:0px;
  z-index:1;
}
@media screen and (max-width: 768px) {
  .Hima_butterfly_dec_right {
    width:70px;
    top:40px;
  }
}
#button_hima_butterfly
{
  display: inline-block;
  cursor: pointer;
}
#button_hima_butterfly.jump
{
  animation: 0.4s cubic-bezier(.2,1,.2,1) 0s 1 jump;
}
@keyframes jump {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-40px); }
  0% { transform: translateY(0px) rotateZ(0deg); }
  30% { transform: translateY(-30px) rotateZ(10deg); }
  35% { transform: translateY(-30px) rotateZ(-30deg); }
  45% { transform: translateY(-30px) rotateZ(30deg); }
  55% { transform: translateY(-30px) rotateZ(-30deg); }
  65% { transform: translateY(-30px) rotateZ(30deg); }
  70% { transform: translateY(-30px) rotateZ(10deg); }
  100% { transform: translateY(0px) rotateZ(0deg); }
}

@media screen and (max-width: 768px) {
  .Hima_butterfly_dec_right {
    width:70px !important;
  }
}

.hima_butterfly_dec_left{
  position: relative;
}

.hima_butterfly_dec_left::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -30px;
  width: 100px;
  height: 100px;
  /*background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/himawari_butterfly.png');*/
  background-image: url('http://e-spo.org/espo_site02/wp-content/uploads/2024/08/himawari_butterfly_02.png');

  background-size: contain;
  background-repeat: no-repeat;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .hima_butterfly_dec_left::before {
    top: -50px;
    left: -20px;
    width: 80px;
    height: 80px;
  }
}
:root {
  --yt-player-corner-radius-mod: 0px;
}

/* YouTube Video Player */
#ytd-player {
  border-radius: var(--yt-player-corner-radius-mod) !important;
}

/* YouTube Shorts */
.ytd-reel-video-renderer {
  border-radius: var(--yt-player-corner-radius-mod) !important;
}

/* 会社概要テーブル色調整 */
.vk-table--th--bg-bright :where(tr>*:first-child){
  background-color:#faa755;
  color:white;
  border-radius: 0 3px 3px 0;
}
.vk-table--th--bg-bright tr{
  margin-top:8px!important;
}

.wp-block-table table[style*=border-width] tr{
margin-top:8px!important;
}

.wp-block-table table {
  border-collapse: separate;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* 外観 */
.gaikan {
  display: flex; /* 横並びにする */
  flex-wrap: wrap; /* 画面幅に応じて折り返す */
  justify-content: center; /* 画像を中央に配置 */
  text-align: center;
  gap: 20px; /* 画像の間に20pxの隙間を作る */
  border-radius: 8px;
}

.gaikan img {
  width: 100%; /* デフォルトは画面幅いっぱい */
  max-width: 500px; /* 最大幅を設定 */
  margin-bottom: 20px;
  border-radius: 8px;
  width: calc(50% - 10px); 
}

/* 768px以上の画面幅では2枚並べる */
@media (min-width: 768px) {
  .gaikan img {
      width: 45%;
  }
}

/* footerの装飾 */
.footer_Himawari{
  margin:0 0 -70px 0;
  padding:0;
  width:100%;
  position: relative; /* positionを追加 */
}
.footer_Himawari img{
  position: relative; /* positionを追加 */
  z-index:1;
  width:100%;
}

/*問い合わせフォーム　必須項目　角丸色付き装飾*/
.dec_kadomaru{
	display:inline-block;
	padding:8px 10px 1px 10px;
	margin-left:0.5rem;
	margin-bottom:0.5rem;
	color:white;
	background-color:#FAA755;
	border-radius:12px;
}

/*ページトップへ移動ボタン　非表示*/
#page_top{
	display:none;
}

/* ルビタグ変換クラス */
.espo-ruby{
  margin: 0 !important;
  transition: opacity 0.2s ease-in;
}

/* シエンちゃんのバルーン */
.espo-balloon {
  display: flex;
  align-items: center;
  position: relative;
  top: -5rem;
  opacity: 0;

}

.espo-balloon.right {
  flex-direction: row-reverse;
}

.espo-balloon .icon img {
  width: 140px;
  height: auto;
  border-radius: 50%;
}

.espo-balloon .content {
  background: #fff;
  border: 2px solid #faa755;
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  color: #faa755;
  font-size: 1.1rem;
  position: relative;
}

.espo-balloon .content::after {
  content: "";
  position: absolute;
  top: 1rem;
  width: 0;
  height: 0;
}

.espo-balloon.right .content::after {
  right: -15px;
  border-left: 15px solid #faa755;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.espo-balloon:not(.right) .content::after {
  left: -15px;
  border-right: 15px solid #faa755;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.content p{
  opacity: 0;
}

/* 1段目: フェード＆スライドイン */
.fade-slide-in {
  animation: fadeSlideIn 1s ease-out forwards;
  opacity: 0;
  transform: translateX(100px);
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}


/* 2段目: ポンっと弾む */
.bounce-in {
  animation: bounceIn 0.4s ease-out forwards;
}

@keyframes bounceIn {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* 3段目: テキストスライド表示 */
.text-slide-in {
  animation: textSlideIn 0.5s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes textSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 定着支援ページリンクのホバーアニメーション */
.teichaku_img{
  transition: all 1s ease-in;
}
.teichaku_img:hover{
  animation: shimmer-and-scale 1.5s infinite ease-in-out forwards;
}

/* @keyframes で「細かく拡大縮小して光る」アニメーションを定義 */
@keyframes shimmer-and-scale {
    0% {
        transform: scale(1);
        filter: brightness(100%); /* 通常の明るさから開始 */
    }
    25% {
        transform: scale(1.03); /* 少し拡大 */
        filter: brightness(120%); /* 少し明るく */
    }
    50% {
        transform: scale(1); /* 元に戻る */
        filter: brightness(100%); /* 元の明るさに戻る */
    }
    75% {
        transform: scale(1.03); /* 再び少し拡大 */
        filter: brightness(120%); /* 再び少し明るく */
    }
    100% {
        transform: scale(1); /* 元に戻る */
        filter: brightness(100%); /* 元の明るさに戻る */
    }
}

/* テキストアニメーション */
.fade-in-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5rem);
  animation: fadeUp 0.5s ease-out forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* リタリコバナー */
.partner-banner{
  text-align: center;
  transition: transform 0.3s ease;
}
.partner-banner:hover{
  transform: scale(1.05);
}

/* SNSアイコン */
.footer-sns {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 1rem;
}

.footer-sns a {
  color: #888; /* デフォルト色（グレー） */
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-sns a:hover {
  transform: scale(1.2);
}

/* 個別のブランドカラー */
.fa-x-twitter {
  color: #111; /* Xの黒 */
}

.fa-instagram {
  color: #e1306c; /* Instagram のピンク */
}

