@charset "UTF-8";
/* ----------------------------
  PC用CSS
---------------------------- */
.pc-only {
  display: block; }

.sp-only {
  display: none; }

.site-header {
  width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  gap: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
  .site-header .header-logo img {
    width: auto;
    height: 70px; }
  .site-header .name p {
    color: #f09e67;
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center; }
    .site-header .name p span {
      color: #f09e67;
      font-size: 1.4rem;
      font-weight: normal;
      text-align: center; }
  .site-header .global-nav ul {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    margin: 0;
    list-style: none; }
    .site-header .global-nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: normal; }
  .site-header .contact-btn a {
    background: #22b573;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.6rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px; }

/* ----------------------------
  SP用CSS（768px以下）
---------------------------- */
/* SPだけ表示制御 */
.pc-only {
  display: block; }

.sp-only {
  display: none; }

@media (max-width: 768px) {
  .pc-only {
    display: none; }

  .sp-only {
    display: block; }

  .site-header {
    width: 100%;
    left: 0;
    transform: none;
    position: fixed;
    top: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    .site-header .header-logo img {
      height: 48px; }
    .site-header .name p {
      font-size: 1.6rem;
      line-height: 1.2;
      margin: 0;
      text-align: center; }
      .site-header .name p span {
        font-size: 1.2rem; }
    .site-header .contact-btn a {
      background: #22b573;
      color: #fff;
      padding: 6px 10px;
      font-size: 1.6rem;
      font-weight: bold;
      text-decoration: none;
      border-radius: 6px; }
    .site-header .menu-toggle {
      background: none;
      border: none;
      padding: 6px;
      width: 40px;
      height: 40px;
      display: grid;
      gap: 6px;
      place-content: center;
      cursor: pointer; }
      .site-header .menu-toggle .menu-bar {
        display: block;
        width: 24px;
        height: 2px;
        background: #f09e67;
        border-radius: 2px; }

  /* スライドメニュー */
  .slide-menu {
    position: fixed;
    inset: 0;
    background: #fdf9f1;
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 100;
    padding: 80px 20px 20px;
    /* ヘッダー分あける */
    overflow-y: auto; }

  .slide-menu.active {
    transform: translateX(0); }

  .slide-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: grid;
    gap: 6px;
    place-content: center;
    background: #f09e67; }
    .slide-close .menu-bar {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px; }

  .slide-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px; }

  .slide-nav a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2); }

  /* メニュー開いてる間スクロール止める */
  body.is-menu-open {
    overflow: hidden; } }

/*# sourceMappingURL=header.css.map */
