/* ==============================================
   components.css  —  ボタン / ヘッダー / フッター
   全ページ共通コンポーネント
============================================== */

/* BUTTONS */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:16px;background:var(--main);color:var(--white);font-family:'Noto Sans JP',sans-serif;font-size:16px;font-weight:700;padding:16px 48px;border-radius:var(--radius-btn);border:none;cursor:pointer;width:322px;height:61px;transition:opacity .2s,transform .1s;white-space:nowrap}
.btn:hover{opacity:.85;transform:translateY(-1px)}
/* 資料ダウンロード：白塗り青枠（ヘッダーの資料請求ボタンと統一） */
.btn--outline{background:#fff;color:var(--main);border:1.5px solid var(--main)}
.btn--outline:hover{background:var(--sub);opacity:1}
.btn--outline svg path,.btn--outline svg rect{fill:var(--main);stroke:var(--main)}
.btn svg{flex-shrink:0}
.btn-wrapper{display:flex;flex-direction:column;align-items:center;gap:12px;width:322px}
.btn-label{font-size:16px;font-weight:700;color:var(--text);text-align:center;white-space:nowrap;display:flex;align-items:center;justify-content:center;gap:8px}
.btn-label .slash{display:inline-block;width:2px;height:18px;background:var(--text);border-radius:1px;font-size:0;line-height:0;color:transparent;flex-shrink:0}
.btn-label .slash:first-child{transform:rotate(-28deg)}
.btn-label .slash:last-child{transform:rotate(28deg)}

/* HEADER */
.header{position:fixed;top:0;left:0;width:100%;height:80px;background:var(--white);z-index:1000;box-shadow:0 1px 4px rgba(0,0,0,.08);display:flex;align-items:center;padding:0 var(--px)}
.header__inner{display:flex;align-items:center;justify-content:space-between;width:100%;max-width:var(--max-w);margin:0 auto}
.header__logo{height:57px;width:auto;object-fit:contain}
.header__right{display:flex;align-items:center;gap:32px}
.header__nav{display:flex;gap:39px;align-items:center}
.header__nav a{font-size:14px;font-weight:400;color:var(--text);transition:color .2s}
.header__nav a:hover{color:var(--main)}
.header__ctas{display:flex;align-items:center;gap:12px}
.header__btn{font-family:'Noto Sans JP',sans-serif;font-size:14px;font-weight:700;width:150px;padding:10px 8px;text-align:center;border-radius:24px;white-space:nowrap;cursor:pointer;border:1.5px solid var(--main);transition:opacity .2s,transform .1s,background .2s}
.header__btn--outline{background:#fff;color:var(--main)}
.header__btn--outline:hover{background:var(--sub)}
.header__btn--solid{background:var(--main);color:#fff}
.header__btn--solid:hover{opacity:.85;transform:translateY(-1px)}
.mobile-menu__ctas{display:none}
.hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px;background:none;border:none}
.hamburger span{width:24px;height:2px;background:var(--text);border-radius:2px;transition:all .3s}
.mobile-menu{display:none;position:fixed;top:80px;left:0;width:100%;background:var(--white);box-shadow:0 4px 12px rgba(0,0,0,.1);z-index:999;flex-direction:column;padding:24px 24px 32px;gap:20px}
.mobile-menu.open{display:flex}
.mobile-menu a{font-size:15px;font-weight:500;color:var(--text);padding:8px 0;border-bottom:1px solid #eee}

/* FOOTER */
footer{background:#EFF5FA}
.footer-nav{border-top:1px solid #D9D9D9;padding:40px var(--px);display:flex;align-items:center;justify-content:space-between}
.footer-brand{display:flex;flex-direction:column;gap:4px}
.footer-brand__tag{font-size:16px;font-weight:400;color:var(--text);line-height:1.5}
.footer-brand__logo{height:75px;width:auto;object-fit:contain}
.footer-links{display:flex;gap:64px}
.footer-links__col{display:flex;flex-direction:column;gap:16px}
.footer-links__col a{font-size:14px;font-weight:400;color:var(--text);line-height:1.5;transition:color .2s}
.footer-links__col a:hover{color:var(--main)}
.footer-bottom{border-top:1px solid #D9D9D9;padding:24px var(--px);display:flex;align-items:center;justify-content:space-between}
.footer-bottom__links{display:flex;gap:53px}
.footer-bottom__links a{font-size:14px;font-weight:400;color:var(--text);white-space:nowrap}
.footer-bottom__copy{font-size:14px;font-weight:400;color:var(--text);white-space:nowrap}
