@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

/* ::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
} */

body {
  font-family: "Zen Kaku Gothic New", "Zen Old Mincho", sans-serif;
  font-size: 16px;
  color: #333333;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background-color: #ffffff;
  letter-spacing: 0.05em;
}

img {
  max-width: 100%;
}

/* /* ヘッダー */

header {
  z-index: 9999;
  position: fixed; /*固定 */
  width: 100%;
  height: 120px;
  background: #72b2d4;
  padding: 30px 50px;
  box-sizing: border-box;
  /* top: 0; 
    left: 0;  */
  display: flex;
  opacity: 0.9;

  /* ロゴとメニュー並び */
  display: flex;
  justify-content: space-between;
  @media (width <= 800px) {
    width: 800px;
  }
}

h1 {
  margin-top: 13px;
  @media (width <= 800px) {
    margin-left: 43%;
  }
}

/* ハンバーガーメニュー */

/* 全体調整CSS */
.hamburger-demo-menubox * {
  font-size: 16px;
}
.hamburger-demo-menubox li {
  font-size: 14px;
}
/* hamburgerここから */
/* inputを非表示 */
.input-hidden {
  display: none;
}
/* label */
.hamburger-demo-switch {
  cursor: pointer;
  position: absolute;
  right: 3%;
  top: 0; /* ハンバーガーアイコンの位置（上から） */
  z-index: 9999;
  width: 4em; /* アイコン（クリック可能領域）の幅 */
  height: 4em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
/* #hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
} */
/* ハンバーガーアイコン */
.hamburger-switch-line1,
.hamburger-switch-line1:before,
.hamburger-switch-line1:after {
  width: 25px;
  height: 3px;
  background: #333; /* ハンバーガーアイコンの色 */
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.3s;
  content: "";
}
.hamburger-switch-line1 {
  transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before {
  transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after {
  transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1 {
  width: 0;
}
#hamburger-demo1:checked
  ~ .hamburger-demo-switch
  .hamburger-switch-line1:before {
  transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked
  ~ .hamburger-demo-switch
  .hamburger-switch-line1:after {
  transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap {
  position: fixed;
  height: 100%;
  background: #fafafa; /* メニューエリアの背景色 */
  padding: 5em 3% 2em;
  z-index: 9998;
  transition: 0.3s;
  overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
  top: 0;
  left: 100%;
  width: 70%;
}
/* メニューリスト */
.hamburger-demo-menulist {
  margin-right: 3%;
  padding-left: 5% !important; /* !important不要な場合もあり */
  list-style: none;
}
.hamburger-demo-menulist li a {
  text-decoration: none;
  color: #333; /* メニューリストの文字色 */
  display: block;
  padding: 0.5em 0;
}
/* メニューエリア･アニメーション */
/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap {
  left: 30%;
}
/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9997;
  background: rgba(3, 3, 3, 0.5);
  display: block;
}
/* PCではハンバーガーメニューを表示しない */
@media (min-width: 992px) {
  .hamburger-demo-menubox {
    display: none;
  }
}

/* ドロップダウンメニュー */

#drop-down-menu {
  margin: 0 auto;
  margin-top: 20px;
  list-style-type: none;
  text-align: center;
  font-size: 16px;
  width: 900px;
  display: flex;
  @media (width <= 800px) {
    display: none;
  }
}

h1 img {
  @media (width <= 800px) {
    width: 70%;
    object-fit: contain;
  }
}

#drop-down-menu li {
  float: left;
  width: 224px;
}
#drop-down-menu li a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  letter-spacing: -0.04em;
  /* padding: 0px; */
}
#drop-down-menu li:hover a {
  background-color: #878788;
  height: 40px;
}
#drop-down-menu1 li:hover ul {
  display: block;
}
#drop-down-menu li ul {
  /* margin: 0px;
  padding: 0px; */
  list-style-type: none;
  display: none;
}

#drop-down-menu li:hover ul {
  display: block;
}
#drop-down-menu li ul a {
  display: block;
  text-decoration: none;
  color: #ffffff;
}
#drop-down-menu li ul li:hover a {
  background-color: #72b2d4;
}
#drop-down-menu:after {
  /* content: ""; */
  /* clear: both; */
  /* display: block; */
}

/* フッター */

a {
  text-decoration: none;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* main {
 
  height: 1000px;
} */

p {
  margin: 0;
}

.p-footer {
  background-image: url(../images/index/footer.jpg);
  background-size: cover;
  padding: 40px;
  height: 800px;
  background-repeat: no-repeat;
  /* position:fixed; */
  @media (width <= 800px) {
    object-fit: contain;
  }
}

.p-footer__inner {
  display: block;
}

@media screen and (min-width: 800px) {
  .p-footer__inner {
    max-width: 1500px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-footer__category {
  font-family: "Zen Old Mincho", sans-serif;
  font-size: 15px;
  color: #ffffff;
  font-weight: bold;
}

.p-footer__nav {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 500px;
  @media (width <= 800px) {
    display: none;
  }
}

/* @media screen and (min-width: 800px) {
  .p-footer__nav {
    margin-top: 0;
    display: flex;
    margin-left: 0;
    max-width: initial;
  }
} */

.p-footer__categoryBlock:nth-child(2n) {
  margin-right: 0;
}

.p-footer__navList {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

/* @media screen and (min-width: 800px) {
  .p-footer__navList {
    flex-wrap: wrap;
    margin-right: 16px;
  }
} */

.p-footer__navList:last-child {
  margin-right: 0;
}

.p-footer__navItem + .p-footer__navItem {
  margin-top: 6px;
}

.p-footer__logo {
  width: 100%;
  height: 80px;
  max-width: 180px;
  margin-right: auto;
  margin-left: 0;
  @media (width <= 800px) {
    display: none;
  }
}

/* @media screen and (min-width: 800px) {
  .p-footer__logo {
    margin-right: 20px;
    margin-left: 0;
  }
} */

.p-footer__navItem a {
  color: #ffffff;
  font-size: 11px;
  letter-spacing: -0.05em;
}

.instagram-rogo img {
  width: 3%;
  height: auto;
}

.instagram-rogo {
  /* text-align: center; */
  margin-left: 5%;
}

.jouhou {
  color: #ffffff;
  font-size: 14px;
  margin-left: 5%;
  margin-top: 0;
  @media (width <= 800px) {
    margin-top: 90%;
  }
}

.p-footer__copyLight {
  text-align: center;
  display: block;
  color: #ffffff;
}

/* トップへ戻るのCSS */

html {
  scroll-behavior: smooth;
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: rbga(255, 255, 255, 0.5);
  border: solid 2px #dfdfdf;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #dfdfdf;
  border-right: 3px solid #dfdfdf;
  transform: translateY(20%) rotate(-45deg);
}
