/* 共通CSS
PC：設定なし（実質1026px以上）
タブレット：1025px [max-width : 1025px]
スマートフォン：600px [max-width : 600px] */
main{
  min-height: 80vh;
}

a {
  text-decoration: none;
  color: inherit;
}

input {
  padding-left: 1em;
  padding-right: 1em;
}

.pc {
  display: block;
}

.pctb{
  display: block;
}

.tb {
  display: none;
}

.tbsp {
  display: none;
}

.sp {
  display: none;
}

body {
  margin: auto;
}

/* ヘッダー */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.header-left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hamburger-menu {
}

.hamburger-menu img,
.logo img {
  display: block;
  padding-left: 15px;
}

.hamburger-menu img {
  width: 30px;
}

.logo {
  /* styling the logo as per your requirements */
}
.logo img {
  width: 150px;
}

.header-right {
  padding-right: 20px;
  display: flex;
  justify-content: right;
  align-items: center;
}

.header-right-sp {
  display: none;
}

.search-form {
  display: flex;
  align-items: center;
  border-radius: 25px;
  overflow: hidden;
}

.search-form input {
  width: 250px;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  background-color: #f0f0f0;
  font-size: 1em;
  outline: none;
}

.search-form input::placeholder {
  color: #9b9b9b;
}

.search-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 45px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
}

.search-form img {
  width: 20px;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  padding: 30px;
  left: -100%;
  top: 0;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  transition: all 0.5s;
  z-index: 200;
  overflow-y: auto;
}

.nav-logo {
  display: flex; /* Flexboxを使用してロゴ画像を水平方向中央に配置 */
  justify-content: center; /* Flexboxを使用してロゴ画像を水平方向中央に配置 */
}

.sp-nav button {
  display: flex;
  justify-content: center;
}

.sp-nav ul {
  list-style: none; /* リストマーカーを削除 */
  padding: 0; /* パディングを削除 */
}

.sp-nav li {
  margin-bottom: 1rem; /* メニュー項目間に余白を追加 */
  font-size: 12px;
}

.open .sp-nav {
  left: 0;
}

.h-space {
  height: 0px;
}
/* 
  black-bg(ハンバーガーメニュー解除用bg)
  =================================== */
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black-bg {
  opacity: 0.3;
  visibility: visible;
}

/* 
  nav内のCSS
  =================================== */
.nav-logo {
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
}

.nav-logo img {
  width: 90%;
}

header a {
  color: black;
}

header a:hover {
  color: black;
}

.login-h button {
  margin: 0 auto;
  width: 120px;
  height: 32px;
  border: none;
  border-radius: 100px;
  padding-right: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: rgb(0, 150, 250);
  color: white;
  text-align: center; /* テキストを水平方向に中央に配置 */
  line-height: 32px; /* テキストを垂直方向に中央に配置 */
}

.submit-h {
  padding-top: 10px;
  padding-bottom: 10px;
}

.submit-h button {
  margin: 0 auto;
  width: 120px;
  height: 32px;
  border: none;
  border-radius: 100px;
  padding-right: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: white;
  color: black;
  text-align: center; /* テキストを水平方向に中央に配置 */
  line-height: 32px; /* テキストを垂直方向に中央に配置 */
}

.ul-h {
  padding-top: 20px;
}

/* ログイン中ヘッダー */

.pro-login-h {
  display: flex;
  align-items: center;
}

.pro-login-h img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.pro-login-h p {
  padding-left: 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.logout-login-h button {
  margin: 0 auto;
  width: 120px;
  height: 32px;
  border: none;
  border-radius: 100px;
  padding-right: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: rgb(187, 187, 187);
  color: white;
  text-align: center; /* テキストを水平方向に中央に配置 */
  line-height: 32px; /* テキストを垂直方向に中央に配置 */
}

.icon-login-h img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 12px;
  margin-left: 10px;
}

/* 
  =================================== */

/* メイン */

@media screen and (max-width: 1025px) {
  /* 1025px以下*/
  .pc {
    display: none;
  }

  .tb {
    display: block;
  }

  .tbsp {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  /* 600px以下*/

  .sp {
    display: block;
  }

  .pctb{
    display: none;
  }

  .header-right {
    display: none;
  }

  .header-right-sp {
    display: block;
    padding: 0px 10px 5px 10px;
  }

  .search-form input {
    width: 100%;
    height: 45px;
  }
}

/* フッター */
footer {
}
.footer {
  color: white;
  background: rgb(47, 47, 47);
  text-align: center;
  padding: 30px;
}
.footer a {
  color: white;
  text-decoration: none;
}
.footer a:hover {
  color: white;
  text-decoration: underline;
}
.footer .menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer .menu li {
  margin: 0;
  padding: 0 20px;
}
.footer .copyright {
  margin: 0;
  padding: 20px 0 0 0;
}

@media screen and (max-width: 600px) {
  /* 600px以下*/
  footer li {
    font-size: 12px;
  }
}

/* インフルエンサーヘッダー */
.inf-h button {
  margin: 0 auto;
  width: 120px;
  height: 32px;
  border: none;
  border-radius: 100px;
  padding-right: 5px;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  background: #ff9c2a;
  color: white;
  text-align: center; /* テキストを水平方向に中央に配置 */
  line-height: 32px; /* テキストを垂直方向に中央に配置 */
}
