/* レイアウト構造 */
.container {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* サイドバー */
.sidebar {
  width: 25%;
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  justify-content: flex-start;
}

.sidebar-inner {
  width: 100%;
  margin: 0 auto;
  padding: 56px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

/* ロゴ */
.logo-container {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 258px;
  width: 90%;
  margin: 0;
  padding: 0 15px;
  box-sizing: border-box;
  transition: width 0.3s ease;
}

.logo img {
  width: 100%;
  height: auto;
}

.logo img.sp-logo {
  display: none;
}

/* 営業時間 */
.business-hours {
  text-align: center;
  margin-top: 13px;
  margin-bottom: 60px;
  font-size: 14px;
  line-height: 1.5;
}

/* ナビゲーション */
.nav {
  margin-top: auto;
  width: auto;
  display: flex;
  flex-direction: column;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 29px;
  align-items: flex-start;
}

.nav-item {
  text-align: left;
  margin-bottom: 0;
}

.nav-item a {
  display: block;
  height: 30px;
  display: flex;
  align-items: center;
}

.outlink {
  display: flex;
  align-items: center;
}

.outlink-icon {
  width: 14px;
  height: auto;
  margin-left: 8px;
  margin-bottom: 1px;
  transition: transform 0.3s ease;
}

.nav-item:nth-child(7) a:hover .outlink-icon {
  transform: translateY(-1px);
}

/* メインビジュアル */
.main-visual {
  width: 85%;
  height: 100vh;
  position: relative;
  box-sizing: border-box;
  padding: 56px 0;
}

.main-visual-pc {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

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

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-visual-sp {
  display: none;
  position: relative;
  width: 100%;
  height: 100%;
}

/* キャッチフレーズ */
.main-visual-pc .catchphrase {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 190px;
  z-index: 10;
  transition: all 0.3s ease;
}

.main-visual-sp .catchphrase {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
  width: auto;
  max-width: 190px;
  z-index: 10;
}

/* モバイル要素の非表示 */
.sp-info {
  display: none;
}

.scroll-icon {
  display: none;
}

.home-menu-item {
  display: none;
}

.sns-icons {
  display: none;
}

.sp-only {
  display: none;
}

/* SNSアイコン */
.sns-icon {
  display: block;
  transition: transform 0.3s ease;
}

/* メディアクエリ - PC */
@media screen and (min-width: 835px) {
  .sns-icon:hover {
    transform: translateY(-2px);
  }

  .nav-item:not(.home-menu-item) {
    position: relative;
  }

  .nav-item:not(.home-menu-item) a {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    height: auto;
    min-height: 30px;
  }

  .nav-item:not(.home-menu-item) a::after {
    content: '';
    position: absolute;
    left: -0.5px;
    bottom: 5px;
    width: 100%;
    height: 5px;
    background-image: url('../image/navline.png');
    background-repeat: no-repeat;
    background-size: 0% 4.5px;
    background-position: 0% center;
    opacity: 0;
    transition: background-size 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-item:not(.home-menu-item) a:hover::after {
    background-size: 100% 4.5px;
    background-position: 0% center;
    opacity: 1;
  }

  .hamburger-menu.visible+.nav.active .home-menu-item,
  .hamburger-menu.open+.nav.active .home-menu-item {
    position: relative;
  }

  .hamburger-menu.visible+.nav.active .home-menu-item a,
  .hamburger-menu.open+.nav.active .home-menu-item a {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    height: auto;
    min-height: 30px;
  }

  .hamburger-menu.visible+.nav.active .home-menu-item a::after,
  .hamburger-menu.open+.nav.active .home-menu-item a::after {
    content: '';
    position: absolute;
    left: -0.5px;
    bottom: 5px;
    width: 100%;
    height: 5px;
    background-image: url('../image/navline.png');
    background-repeat: no-repeat;
    background-size: 0% 4.5px;
    background-position: 0% center;
    opacity: 0;
    transition: background-size 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }

  .hamburger-menu.visible+.nav.active .home-menu-item a:hover::after,
  .hamburger-menu.open+.nav.active .home-menu-item a:hover::after {
    background-size: 100% 4.5px;
    background-position: 0% center;
    opacity: 1;
  }

  .nav-list {
    gap: 20px;
  }
}

/* メディアクエリ - SP・タブレット */
@media screen and (max-width: 834px) {
  .sns-icon:hover {
    transform: none;
  }

  .hamburger-menu.open+.nav .sns-icon:hover,
  .nav.active .sns-icon:hover {
    transform: none;
  }
}

/* SNSホバーエフェクト */
.sns-icon:hover {
  transform: translateY(-2px);
}

.sns-icon img {
  display: block;
}

/* ハンバーガーメニュー */
.hamburger-menu {
  display: none;
}

/* あみだ湯についてセクション */
.about-section {
  padding: 84px 0 70px;
  contain-intrinsic-block-size: auto 100px;
}

/* コンテナ */
.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 90%;
  margin: 0 auto;
  position: relative;
}

@media screen and (min-width: 1643px) and (max-width: 1799px) {
  .about-container {
    width: calc(1642px * 0.9);
    margin-left: calc(100vw - 1642px + (1642px * 0.05));
    margin-right: calc(1642px * 0.05);
  }
}

@media screen and (min-width: 1800px) {
  .about-container {
    width: calc(1642px * 0.9);
    margin-left: calc(239.1px + (100vw - 1799px) / 2);
    margin-right: calc(82.1px + (100vw - 1799px) / 2);
  }
}

/* 画像エリア */
.about-image {
  flex-shrink: 0;
  width: 790px;
  min-width: 300px;
}

@media screen and (max-width: 1642px) {
  .about-image {
    margin-left: calc((100vw - 90vw) / -2);
  }
}

@media screen and (min-width: 1643px) {
  .about-image {
    margin-left: calc((1642px * 0.05) * -1);
  }
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* コンテンツラッパー */
.about-content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media screen and (max-width: 1642px) {
  .about-content-wrapper {
    margin-right: 52px;
  }
}

/* タイトル */
.about-title {
  margin-bottom: 23px;
}

.about-title img {
  width: auto;
  height: auto;
  display: block;
}

.about-title .sp-image {
  display: none;
}

/* 赤波線 */
.about-wave {
  margin-bottom: 19px;
}

.about-wave img {
  width: auto;
  height: auto;
  display: block;
}

.about-wave .sp-image {
  display: none;
}

/* 本文 */
.about-text {
  margin-bottom: 40px;
}

.about-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #474646;
  margin-bottom: 26px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* ボタンコンテナ */
.about-button {
  max-width: 412px;
  width: 100%;
}

/* ボタンスタイル */
.about-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  background-color: #3D98C7;
  color: #ffffff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0 19px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  position: relative;
}

@media screen and (min-width: 835px) {
  .about-button a:hover {
    opacity: 0.8;
  }
}

.about-button .button-text {
  flex: 1;
  text-align: center;
}

.about-button .button-arrow {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 19px;
  transition: transform 3s ease;
}

@media screen and (min-width: 835px) {
  .about-button a:hover .button-arrow {
    animation: arrowBounce 1s ease-out;
  }
}

@keyframes arrowBounce {
  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(3px);
  }

  100% {
    transform: translateX(0);
  }
}

/* 館内設備セクション */
.facility-section {
  padding: 70px 0;
}

/* 館内設備タイトル */
.facility-title {
  text-align: center;
  margin-bottom: 23px;
}

.facility-title img {
  width: auto;
  height: auto;
  display: inline-block;
}

.facility-title .sp-image {
  display: none;
}

/* 館内設備波線 */
.facility-wave {
  text-align: center;
  margin-bottom: 26px;
  line-height: 0;
}

.facility-wave img {
  width: auto;
  height: auto;
  display: inline-block;
}

.facility-wave .sp-image {
  display: none;
}

/* 館内設備画像 */
.facility-image {
  margin-bottom: 35px;
  text-align: center;
}

.facility-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 館内設備本文 */
.facility-text {
  margin-bottom: 40px;
}

.facility-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #474646;
  text-align: left;
}

/* 館内設備ボタン */
.facility-button {
  max-width: 412px;
  width: 100%;
  margin: 0 auto;
}

.facility-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  background-color: #3D98C7;
  color: #ffffff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0 19px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  position: relative;
}

@media screen and (min-width: 835px) {
  .facility-button a:hover {
    opacity: 0.8;
  }
}

.facility-button .button-text {
  flex: 1;
  text-align: center;
}

.facility-button .button-arrow {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 19px;
  transition: transform 3s ease;
}

@media screen and (min-width: 835px) {
  .facility-button a:hover .button-arrow {
    animation: arrowBounce 1s ease-out;
  }
}

/* お知らせセクション */
.news-section {
  padding: 70px 0;
}

/* お知らせタイトル */
.news-title {
  text-align: center;
  margin-bottom: 23px;
}

.news-title img {
  width: auto;
  height: auto;
  display: inline-block;
}

.news-title .sp-image {
  display: none;
}

/* お知らせ波線 */
.news-wave {
  text-align: center;
  margin-bottom: 19px;
  line-height: 0;
}

.news-wave img {
  width: auto;
  height: auto;
  display: inline-block;
}

.news-wave .sp-image {
  display: none;
}

/* お知らせ本文 */
.news-text {
  margin-bottom: 24px;
}

.news-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #474646;
  text-align: center;
}

/* SNSカードコンテナ */
.news-sns-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* PC/タブレット用カード */
.sns-card.pc-card {
  display: flex;
}

/* SP用スライダー（デフォルトは非表示） */
.sp-sns-swiper {
  display: none;
}

/* インスタグラムプレースホルダー（PC用） */
.instagram-placeholder {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

/* 個別SNSカード */
.sns-card {
  width: 380px;
  max-width: 100%;
  height: 632px;
  background-color: #E8E8E8;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 34px 38px;
  box-sizing: border-box;
}

/* SNSカードアイコン */
.sns-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  flex-shrink: 0;
}

.sns-card-icon img {
  width: 44px;
  height: 44px;
}

/* SNSカード埋め込みエリア */
.sns-card-embed {
  width: 100%;
  max-width: 313px;
  height: 400px;
  background: #ffffff;
  margin: 0 auto 30px;
  overflow: hidden;
}

/* SNSカードボタン */
.sns-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 312px;
  height: 62px;
  background-color: #ffffff;
  border: 2px solid #3D98C7;
  color: #3D98C7;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0 19px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  position: relative;
}

@media screen and (min-width: 835px) {
  .sns-card-button:hover {
    opacity: 0.8;
  }
}

.sns-card-button span {
  flex: 1;
  text-align: center;
}

.sns-card-button .button-arrow {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 19px;
  transition: transform 3s ease;
}

@media screen and (min-width: 835px) {
  .sns-card-button:hover .button-arrow {
    animation: arrowBounce 1s ease-out;
  }
}

/* 英語テキスト部分 */
.sns-card-button .button-text-en {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

/* PC用Facebookボタンの英語テキスト調整 */
@media screen and (min-width: 481px) {
  .facebook-card .sns-card-button .button-text-en {
    font-weight: 400;
  }
}



/* Facebook埋め込みレスポンシブ対応 */
.sns-card-embed {
  width: 100%;
  max-width: 313px;
  height: 400px;
  background: #ffffff;
  margin: 0 auto 30px;
  overflow: hidden;
  position: relative;
}

/* Facebook Page Plugin の強制リサイズ */
.fb-page,
.fb-page span,
.fb-page span iframe {
  width: 100% !important;
  max-width: 313px !important;
}

.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe {
  width: 100% !important;
  max-width: 313px !important;
}

/* タブレット（834px以下）での調整 */
@media screen and (max-width: 834px) {
  .sns-card {
    padding: 36px 20px 38px;
  }

  .sns-card-embed {
    width: calc(100% - 40px);
    max-width: 313px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* SP（480px以下）での調整 */
@media screen and (max-width: 480px) {
  .sp-sns-swiper .sns-card {
    padding: 25px 20px 0px;
  }

  .sp-sns-swiper .sns-card-embed {
    width: 100%;
    max-width: 313px;
    margin: 0 auto 18px;
  }
}

/* 小さい画面用の追加調整 */
@media screen and (max-width: 380px) {
  .sns-card {
    padding: 25px 15px 0px;
  }

  .sns-card-embed {
    width: 100%;
    max-width: 280px;
  }

  .fb-page,
  .fb_iframe_widget {
    transform: scale(0.9);
    transform-origin: center top;
  }
}



/* Instagram LightWidget スタイル */
.lightwidget-widget {
  width: 100% !important;
  height: 400px !important;
  border: 0 !important;
  overflow: hidden !important;
  display: block;
  /* スクロールバーを非表示 */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

/* Webkit系ブラウザ（Chrome, Safari）のスクロールバー非表示 */
.lightwidget-widget::-webkit-scrollbar {
  display: none;
}

/* PC/タブレットでもInstagramのスクロールを非表示 */
@media screen and (min-width: 481px) {

  /* Instagramウィジェットのスクロール非表示 */
  .instagram-card .lightwidget-widget {
    overflow: hidden !important;
    pointer-events: none !important;
    /* スクロールバーを非表示 */
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
  }

  /* Webkit系ブラウザのスクロールバー非表示 */
  .instagram-card .lightwidget-widget::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  /* Instagramカードにオーバーレイ追加 */
  .instagram-card .sns-card-embed {
    position: relative;
    overflow: hidden !important;
  }

  .instagram-card .sns-card-embed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: all;
  }

  /* Facebookは通常通りスクロール可能 */
  .facebook-card .lightwidget-widget {
    overflow: auto !important;
    pointer-events: auto !important;
  }

  .facebook-card .sns-card-embed::before {
    display: none !important;
  }
}

/* SPでのスクロール制御とスワイプ優先 */
@media screen and (max-width: 480px) {

  /* 埋め込みコンテナ */
  .sns-card-embed {
    overflow: hidden !important;
    position: relative;
    height: 400px;
  }

  /* SP用スライダー内のウィジェット - スクロール非表示 */
  .sp-sns-swiper .lightwidget-widget {
    width: 100% !important;
    height: 400px !important;
    overflow: hidden !important;
    /* スクロールバーを非表示 */
    scrollbar-width: none !important;
    /* Firefox */
    -ms-overflow-style: none !important;
    /* IE/Edge */
  }

  /* Webkit系ブラウザのスクロールバー非表示 */
  .sp-sns-swiper .lightwidget-widget::-webkit-scrollbar {
    display: none !important;
  }

  /* SPのみ：Instagram iframe上でスワイプを有効にするためのオーバーレイ */
  .sp-sns-swiper .instagram-card .sns-card-embed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
  }

  /* SPのみ：Instagram iframe自体のポインターイベント無効化 */
  .sp-sns-swiper .instagram-card .lightwidget-widget {
    pointer-events: none;
  }

  /* Facebookは通常通りスクロール可能 */
  .sp-sns-swiper .facebook-card .sns-card-embed {
    overflow: auto !important;
  }

  /* カード全体のタッチ設定 */
  .sp-sns-swiper .swiper-slide {
    touch-action: pan-y pinch-zoom;
  }
}



/* Instagramボタン青ベタスタイル */
.sns-card-button.instagram-button {
  background-color: #3D98C7;
  border: 2px solid #3D98C7;
  color: #ffffff;
}

.sns-card-button.instagram-button:hover {
  opacity: 0.8;
}

.sns-card-button.instagram-button .button-arrow {
  filter: brightness(0) invert(1);
}



/* 施設情報セクション */
.info-section {
  padding: 70px 0;
}

/* 施設情報タイトル */
.info-title {
  text-align: center;
  margin-bottom: 23px;
}

.info-title img {
  width: auto;
  height: auto;
  display: inline-block;
}

.info-title .sp-image {
  display: none;
}

/* 施設情報波線 */
.info-wave {
  text-align: center;
  margin-bottom: 30px;
  line-height: 0;
}

.info-wave img {
  width: auto;
  height: auto;
  display: inline-block;
}

.info-wave .sp-image {
  display: none;
}

/* 施設情報コンテンツ */
.info-content {
  position: relative;
}

/* 情報グループ */
.info-group {
  border-bottom: 1.5px solid #CDCDCD;
  padding: 20px 0;
}

.info-group:last-child {
  border-bottom: 1.5px solid #CDCDCD;
  padding-bottom: 25px;
}

/* 情報行 */
.info-row {
  display: flex;
  align-items: center;
  gap: 0;
}

/* ラベル（左側） */
.info-label {
  flex: 1;
  min-width: 140px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #474646;
  padding-left: 35px;
}

/* データ（右側） */
.info-data {
  width: 473px;
  flex-shrink: 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  color: #474646;
}

.info-data p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  margin-bottom: 0px;
}

.info-data p:last-child {
  margin-bottom: 0;
}

/* 数値はPoppinsフォント */
.info-data p,
.info-phone span {
  font-family: "Poppins", "Zen Kaku Gothic New", sans-serif;
}

/* 注釈 */
.info-note {
  font-size: 14px !important;
  margin-top: 4px;
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  padding-left: 67px;
}

/* インライン注釈 */
.info-note-inline {
  font-size: 14px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* スペース追加 */
.info-space {
  margin-top: 16px !important;
}

/* 電話番号 */
.info-phone {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 7px !important;
}

.info-phone img {
  width: 16px;
  height: 16px;
}

.info-phone span {
  font-size: 16px;
  line-height: 1;
}

/* 地図コンテナ */
.info-map-container {
  width: 100%;
  margin-top: 60px;
}

/* 地図エリア */
.info-map {
  width: 100%;
  overflow: hidden;
}

.info-map-pc {
  height: 437px;
  display: block;
}

.info-map-sp {
  height: 250px;
  display: none;
}

.info-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* フォトギャラリーセクション */
.gallery-section {
  padding: 70px 0;
  overflow: hidden;
}

/* スクリーンリーダー用の非表示クラス */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* スライダー共通スタイル */
.swiper {
  width: 100%;
  overflow: hidden;
}

/* スライドの動き等速とGPU最適化 */
.swiper-wrapper {
  transition-timing-function: linear;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* フォトギャラリー用スライド */
.gallery-section .swiper-slide {
  width: 421px;
  margin-right: 14px;
}

/* フォトギャラリー画像のサイズ調整 */
.gallery-section .swiper-slide img {
  height: 260px;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* いろいろ募集中セクション */
.recruit-section {
  padding: 70px 0;
}

/* 募集コンテナ */
.recruit-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 43px;
}

/* 募集コンテンツ（左側） */
.recruit-content {
  flex: 1;
  max-width: 373px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* 募集タイトル */
.recruit-title {
  margin-bottom: 23px;
}

.recruit-title img {
  width: auto;
  height: auto;
  display: block;
}

.recruit-title .sp-image {
  display: none;
}

/* 募集波線 */
.recruit-wave {
  margin-bottom: 19px;
}

.recruit-wave img {
  width: auto;
  height: auto;
  display: block;
}

.recruit-wave .sp-image {
  display: none;
}

/* 募集本文 */
.recruit-text {
  margin-bottom: 40px;
}

.recruit-text p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  color: #474646;
  margin-bottom: 26px;
}

.recruit-text p:last-child {
  margin-bottom: 0;
}

/* 募集ボタン */
.recruit-button {
  max-width: 412px;
  width: 100%;
}

.recruit-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 62px;
  background-color: #3D98C7;
  color: #ffffff;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  padding: 0 19px;
  box-sizing: border-box;
  border-radius: 10px;
  transition: opacity 0.3s ease;
  position: relative;
}

@media screen and (min-width: 835px) {
  .recruit-button a:hover {
    opacity: 0.8;
  }
}

.recruit-button .button-text {
  flex: 1;
  text-align: center;
}

.recruit-button .button-arrow {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  position: absolute;
  right: 19px;
  transition: transform 3s ease;
}

@media screen and (min-width: 835px) {
  .recruit-button a:hover .button-arrow {
    animation: arrowBounce 1s ease-out;
  }
}

/* 募集画像（右側） */
.recruit-image {
  flex-shrink: 0;
}

.recruit-image img {
  max-width: 373px;
  height: 100%;
  display: block;
}

/* タブレット以下でインスタボタンのホバー無効化 */
@media screen and (max-width: 834px) {
  .sns-card-button.instagram-button:hover {
    opacity: 1 !important;
  }

  .sns-card-button.instagram-button:hover .button-arrow {
    animation: none !important;
  }
}