
@charset "utf-8";
:root {

  /* Colors: */
  --color-e2e2e2: #E2E2E2;
  --color-00afca: #00AFCA;
  --color-00beba: #00BEBA;
  --color-fee004: #FEE004;
  --color-faf7e5: #FAF7E5;
  --color-e5f0fa: #E5F0FA;
  --color-ffee26: #FFEE26;
  --color-d50008: #D50008;
  --color-00bcd5: #00BCD5;
  --color-707070: #707070;
  --color-f2f2f2: #F2F2F2;
  --color-de9100: #DE9100;
  --color-0093d5: #0093D5;
  --color-777777: #777777;
  --color-0062d5: #0062D5;
  --color-cccccc: #CCCCCC;
  --color-ffffff: #FFFFFF;
  --color-fcfcfc: #FCFCFC;
  --color-aaaaaa: #AAAAAA;
  --color-2e2e2e: #2E2E2E;
  
  /* Font/text values */
  --font-family-Cormorant-Infant: "Cormorant Infant", serif;
  --font-family-shippori-mincho: "Shippori Mincho", serif;
  --font-style-normal: normal;
  --font-weight-normal: normal;
  --font-size-16: 16px;
  --character-spacing-0: 0px;
  --line-spacing-35: 35px;
}
  
/* Character Styles */
.cormorant-infant-regular {
  font-family: "Cormorant Infant", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

/************************
 * form elements
 ************************/
input[type="checkbox"],
input[type="radio"] {
  accent-color: #171717;
}

input[disabled] {
  background-color: #f2f2f2;
  cursor: not-allowed;
  color: #aaaaaa;
}


/************************
 * colors
 ************************/
 .blue {
    color: #0093D5;
 }
 .red {
    color: #D50008;
 }



/************************
 * fonts
 ************************/
.fb {
  font-weight: bold;
}
.fs0 {
  font-size: 0;
}
.fs50 {
  font-size: 0.5em;
}
.fs120 {
  font-size: 1.2em;
}
.fs150 {
  font-size: 1.5em;
}
.fs200 {
  font-size: 2em;
}
.fs600 {
  font-size: 6em;
}


/************************
 * margin/padding
 ************************/
/* margin */
.mt05em {
  margin-top: 0.5em !important;
}
.mt1em {
  margin-top: 1em !important;
}
.mt2em {
  margin-top: 2em !important;
}
.mt3em {
  margin-top: 3em !important;
}
.mb05em {
  margin-bottom: 0.5em !important;
}
.mb1em {
  margin-bottom: 1em !important;
}
.mb2em {
  margin-bottom: 2em !important;
}
.mb3em {
  margin-bottom: 3em !important;
}
.mb4em {
  margin-bottom: 4em !important;
}
.mb5em {
  margin-bottom: 5em !important;
}
.mb6em {
  margin-bottom: 6em !important;
}
.mb7em {
  margin-bottom: 7em !important;
}
.mb10em {
  margin-bottom: 10em !important;
}
/* padding */
.pt05em {
  padding-top: 0.5em !important;
}
.pt1em {
  padding-top: 1em !important;
}
.pt2em {
  padding-top: 2em !important;
}
.pt3em {
  padding-top: 3em !important;
}
.pt4em {
  padding-top: 4em !important;
}
.pt5em {
  padding-top: 5em !important;
}
.pb05em {
  padding-bottom: 0.5em !important;
}
.pb1em {
  padding-bottom: 1em !important;
}
.pb2em {
  padding-bottom: 2em !important;
}
.pb3em {
  padding-bottom: 3em !important;
}



/************************
 * アイコン関連
 ************************/
/* フリーダイヤルアイコン */
.freedial-icon {
    width: auto;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}


/* ========================================
   Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family-shippori-mincho);
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 1.6;
    color: #171717;
    background-color: #EBEBEB;
    text-align: justify;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
}

a {
    color: #171717;
}

/* ========================================
   Header Styles
======================================== */
.header {
    padding: 50px 0 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* モバイルメニューが開いている時、元画面の.headerをoverlayより下に */
body.is-open .header {
    z-index: 998;
}

/* ただし、nav-wrapper.mobile-activeとmobile-headerはoverlayより上に */
body.is-open .nav-wrapper.mobile-active {
    z-index: 1000;
}

body.is-open .mobile-header.active {
    z-index: 1002;
    width: 90%;
}

body.is-open .mobile-header.active::before {
    z-index: 1001;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #171717;
    border-bottom: 1px solid #171717;
    padding: 20px 0;
    margin-bottom: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    flex: 1;
}

.header-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.header-nav .nav-list li {
    position: relative;
}

.header-nav .nav-list li a {
    text-decoration: none;
    color: #171717;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.header-nav .nav-list li a:hover {
    opacity: 0.7;
}

/* ドロップダウンメニュー */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    color: #171717 !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.dropdown-toggle:hover {
    color: #666;
}

.dropdown-toggle::after {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #D6D4D4;
    min-width: 200px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 1px solid #171717;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 20px 15px;
    color: #171717;
    text-decoration: none;
    font-size: 16px;
    text-transform: none;
    letter-spacing: normal;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid;
}

.dropdown-menu li a:hover {
    color: #171717;
}

/* Site Logo for Sub Pages */
.site-logo {
    flex-shrink: 0;
    margin-right: 40px;
}

.site-logo-link {
    text-decoration: none;
}

.site-logo-text {
    font-family: var(--font-family-Cormorant-Infant);
    font-size: 24px;
    font-weight: 600;
    color: #171717;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-logo-text em {
    font-style: italic;
    font-weight: 400;
}

.site-logo-link:hover .site-logo-text {
    color: #666;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-info {
    font-size: 13px;
    line-height: 1.4;
    text-align: right;
}

.header-info span {
    display: block;
}

.header-info span a{
    text-decoration: none;
    color: #171717;
}

.mypage-btn {
    color: #171717;
    border: 1px solid #171717;
    padding: 8px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.mypage-btn:hover {
    background-color: #171717;
    color: #fff;
}

/* ========================================
   Hamburger Menu Styles
======================================== */
.header-extra {
  display: none;
}
.hamburger-btn {
    display: none !important;
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    margin-left: auto;
    margin-right: 10px;
}

.hamburger-line {
    width: 24px;
    height: 1px;
    background-color: #171717;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* モバイルメニューオーバーレイ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* モバイルナビゲーション */
.nav-wrapper.mobile-active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #D6D4D4;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    opacity: 0.98;
}

.nav-wrapper.mobile-active.show {
    transform: translateX(0);
}

.nav-wrapper.mobile-active .nav-list {
    display: flex;
    flex-direction: column;
    padding: 130px 0 100px;
    list-style: none;
    height: 100vh;
    overflow-y: auto;
    width: 90%;
    margin: 0 auto;
}

.nav-wrapper.mobile-active .nav-list li:last-child {
    border-bottom: none;
}

.nav-wrapper.mobile-active .nav-list li a {
    font-size: 18px;
    color: #171717;
    display: block;
    padding: 10px 0;
}

/* モバイルメニュー内のドロップダウン */
.nav-wrapper.mobile-active .dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 20px;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-wrapper.mobile-active .dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 200px;
    margin-top: 20px;
}

.nav-wrapper.mobile-active .dropdown-menu li a {
    font-size: 14px;
    color: #171717;
    padding: 8px 0;
}

.nav-wrapper.mobile-active .dropdown-toggle::after {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-wrapper.mobile-active .dropdown.active .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* モバイルメニュー内のマイページリンクスタイル */
.nav-wrapper.mobile-active .mypage-nav-item .mypage-link {
    background-color: #fff;
    color: #171717;
    border: 1px solid #171717;
    padding: 12px 20px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.nav-wrapper.mobile-active .mypage-nav-item .mypage-link:hover {
    background-color: #171717;
    color: #fff;
}

/* モバイルメニュー内のタイトル */
.mobile-title {
    display: none;
}

.mobile-header {
    display: none;
}

.mobile-header.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    width: 95%;
    margin: 0 auto;
    padding: 15px 0px;
    z-index: 1002;
    border-top: 1px solid #171717;
    border-bottom: 1px solid #171717;
    background-color: #D6D4D4;
    height: 56px;
}

/* mobile-headerの上部の隙間を埋める */
.mobile-header.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background-color: #D6D4D4;
    z-index: 1001;
}

.mobile-header.active .hamburger-btn {
    position: relative;
    z-index: 1003;
    margin: 0;
    display: flex !important;
    margin-right: 10px;
}

/* モバイルメニュー内でのハンバーガーボタン調整 */
.hamburger-btn.active {
    position: relative;
    z-index: 1003;
    margin: 0;
    display: flex;
    margin-right: 10px;
}

/* mobile-header内でのハンバーガーボタン表示確保 */
.mobile-header .hamburger-btn {
    display: flex !important;
}

.mobile-title-text {
    font-family: var(--font-family-Cormorant-Infant);
    font-size: 20px;
    font-weight: 600;
    color: #171717;
    letter-spacing: 1px;
    text-decoration: none;
}

.mobile-title-text em {
    font-style: italic;
    font-weight: 600;
}

/* モバイルメニューのパディング調整 */
.nav-wrapper.mobile-active .nav-list {
    padding-top: 120px;
}

.nav-wrapper.mobile-active .mobile-title {
    display: none;
}

/* デスクトップでのマイページナビ項目を非表示 */
.mypage-nav-item {
    display: none;
}


/* ========================================
   Footer Styles
======================================== */
.footer {
    color: #171717;
    padding: 0 0px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #171717;
    border-bottom: 1px solid #171717;
}

.footer-nav-list {
    display: flex;
    list-style: none;
    gap: 45px;
    flex-wrap: wrap;
}

.footer-nav-list li a {
    color: #171717;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    opacity: 0.7;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-link {
    color: #171717;
    font-size: 25px;
    transition: color 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    padding: 30px 0 0;
    text-align: center;
}

.footer-copyright {
    font-size: 10px;
    color: #171717;
}

/* ========================================
   Responsive Design
======================================== */

/* Large desktops and MacBook Pro (1920px and above) */
@media (min-width: 1920px) {
    .container {
        max-width: 1320px;
    }
    
    .header {
        padding: 60px 0 20px 0;
    }
    
    .header-nav .nav-list {
        gap: 50px;
    }
    
    .header-nav .nav-list li a {
        font-size: 16px;
    }
    
    .header-info {
        font-size: 14px;
    }
    
    .mypage-btn {
        padding: 8px 20px;
        font-size: 15px;
    }
}

/* MacBook Pro 16-inch and similar (1680px and above) */
@media (min-width: 1680px) {
    .container {
        max-width: 1320px;
    }
    
    .header {
        padding: 55px 0 18px 0;
    }
    
    .header-nav .nav-list {
        gap: 45px;
    }
    
    .header-nav .nav-list li a {
        font-size: 15px;
    }
    
    .header-info {
        font-size: 13px;
    }
}

/* MacBook Pro 14-inch and similar (1440px to 1679px) */
@media (min-width: 1440px) and (max-width: 1679px) {
    .container {
        max-width: 1320px;
    }
    
    .header {
        padding: 50px 0 16px 0;
    }
    
    .header-nav .nav-list {
        gap: 40px;
    }
    
    .header-nav .nav-list li a {
        font-size: 15px;
    }
    
    .header-info {
        font-size: 13px;
    }
}

/* Standard MacBook Pro and laptops (1280px to 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }
    
    .header {
        padding: 45px 0 15px 0;
    }
    
    .header-nav .nav-list {
        gap: 35px;
    }
    
    .header-info {
        font-size: 12px;
    }
}
/* Small laptops and large tablets (1279px and below) */
@media (max-width: 1279px) {
    .container {
        width: 90%;
        max-width: unset;
        padding: 0;
    }

    .main-content {
        width: 90%;
    }

    .main-content .container {
        margin: 0;
        width: 100%;
        max-width: unset;
    }

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

}

/* Large tablets and small desktops (1024px and below) */
@media (max-width: 1024px) {
    .header {
        padding: 40px 0 15px 0;
    }
    
    .header-nav .nav-list {
        gap: 30px;
    }
    
    .header-info {
        font-size: 12px;
    }

  .footer-nav-list {
      gap: 15px;
  }
  .footer-nav-list li a {
      font-size: 12px;
  }
}

/* Desktop (961px and above) - ハンバーガーボタン確実に非表示 */
@media (min-width: 961px) {
    .header {
        position: absolute;
    }
    .hamburger-btn {
        display: none !important;
    }
    .mobile-header-logo{
        display: none;
    }
}

/* Tablets (960px and below) */
@media (max-width: 960px) {
    .container {
        padding: 0px;
        width: 100%;
        max-width: unset;
    }
    
    .header {
        padding: 30px 0 0;
        background: #EBEBEB;
        width: 90%;
        margin: 0 auto;
    }
    
    .header-content {
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
        height: 56px;
    }

    .mobile-header-logo{
        display: block;
    }

    .mobile-header.active {
        top: 29px;
    }

    .mobile-header.active::before {
        height: 29px;
    }
    
    /* サブページ用サイトロゴを非表示（モバイルは mobile-header を使用） */
    .site-logo {
        display: none;
    }
    
    /* ハンバーガーメニューを表示 */
    .hamburger-btn {
        display: flex !important;
    }

    /* 通常のナビゲーションとheader-extraを非表示 */
    .header-nav .nav-wrapper:not(.mobile-active) {
        display: none;
    }

    .header-nav .nav-wrapper .dropdown {
        padding: 10px 0;
    }

    .header-nav .nav-wrapper.mobile-active .nav-list {
        gap: 20px;
    }

    .nav-wrapper.mobile-active .nav-list li .dropdown-toggle {
        font-size: 18px;
    }

    .nav-wrapper.mobile-active .dropdown-menu{
        border: none;
    }
    
    .nav-wrapper.mobile-active .dropdown-menu li:not(:last-child) a{
        border: none;
    }
    
    .header-extra:not(.mobile-active) {
        display: none;
    }
    
    /* モバイルメニュー内でのheader-extra表示 */
    .header-extra.mobile-active {
        display: block;
        margin-top: 15px;
        padding-top: 20px;
        border-top: 1px solid #171717;
    }
    
    .header-nav .header-extra.mobile-active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding-top: 20px;
        padding-bottom: 20px;
        height: auto;
    }
    
    .header-extra.mobile-active .nav-list li a {
        font-size: 14px;
        color: #171717;
        padding: 8px 0;
        display: block;
    }
    
    .header-extra.mobile-active .header-social {
        justify-content: flex-start;
        gap: 10px;
        display: flex;
        align-items: center;
    }
    
    .header-extra.mobile-active .header-social .social-link {
        font-size: 33px;
        color: #171717;
        padding-right: 10px;
        text-decoration: none;
    }
    
    /* デスクトップのマイページボタンを非表示 */
    .header-right {
        display: none;
    }

    .header-extra.mobile-active .nav-list li a {
        font-size: 15px;
    }

    /* モバイルメニュー内のマイページを表示 */
    .nav-wrapper.mobile-active .mypage-nav-item {
        display: block;
    }
    
    .header-nav {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: flex-end;
    }

    .header-nav.header-sub-page{
        justify-content: space-between;
    }
    
    .header-info {
        font-size: 11px;
    }
    
    .mypage-btn {
        padding: 6px 15px;
        font-size: 13px;
    }

    .dropdown-menu li a {
        border-bottom: none;
    }

    .footer{
        padding: 0 0 30px;
        width: 90%;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 25px;
        padding: 13px 0;
        height: 56px;
    }

    .footer-nav {
      display: none;
    }
    
    .footer-nav-list {
        justify-content: center;
        gap: 30px;
    }
    
    .footer-nav-list li a {
        font-size: 12px;
    }
    
    .social-link {
        font-size: 25px;
        display: flex;
        text-decoration:none;
    }
}

/* Mobile landscape (640px and below) */
@media (max-width: 640px) {
    .container {
        padding: 0px;
    }
    
    .header {
        padding: 15px 0 0 0;
    }
    
    .header-content {
        gap: 12px;
        padding: 12px 0;
    }
    
    .header-nav .nav-list {
        gap: 10px;
    }
    
    .header-nav .nav-list li a,
    .header-nav .nav-list li .dropdown-toggle {
        font-size: 20px;
        letter-spacing: 0.5px;
    }
    
    .header-info {
        font-size: 10px;
        line-height: 1.3;
    }
    
    .mypage-btn {
        padding: 5px 12px;
        font-size: 12px;
    }
    
    .footer-nav-list {
        gap: 25px;
    }
    
    .footer-nav-list li a {
        font-size: 11px;
    }
    
    .social-link {
        font-size: 30px;
    }

    .mobile-header.active {
        top: 15px;
    }
    
    .mobile-header.active::before {
        height: 15px;
    }
}

/* Mobile portrait (480px and below) */
@media (max-width: 480px) {
    .header {
        padding: 15px 0 0 0;
        width: 95%;
    }
    
    .header-content {
        gap: 10px;
        padding: 10px 0;
        height: 40px;
    }
    
    /* モバイルナビゲーションの調整 */
    .nav-wrapper.mobile-active {
        width: 100%;
    }

    .header-nav .header-extra.mobile-active .nav-list {
        padding-top: 0;
    }

    .header-nav .nav-wrapper.mobile-active > .nav-list {
        padding: 70px 0 80px;
        height: 100vh;
        overflow-y: auto;
        width: 95%;
        gap: 5px;
    }

    .header-nav .header-extra.mobile-active .header-social .social-link {
        font-size: 29px;
    }

    .header-nav .nav-wrapper.mobile-active .nav-list li a,
    .header-nav .nav-wrapper.mobile-active .nav-list li .dropdown-toggle {
        font-size: 14px;
    }

    .header-nav .nav-wrapper.mobile-active .nav-list li .dropdown-menu a {
        font-size: 13px;
    }

    .header-nav .header-extra.mobile-active .nav-list li a {
        font-size: 12px;
    }

    /* モバイルメニュー内のマイページボタン調整 */
    .nav-wrapper.mobile-active .mypage-nav-item .mypage-link {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    /* モバイルヘッダーのサイズ調整 */
    body.is-open .mobile-header.active {
        padding: 15px 0px;
        top: 15px;
        width: 95%;
        height: 40px;
    }

    .mobile-header.active::before {
        height: 15px;
    }

    .mobile-title-text {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
    
    /* ハンバーガーボタンのサイズ調整も同期 */
    .hamburger-btn.active {
        width: 20px;
        height: 20px;
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .hamburger-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-content{
        width: 95%;
    }
    
    .header-info {
        font-size: 9px;
        line-height: 1.2;
    }
    
    .mypage-btn {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .footer {
        padding: 0 0 15px;
        width: 95%;
    }
    
    .footer-content {
        gap: 20px;
        padding: 8px 0;
        height: 40px;
    }
    
    .footer-nav-list {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .footer-nav-list li a {
        font-size: 10px;
    }
    
    .footer-social {
        gap: 15px;
    }
    
    .social-link {
        font-size: 24px;
    }
    
    .footer-bottom {
        padding: 15px 0 0 0;
    }
    
    .footer-copyright {
        font-size: 9px;
    }
}

/* Small mobile (375px and below) */
@media (max-width: 375px) {
    .header-nav .nav-list {
        gap: 5px;
    }
    
    .header-nav .nav-list li a,
    .header-nav .nav-list li .dropdown-toggle {
        font-size: 20px;
    }
    
    /* さらに小さなモバイルヘッダー調整 */
    .mobile-header.active {
        padding: 12px 0px;
        top: 15px;
    }

    .mobile-header.active::before {
        height: 15px;
    }

    .mobile-title-text {
        font-size: 16px;
        letter-spacing: 0px;
    }
    
    /* 小さなハンバーガーボタン調整 */
    .hamburger-btn.active {
        width: 18px;
        height: 18px;
    }
    
    .hamburger-btn.active .hamburger-line {
        width: 18px;
        height: 1px;
    }
    
    .header-info {
        font-size: 8px;
    }
    
    .mypage-btn {
        padding: 3px 8px;
        font-size: 10px;
    }
    
    .footer-nav-list {
        gap: 12px;
    }
    
    .footer-nav-list li a {
        font-size: 9px;
    }
    
    .social-link {
        font-size: 22px;
    }
}

/* ========================================
   Page-specific Styles
======================================== */

/* Single recruitment page - hide header-info */
.single-recruitment .header-info,
.single-news .header-info {
    display: none;
}

/* ========================================
   パンくずリスト用のCSS
======================================== */
.breadcrumb {
    padding: 10px 0 0;
    margin-bottom: 60px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 8px;
    color: #999;
    font-size: 12px;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #171717;
    text-decoration: underline;
}

.breadcrumb-item.current .breadcrumb-current {
    color: #171717;
    font-weight: 500;
}

.breadcrumb-icon {
    margin-right: 4px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 8px 0;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-list {
        font-size: 12px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin: 0 4px;
    }
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge { visibility: hidden; }