@charset "utf-8";
.site-header {
  background: #fff;
  padding: 10px 0 0;
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 20;
  
  /* 追加: アニメーションの設定 */
  transition: transform 0.4s ease;
}

/* 下方向にスクロールした時に付与するクラス */
.site-header.is-hidden {
  transform: translateY(-100%);
}
.global-nav {
  position: relative;
}

.global-nav::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100vw;
  border-bottom: 1px solid #ddd;
  transform: translateX(-50%);
}

.global-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.global-nav li {
  width: 100px;
  height: 70px;
  position: relative;
}

.global-nav li + li {
  margin-left: 52px;
}

.global-nav li + li::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  width: 1px;
  height: 34px;
  background: #ddd;
  transform: translateY(-50%);
}

.global-nav a {
  width: 100%;
  height: 100%;
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  text-align: center;
}

.nav-en {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.15;
}

.nav-ja {
  display: block;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
}

.site-header-top {
  display: block;
}

.sp-menu-toggle {
  display: none;
}

.site-footer {
  background: #f7dbe2;
  color: #222;
  padding: 40px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  text-align: center;
}

.site-footer h4 {
  margin: 0 0 8px;
  font-size: 13px;
  border-bottom: 1px solid #222;
  padding-bottom: 6px;
}

.site-footer ul {
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 8px;
  font-size: 12px;
}

.footer-lower {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-company {
  max-width: 520px;
}

.footer-address {
  margin-top: 0;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  align-items: start;
}

.footer-address img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.footer-address p {
  margin: 0 0 4px;
  font-size: 13px;
}

.footer-address-info {
  align-self: start;
}

.footer-address-info p {
  font-size: 12px;
  margin: 0;
}

.footer-address-info p:nth-child(2) {
  margin-bottom: 8px;
}

.contact-btn {
  display: flex;
  width: 420px;
  height: 50px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  color: #222;
  border: 1px solid #222;
  margin-top: 12px;
}

.footer-privacy-link {
  display: none;
  margin: 8px 0 0;
  font-size: 12px;
}

.footer-privacy-link a {
  text-decoration: underline;
  display: inline-block;
}

.footer-coop {
  display: flex;
  gap: 12px;
}

.footer-coop img {
  width: 170px;
  height: 110px;
  object-fit: cover;
}

.copyright {
  margin: 24px 0 0;
  text-align: center;
  font-size: 11px;
  color: #222;
}

@media screen and (max-width: 768px) {
  .site-header {
    padding: 0;
    position: fixed;
    left: 0;
    width: 100%;
    top: 0;
    z-index: 50;
    /* background: #efefef; */
  }

  .site-header .inner {
    width: 100%;
    padding: 0;
    position: relative;
  }

  .site-header-top {
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-main {
    width: 244px;
    height: 50px;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .logo-main img {
    width: 100%;
    max-height: 40px;
    height: auto;
    content: url("../images/sp-logo.png");
  }

  .sp-menu-toggle {
    width: 50px;
    height: 50px;
    border: 0;
    background: #be4f68;
    color: #fff;
    display: grid;
    grid-template-rows: 1fr auto;
    place-items: center;
    padding: 6px 4px;
    cursor: pointer;
  }

  .sp-menu-toggle__icon {
    width: 24px;
    height: 18px;
    position: relative;
  }

  .sp-menu-toggle__icon::before,
  .sp-menu-toggle__icon::after,
  .sp-menu-toggle__icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 3px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
  }

  .sp-menu-toggle__icon::before {
    top: 0;
  }

  .sp-menu-toggle__icon span {
    top: 8px;
  }

  .sp-menu-toggle__icon::after {
    top: 16px;
  }

  .sp-menu-toggle__label {
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
  }

  .site-header.is-menu-open .sp-menu-toggle__icon::before {
    top: 8px;
    transform: rotate(45deg);
  }

  .site-header.is-menu-open .sp-menu-toggle__icon span {
    opacity: 0;
  }

  .site-header.is-menu-open .sp-menu-toggle__icon::after {
    top: 8px;
    transform: rotate(-45deg);
  }

  .global-nav::after {
    display: none;
  }

  .global-nav {
    display: none;
    background: var(--brand-pink-dark);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 60;
  }

  .site-header.is-menu-open .global-nav {
    display: block;
  }

  .global-nav ul {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #fff;
  }

  .global-nav li {
    width: 100%;
    height: auto;
  }

  .global-nav li + li {
    margin-left: 0;
  }

  .global-nav li + li::before {
    display: none;
  }

  .global-nav a {
    min-height: 54px;
    padding: 10px;
    border-bottom: 1px solid #fff;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    color: #fff;
  }

  .nav-en {
    display: none;
  }

  .nav-ja {
    display: block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
  }

  .site-footer {
    padding: 28px 0 20px;
  }

  .footer-grid {
    display: none;
  }

  .site-footer h4 {
    margin-bottom: 4px;
  }

  .site-footer li {
    margin-bottom: 4px;
    font-size: 11px;
  }

  .footer-lower {
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-address {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-address img {
    width: min(170px, 100%);
  }

  .footer-address p,
  .footer-address-info p {
    font-size: 11px;
  }

  .contact-btn {
    width: 100%;
    height: 42px;
    margin-top: 10px;
    font-size: 12px;
  }

  .footer-privacy-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
  }

  .footer-privacy-link a {
    padding: 6px 10px;
  }

  .footer-coop {
    gap: 8px;
    justify-content: center;
  }

  .footer-coop img {
    width: 100%;
    max-width: 140px;
    height: auto;
  }
}

#PCmode {
  display: block;
}
#SPmode {
  display: none;
}
@media screen and (max-width:768px) {
  #PCmode {
      display: none;
  }
  #SPmode {
      display: block;
  }
}
/* SPnav -----------------------------------------------------------------------*/
.p-header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1); /* 下方向のシャドウ */
}

.p-header__inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  height: inherit;
  position: relative;
}
.p-header__title {
  z-index: 997;
}
.p-header__title a {
  text-decoration: none;
  color: #FFFFFF;
}
.p-header__nav {
  position: absolute;
  left: 0; /* ← ここを変更 */
  top: 0;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  transform: translateX(-100%); /* ← ここを変更 */
  background-color: rgb(253,173,35);
  transition: ease .4s;
  z-index: 999;
}
.p-header__nav.active {
  transform: translateX(0);
}
/* .p-header-title a img {
  height: 50px;
  width: auto;
} */
.p-header__nav-items {
  padding-top: 200px;
}
.p-header__nav-item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
/* .p-header__nav-item a {
  color: #FFFFFF;
  display: inline-block;
  text-align: center;
  margin-bottom: 24px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
} */
.p-header__nav-item:last-child a {
  margin-bottom: 0;
}

.p-header__hamburger {
  /* width: 24px; */
  width: 40px;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
}
.hamburger span {
  width: 36px;
  height: 3px;
  /* width: 24px; */
  /* height: 1px; */
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  /* margin: 8px 0; */
  margin: 10px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.p-header__nav.active {
  transform: translateX(0);
}
/* .hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
} */
 /* ☓マークに変化するときの調整 */
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}

.hamburger.active span:nth-child(2) {
  opacity: 0; /* 中央のバーを消す */
}

.hamburger.active span:nth-child(3) {
  top: -17px;
  transform: rotate(-45deg);
  background-color: #FFFFFF;
}
.p-header__nav-box-mask.active {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: rgba(0,0,0,0.55);
  transition: ease .4s;
}
.logo {
  width: 200px;
  margin-left: 30px;
}
.logo img {
  width: 200px;
  height: auto;
}

/*リストのレイアウト設定*/
  /*ナビゲーション*/
#js-nav ul {
  width: 100%;
  max-width: 300px;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  box-sizing: border-box;
}
#js-nav li{
  list-style: none;
    text-align: center; 
    box-sizing: border-box;
}
#js-nav li a{
  /* color: #333; */
  text-decoration: none;
  /* height: 50px; */
  padding:10px;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  text-transform: uppercase;
  letter-spacing: 0px;
  font-weight: bold;
  box-sizing: border-box;
}
.nav_logo {
  height: 45px;
  display: flex;
  justify-content: end;
  align-items: end;
}
.nav_logo img{
  width: 100px;
  height: auto;
}
.botline_out {
  position: relative;
  width: 60%;
  display: flex;
  align-items: center;
  border-bottom: 0.5px solid #fff;
}
.vew_acce {
  position: absolute;
  bottom: 2px;
  right: 0;
  font-size: 12px;
  white-space: nowrap;
  padding: 2px 5px;
  color: rgb(253, 173, 35);
  background-color: #fff;
}
.header-icon {
  position:fixed;
  top:10px;
  right: 10px;
  width: 50px;
  height:50px;
}
@media screen and (max-width:768px) {
  .hamburger span {
    width: 28px;
    height: 2px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 8px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  .hamburger.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -10px;
  transform: rotate(-45deg);
}
}
