@charset "utf-8";

#PCmode {
    display: block;
}
#SPmode {
  display: none;
}
/* .p-header__hamburger {
  display: none;
} */
@media screen and (max-width:768px) {
  #PCmode {
      display: none;
  }
  #SPmode {
      display: block;
  }
  /* .p-header__hamburger {
    display: block;
  } */
}
/* SPnav -----------------------------------------------------------------------*/
.p-header {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 97;
}
.Sub-page.p-header {
  position: fixed;
  top: 0;
}
.main-vew-dummy {
    position: relative;
    z-index: -99;
    max-width: 1920px;
    width: 100%;
    height: auto;
    aspect-ratio: 1920 / 695;
}

.p-header__inner {
    /* max-width: 1920px; */
    width: 100%;
    position: relative;
    z-index: 95;
    height: 90px;
    padding: 10px 20px;
    box-sizing: border-box;
    display: flex!important;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.p-header__inner.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.headmenu ul {
    display: flex;
    gap: 40px;
}
.p-header__title {
  position: absolute;
  /* top: 0px; */
  left: 20px;
  opacity: 0;
  transform: translateY(-40px); /* 上に隠しておく */
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding: 10px;
  box-sizing: border-box;
}
.Sub-p-header__title {
  position: absolute;
  left: 20px;
  padding: 10px 0;
  box-sizing: border-box;
}
.p-header__inner.is-fixed .p-header__title {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻る */
}

.headmenu ul {
    display: flex;
    gap: 40px;
}
.headmenu ul li:nth-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 30px;
  box-sizing: border-box;
  border-radius: 30px;
  color: #fff;
  background-color: #333;
}
.headmenu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px 6px;
  box-sizing: border-box;
  border-radius: 30px;
  transition: background-color 0.3s;
}
.headmenu ul li a:hover {
  background-color: #a3e0c2;
}
.nav-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px ;
  box-sizing: border-box;
}
.nav-header div img {
  height: 60px;
}
@media screen and (max-width:480px) {
  .nav-header-copy {
    display: none;
  }
}
.nav-facebook {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.fb-page {
  max-width: 400px;
  width: 100%;
  max-height: 600px;
  height: 100%;
}
.nav-footer {
  /* position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%); */
  /* max-width: 420px; */
  width: 100%;
  margin: 80px auto 0px;
  padding: 30px;
  box-sizing: border-box;
  line-height: 1.7;
}
@media screen and (max-width: 1400px) {
  .headmenu ul {
      display: flex;
      gap: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .headmenu {
    display: none;
  }
}
.p-header__title a {
  text-decoration: none;
  color: #FFFFFF;
}
.p-header__nav {
  position: fixed;
  z-index: 9998;
  right: 0;
  top: 0;
  width: 100%;
  max-width: 520px;
  height: 100vh;
  transform: translateX(100%); /* ← 右の外に隠す */
  /* background-color: #116e59; */
    background-color: #333;
  color: #fff;
  transition: transform .4s ease;
  overflow-y: auto;
  overflow-x: hidden;
}
/* スクロールバーのスタイル調整（オプション） */
.p-header__nav.nav::-webkit-scrollbar {
    width: 6px;
}
.p-header__nav.nav::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.p-header__nav.nav::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}
.p-header__nav.nav::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.p-header__nav.active {
  transform: translateX(0);
}

.p-header__nav-items {
  padding-top: 200px;
}
.p-header__nav-item {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.p-header__nav-item:last-child a {
  margin-bottom: 0;
}
.hamburger {
  position: fixed;
  top: 10px;
  right: 20px;
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
  cursor: pointer;
  /* background-color: #116e59; */
    background-color: #333;
  width: 70px;
  height: 70px;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hamburger span {
  width: 30px;
  height: 3px;
  background-color: #fff;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 9px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
.p-header__nav.active {
  transform: translateX(0);
}
 /* ☓マークに変化するときの調整 */
.hamburger.active span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
  background-color: #fff;
}

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

.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
  background-color: #fff;
}
.p-header__nav-box-mask.active {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100vh;
    z-index: 100;
    background: rgba(0,0,0,0.55);
    /* transition: ease .4s; */
}
/* .logo {
  width: 200px;
} */
.logo img {
    height: 70%;
    max-height: 65px;
    width: auto;
}

/*リストのレイアウト設定*/
  /*ナビゲーション*/
#js-nav ul {
  width: 100%;
  max-width: 420px;
  margin: 80px auto;
  padding: 0 10px;
  /*ナビゲーション天地中央揃え*/
  /* 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 0 25px 20px;
  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;
  box-sizing: border-box;
  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) {
  .nav-facebook {
    display: block;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  .nav-facebook .fb_iframe_widget,
  .nav-facebook .fb-page {
    display: inline-block !important;
  }
  .nav-facebook .fb-page,
  .nav-facebook .fb_iframe_widget span,
  .nav-facebook .fb-page > span,
  .nav-facebook .fb-page iframe {
    display: block !important;
    margin: 0 auto !important;
  }
  .p-header {
    background-color: #fff;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.1); /* 下方向のシャドウ */
  }
  .p-header__title,
  .Sub-p-header__title {
    width: 100px;
  }
  /* .logo {
      width: 100px;
      margin-left: 0px;
  } */
    .hamburger {
        top: 17px;
        width: 56px;
        height: 56px;
        padding: 16px;
    }
  .hamburger span {
    width: 20px;
    height: 2px;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    margin: 6px 0;
  }
  .hamburger span:nth-child(3) {
    top: 0;
  }
  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    top: -8px;
    transform: rotate(-45deg);
  }
.headmenu {
  display: none;
}
#SPmode.main-vew {
    position: relative;
    z-index: 1;
}
.SP-main-vew-dummy {
    position: relative;
    z-index: -1; /* または削除 */
    max-width: 768px;
    width: 100%;
    height: 100vh;
}
}
/* フッター *//* フッター *//* フッター *//* フッター *//* フッター *//* フッター */
#footer {
  width: 100%;
}
/* フッター上部 */
.footer-top {
  width: 100%;
  background-color: #3d3d3d;
  padding: 40px 0;
  box-sizing: border-box;
}

.footer-top-inner {
  max-width: 1400px;
  width: 100%;
  height: 80px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  gap: 40px;
}

.footer-logo {
  height: 100%;
  width: auto;
}
.footer-logo img {
  height: 100%;
  width: auto;
}

.footer-company-name {
  height: 100%;
  width: auto;
}
.footer-company-name img {
  height: 100%;
  width: auto;
}

/* フッター下部 */
.footer-bottom {
  width: 100%;
  background-color: #2b2b2b;
  padding: 60px 0;
  box-sizing: border-box;
}

.footer-bottom-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  /* align-items: flex-start; */
  align-items: end;
  gap: 60px;
}

.footer-info h2 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #ccc;
}

.footer-info p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin-right: 100px;
}

.footer-nav ul li a {
  font-size: 16px;
  text-align: left;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #fff;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .footer-top {
    padding: 30px 0;
  }

  .footer-top-inner {
    padding: 0 20px;
    gap: 20px;
  }

  /* .footer-logo img {
    height: 60px;
    width: auto;
  }
  .footer-company-name {
    height: 60px;
    width: auto;
    font-size: 20px;
  } */

  .footer-bottom {
    padding: 40px 0;
  }

  .footer-bottom-inner {
    padding: 0 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 40px;
  }

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

  .footer-info h2 {
    font-size: 16px;
  }

  .footer-info p {
    font-size: 13px;
  }

  .footer-nav {
    align-self: flex-end;
  }

  .footer-nav ul {
    margin-right: 20px;
  }

  .footer-nav ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 560px) {
  .fb-page {
    max-width: 300px!important;
    width: 100%;
    max-height: 420px!important;
    height: 100%;
  }
  .footer-top-inner {
    height: 60px;
  }
}
@media screen and (max-width: 420px) {
  .footer-top-inner {
    height: 46px;
  }
}
