/* ===========================================
   common-keiken.css
   中途経験者サイト 共通スタイル
   =========================================== */

:root {
  /* メインカラー(オレンジ) */
  --keiken-color-primary: #F49000;
  --keiken-color-primary-light: #F5AA00;
  /* テキストカラー */
  --keiken-color-text-base: #3E3A39;
  --keiken-color-text-light: #666666;
  /* 背景色 */
  --keiken-color-bg-base: #F5F5F5;
  --keiken-color-bg-white: #FFFFFF;
  --keiken-color-bg-accent: #FFF5E6;
  --keiken-color-border: #E0E0E0;

  --keiken-font-family-base: 'Noto Sans JP', sans-serif;
  --keiken-font-size-sm: 12px;
  --keiken-font-size-md: 16px;
  --keiken-font-size-lg: 24px;
  --keiken-line-height-base: 1.8;
  --keilen-fv-text-lg:45px;
  --keilen-fv-text-md:25px;
  --keilen-fv-text-sm:18px;
  --keilen-fv-text-lg-sp:35px;
  --keilen-fv-text-md-sp:18px;
  --keilen-fv-text-sm-sp:14px;
  

  --keilen-fv-line-height-lg:2.5;
  --keilen-fv-line-height-md:1.5;
  --keilen-fv-line-height-sm:2.1;
  --keilen-fv-line-height-lg-sp:1.9;
  --keilen-fv-line-height-md-sp:2;
  --keilen-fv-line-height-sm-sp:2.5;
  
  --keilen-fv-letter-spacing-lg:0.2em;
  --keilen-fv-letter-spacing-md:0.16em;
  --keilen-fv-letter-spacing-sm:0.16em;
  --keilen-fv-letter-spacing-lg-sp:0.09em;
  --keilen-fv-letter-spacing-md-sp:0.16em;
  --keilen-fv-letter-spacing-sm-sp:0.14em;

  --keiken-container-width: 1120px;
  --keiken-container-padding: 0 40px;
  --keiken-header-height: 100px;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--keiken-font-family-base);
  font-size: var(--keiken-font-size-md);
  line-height: var(--keiken-line-height-base);
  color: var(--keiken-color-text-base);
  background-color: var(--keiken-color-bg-base);
  margin: 0 auto;
}


.keiken_container {
  max-width: var(--keiken-container-width);
  margin: 0 auto;
  padding: var(--keiken-container-padding);
}

/* SP改行用ユーティリティ BP 576px */
.keiken_br_sp {
  display: none;
}

@media screen and (max-width: 576px) {
  .keiken_br_sp {
    display: inline;
  }
}


/* リンククリック時の青枠を消す */ 
/* タブフォーカスごと消してしまうとアクセシビリティに問題があるため、そこは残す */
/* a:focus:not(:focus-visible) {
  box-shadow: none;
  outline: none;
} */

/* 汎用アニメーション　ふわっと出る */
/* ===========================================
   keiken fade animation
   =========================================== */

.keiken_fade {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.keiken_fade.is_visible {
  opacity: 1;
  transform: translateY(0);
}

/* ヘッダー　スタイル */

.keiken_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100px;
  background-color: transparent;
  transition:
    height 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.keiken_header.is_scrolled {
  height: 80px;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}


.keiken_header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 clamp(12px, 2vw, 40px);
}

.keiken_header_logo {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 0.9vw, 18px);
  min-width: 0;
  text-decoration: none;
  flex-shrink: 1;
}

.keiken_header_logo_img {
  display: block;
  width: clamp(120px, 10vw, 220px);
  height: auto;
  flex-shrink: 0;
}

.keiken_header_logo_text {
  font-size: clamp(12px, calc(7px + 0.75vw), 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: var(--keiken-color-text-base);
  white-space: nowrap;
}

.keiken_header_nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.4vw, 50px);
  min-width: 0;
  margin-left: auto;
}

.keiken_header_nav_list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2.4vw, 50px);
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.keiken_header_nav_item {
  line-height: 1;
  flex-shrink: 0;
}

.keiken_header_nav_link {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-size: clamp(14px, calc(8px + 0.45vw), 16px);
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.keiken_header_nav_link:hover {
  color: inherit !important;
}

.keiken_header_nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background-color: var(--keiken-color-primary);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.keiken_header_nav_link:hover::after {
  transform: scaleX(1);
}

.keiken_header_jobs_button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(118px, 8.4vw, 160px);
  height: clamp(48px, 3.2vw, 60px);
  padding: 0 clamp(10px, 1vw, 24px);
  border-radius: 8px;
  background: linear-gradient(90deg, #F49000 0%, #F5AA00 100%);
  color: #fff;
  letter-spacing: 0.05em;
  font-size: clamp(13px, calc(8px + 0.42vw), 16px);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 16px rgba(245, 166, 35, 0.28);
  transition:
    filter 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.keiken_header_jobs_button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245, 154, 0, 0.34);
  color: #fff;
}

/* ===========================================
   keiken header responsive
   BP: 900px
   =========================================== */

.keiken_header_menu_button {
  display: none;
}

.keiken_header_drawer {
  display: none;
}

@media screen and (max-width: 900px) {
 .keiken_header {
  --keiken-sp-header-height: clamp(64px, 8vw, 76px);
  height: var(--keiken-sp-header-height);
  background-color: transparent;
}

.keiken_header.is_scrolled {
  --keiken-sp-header-height: clamp(54px, 7vw, 66px);
  height: var(--keiken-sp-header-height);
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

  .keiken_header_inner {
    padding: 0 0 0 clamp(10px, 3vw, 16px);
  }

  .keiken_header_logo {
    gap: clamp(8px, 2vw, 14px);
    flex-shrink: 0;
  }

  .keiken_header_logo_img {
    width: clamp(150px, 25.64vw, 175px);
  }

  .keiken_header_logo_text {
    font-size: clamp(14px, 2.56vw, 16px);
    letter-spacing: 0.06em;
  }

  .keiken_header_nav {
    display: none;
  }

 .keiken_header_menu_button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
    width: var(--keiken-sp-header-height);
    height: 100%;
    border: 0;
    padding: 0;
  
    background-color: var(--keiken-color-primary);
    cursor: pointer;
    flex-shrink: 0;
 }

  .keiken_header_menu_line {
    display: block;
    width: clamp(28px, 7.18vw, 34px);
    height: 2px;
    background-color: #ffffff;
    border-radius: 999px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  }

  .keiken_header_menu_line + .keiken_header_menu_line {
    margin-top: 6px;
  }

.keiken_header_menu_button.is_open .keiken_header_menu_line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.keiken_header_menu_button.is_open .keiken_header_menu_line:nth-child(2) {
  opacity: 0;
}

.keiken_header_menu_button.is_open .keiken_header_menu_line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.keiken_header_drawer {
  position: fixed;
  top: var(--keiken-sp-header-height);
  left: 0;
  right: 0;
  z-index: 999;

  display: block;
  width: 100%;
  height: calc(100dvh - var(--keiken-sp-header-height));
  overflow: hidden;

  background-color: var(--keiken-color-primary);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    top 0.3s ease,
    height 0.3s ease;
}

.keiken_header.is_scrolled .keiken_header_drawer {
  top: var(--keiken-sp-header-height);
  height: calc(100dvh - var(--keiken-sp-header-height));
}

.keiken_header_drawer.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.keiken_header_drawer_list,
.keiken_header_drawer_jobs {
  transform: translateY(-16px);
  transition: transform 0.3s ease;
}

.keiken_header_drawer.is_open .keiken_header_drawer_list,
.keiken_header_drawer.is_open .keiken_header_drawer_jobs {
  transform: translateY(0);
}

  .keiken_header_drawer_list {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .keiken_header_drawer_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .keiken_header_drawer_item:first-child {
  padding-top: 16px;
  }

  .keiken_header_drawer_link {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: clamp(56px, 10dvh, 76px);
    padding: 0 50px;

    color: #ffffff;
    text-decoration: none;
  }

  .keiken_header_drawer_link:hover {
    color: #ffffff !important;
  }

  .keiken_header_drawer_text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.09em;
    line-height: 1;
  }

  .keiken_header_drawer_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
  }

  .keiken_header_drawer_jobs {
    padding:
      50px 50px clamp(24px, 5dvh, 48px);
  }

  .keiken_header_drawer_jobs_button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 65px;
    border-radius: 8px;

    background-color: var(--keiken-color-text-base);
    color: #ffffff;
    font-size: 16px;
    letter-spacing: 0.08em;
    font-weight: 700;
    text-decoration: none;
  }

  .keiken_header_drawer_jobs_button:hover {
    color: #ffffff !important;
  }


  body.is_keiken_menu_open {
    overflow: hidden;
  }
}

/* ===========================================
   keiken footer
   =========================================== */

.keiken_footer {
  background-color: #3E3A39;
  color: #ffffff;
}

.keiken_footer_inner {
  width: min(1200px, calc(100% - clamp(48px, 8vw, 128px)));
  margin: 0 auto;
  padding: clamp(56px, 6vw, 78px) 0 25px;
}

.keiken_footer_main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 80px);
}

.keiken_footer_brand {
  flex: 0 0 clamp(210px, 20vw, 280px);
}

.keiken_footer_logo {
  display: inline-block;
}

.keiken_footer_logo_img {
  display: block;
  width: clamp(180px, 17vw, 240px);
  height: auto;
  filter: brightness(0) invert(1);
}

.keiken_footer_sns_list {
  display: flex;
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: 30px;
}

.keiken_footer_sns_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(34px, 3.5vw, 44px);
  height: clamp(34px, 3.5vw, 44px);
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #ffffff;
  font-size: clamp(14px, 1.4vw, 18px);
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.keiken_footer_sns_link:hover {
  background-color: var(--keiken-color-primary);
  border-color: var(--keiken-color-primary);
  color: #ffffff;
}

.keiken_footer_sns_icon {
  width: 23px;
  height: 23px;
}

.keiken_footer_nav {
  flex: 1 1 auto;
  min-width: 0;
}

.keiken_footer_nav_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(18px, 3.5vw, 75px);
}

.keiken_footer_nav_item {
  flex: 0 0 auto;
  min-width: 0;
}

.keiken_footer_nav_link {
  display: inline-block;
  color: #ffffff;
  font-size: clamp(13px, 1.05vw, 14px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.keiken_footer_nav_link:hover {
  color: var(--keiken-color-primary);
}

.keiken_footer_subnav_list {
  display: block;
  margin-top: 8px;
}

.keiken_footer_subnav_item + .keiken_footer_subnav_item {
  margin-top: 6px;
}

.keiken_footer_subnav_link {
  position: relative;
  display: inline-block;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(12px, 1vw, 13px);
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.keiken_footer_subnav_link::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
  line-height: 1.5;
}

.keiken_footer_subnav_link:hover {
  color: var(--keiken-color-primary);
}

.keiken_footer_bottom {
  margin-top: clamp(20px, 3vw, 32px);
  padding-top: clamp(18px, 2vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.keiken_footer_link_list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 2.4vw, 36px);
}

.keiken_footer_link_item {
  flex: 0 0 auto;
}

.keiken_footer_link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #F5F7F8;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
}

.keiken_footer_external_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.keiken_footer_link:hover  {
  color: inherit !important;
}
.keiken_footer_link:hover .keiken_footer_external_icon {
  transform: translate(2px, -2px);
}

.keiken_footer_copyright {
  margin-top: clamp(18px, 2.4vw, 32px);
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.133em;
  text-align: center;
}

/* ===========================================
   keiken footer responsive
   BP: 900px
   =========================================== */

@media screen and (max-width: 900px) {
  .keiken_footer {
    height: auto;
  }

  .keiken_footer_inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: unset;
    padding:
      44px
      clamp(30px, 8vw, 72px)
      24px;
  }

  .keiken_footer_main {
    display: contents;
  }

  .keiken_footer_nav {
    order: 1;
  }

  .keiken_footer_nav_list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
  }

  .keiken_footer_nav_item {
    width: 100%;
  }

.keiken_footer_nav_link {
  display: block;
  padding: clamp(10px, 1.6vw, 14px) 0;
  font-size: clamp(16px, calc(10.94px + 0.784vw), 18px);
  line-height: 1.6;
  white-space: nowrap;
  }

  .keiken_footer_subnav_link {
    font-size: clamp(14px, calc(10.47px + 0.392vw), 16px);
    line-height: 1.7;
  }

  .keiken_footer_subnav_list {
    display: block;
    margin-top: 0;
    padding-bottom: 8px;
  }

  .keiken_footer_bottom {
    order: 2;
    margin-top: 20px;
    padding-top: 0;
    border-top: 0;
  }

  .keiken_footer_link_list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

.keiken_footer_link_item {
  width: 100%;
  padding: clamp(10px, 1.6vw, 14px) 0;
  margin-bottom: 0;
}

  .keiken_footer_link_item + .keiken_footer_link_item {
    margin-top: 0;
  }

.keiken_footer_link {
  font-size: clamp(14px, calc(10.47px + 0.392vw), 16px);
  line-height: 1.6;
}

  .keiken_footer_brand {
    order: 3;
    flex: none;
    margin-top: 15px;
  }

  .keiken_footer_logo_img {
    width: clamp(250px, 48vw, 300px);
  }

  .keiken_footer_sns_list {
    gap: 16px;
    margin-top: 28px;
  }

  .keiken_footer_sns_link {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

.keiken_footer_copyright {
  order: 4;
  margin-top: clamp(84px, 8.8vw, 100px);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
}



/* ===========================================
   keiken contact_cta
   =========================================== */

.keiken_contact_cta {
  background-color: #F0F0F1;
}

.keiken_contact_cta_inner {
  max-width: 1920px;
  margin: 0 auto;
  padding: 90px 40px 80px;
  text-align: center;
}

.keiken_contact_cta_title {
  font-size: 30px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #3E3A39;
  line-height: 1.5;
  margin: 0;
}

.keiken_contact_cta_text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #3E3A39;
  line-height: 1.8;
  margin-top: 15px;
}

.keiken_contact_cta_btn_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.keiken_contact_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* gap: 56px; */
  width: 360px;
  height: 65px;
  background-color: var(--keiken-color-primary);
  border-radius: 8px;
  text-decoration: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.keiken_contact_cta_btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.keiken_contact_cta_btn_text {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #ffffff;
}

.keiken_contact_cta_btn_icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  flex-shrink: 0;
}



/* ===========================================
   keiken contact_cta responsive
   BP: 900px
   =========================================== */

@media screen and (max-width: 900px) {
  .keiken_contact_cta_inner {
    padding: 45px 30px;
  }

  .keiken_contact_cta_title {
    font-size: 25px;
  }

  .keiken_contact_cta_text {
    font-size: 14px;
    margin-top: 20px;
  }

  .keiken_contact_cta_btn_wrap {
    margin-top: 32px;
  }

  .keiken_contact_cta_btn {
    width: 330px;
    height: 65px;
  }

  .keiken_contact_cta_btn_text {
    font-size: 18px;
  }
}

/* ===========================================
   keiken entry_cta
   =========================================== */

.keiken_entry_cta {
  position: relative;
  /* height: 380px; */
  background: linear-gradient(135deg, #f39800, #ffae00);
  overflow: hidden;
}

.keiken_entry_cta_bg_img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}



.keiken_entry_cta_inner {
  position: relative;
  z-index: 1;
  max-width: 1920px;
  margin: 0 auto;
  padding: 90px 40px 80px;
  text-align: center;
}

.keiken_entry_cta_title {
  font-size: 30px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.keiken_entry_cta_text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffffff;
  line-height: 1.8;
  margin-top: 15px;
}

.keiken_entry_cta_btn_wrap {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.keiken_entry_cta_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* gap: 12px; */
  width: 360px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.keiken_entry_cta_btn:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.keiken_entry_cta_btn_text {
  font-size: 18px;
  letter-spacing: 0.08em;
  font-weight: bold;
  color: #F49000;
}

.keiken_entry_cta_btn_icon {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid #F49000;
  border-radius: 50%;
  color: #F49000;
  flex-shrink: 0;
}

/* ===========================================
   keiken entry_cta responsive
   BP: 900px
   =========================================== */

@media screen and (max-width: 900px) {
  .keiken_entry_cta_inner {
    padding: 45px 30px;
  }

  .keiken_entry_cta_title {
    font-size: 25px;
  }

  .keiken_entry_cta_text {
    font-size: 14px;
    margin-top: 20px;
  }

  .keiken_entry_cta_btn_wrap {
    margin-top: 32px;
  }

  .keiken_entry_cta_btn {
    width: min(330px, 100%);
    height: 65px;
  }

  .keiken_entry_cta_btn_text {
    font-size: 18px;
  }
}

/* パンくず */
.common_breadcrumb {
    position: relative;
    z-index: 2;
    width: min(1200px, 86%);
    margin: 0 auto;
    padding-top: 30px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    color: #3e3a39;
}

.common_breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.common_breadcrumb a:hover {
  opacity: 0.7;
}

.common_breadcrumb_sep {
    color: #d9c3ad;
    margin: 0 16px;
}


@media screen and (max-width: 900px) {
    .common_breadcrumb {
      display: none;
    }
}
/* ページ上部へ戻るボタン*/
.pagetop-btn {
    position: fixed;
    right: 40px;
    bottom: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, #F49000 0%, #F5AA00 100%);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 899;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* JSで html に is-show が付与されたら表示する */
.pagetop-btn.is-show {
    opacity: 1;
    pointer-events: auto;
}

/* ホバー時のアクション */
.pagetop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 149, 0, 0.3);
}

.pagetop-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.pagetop-btn:hover svg {
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .pagetop-btn {
        display: none;
    }
}