@charset "UTF-8";

.inner {
  width: 1300px;
  padding-inline: 90px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.bg {
  position: relative;
}

.bg::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url('/hibikino/assets/img/common/bg.png');
  width: 100%;
  height: 186px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}

/* =====================
  オレンジボタン
===================== */
.link-btn {
  width: 335px;
  height: 74px;
  background-color: #ee7951;
}

.link-btn .link-anchor {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 64px;
}

.link-btn .link-anchor::after {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/hibikino/assets/img/common/icon_arrow.png');
  width: 10px;
  height: 15px;
}

.link-btn .link-anchor span {
  font-weight: bold;
  color: #fff;
}

/* =====================
  ヘッダー
===================== */
.header {
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1300px;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 2px solid #453c34;
}

.header .logo {
  position: relative;
  left: 30px;
}

.header .hnav {
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
}

.header > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
}

.header > ul li {
  height: inherit;
}

.header .hnav .t-menu {
  width: 175px;
  border-left: 1px dotted #d9d9d9;
}

.header > ul li a {
  display: grid;
  width: 100%;
  place-content: center;
  height: inherit;
}

/* ==== メニュー ==== */
.pc-menu {
  z-index: 20;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/hibikino/assets/img/common/hamburger.png');
  width: 90px;
  height: 100px;
}

.pc-nav {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 30%;
  z-index: 200;
  transition: right 600ms var(--easeOutExpo) 0s;
  opacity: 0;
}

body.menu-on .pc-nav {
  opacity: 1;
  right: 0vw;
}

.pc-nav-inner {
  position: relative;
  background-color: #fff;
  height: 100vw;
  overflow-y: scroll;
}

/* ==== ヘッド ==== */
.pc-nav-inner .head {
  position: relative;
  min-height: 100px;
  background-color: #fff;
  border-bottom: 2px solid #453c34;
  top: 0;
}

.pc-nav-inner .head .close-menu {
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/hibikino/assets/img/common/close.png');
  width: 90px;
  height: 100px;
  top: 0;
  right: 0;
}

/* ==== 内容 ==== */

.pc-nav-inner .body .fnav li {
  border-bottom: 1px solid #453c34;
}

.pc-nav-inner .body .fnav li a {
  display: block;
  width: 100%;
  height: inherit;
  padding-block: 32px;
}

.pc-nav-inner .body .fnav li a > span {
  font-weight: bold;
}

/* =====================
  アサイド　メニュー
===================== */
.aside {
  background-color: #343434;
  padding-block: 50px;
}

.aside .aside-menu {
  color: #fff;
}

.aside .aside-menu ul {
  display: flex;
  align-items: center;
  gap: 40px;
}

.aside .aside-menu ul li picture {
  display: block;
  margin-right: 56px;
}

.aside .aside-menu ul li a {
  display: block;
  padding-block: 10px;
}

.aside .aside-menu ul li span {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.aside .aside-menu ul li span::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url('/hibikino/assets/img/common/footer_arrow.png');
  width: 9px;
  height: 14px;
}

/* =====================
  フッター
===================== */

.footer .footer-wrap {
  display: flex;
  align-items: center;
}

.footer .footer-wrap .foot-logo {
  margin-right: 8px;
}
.footer .footer-wrap .foot-logo img {
  width: 100px;
  margin-block: 1em;
  aspect-ratio: 119 / 122;
}

.footer .footer-wrap .foot-menu ul {
  font-size: 14px;
  font-weight: 500;
  color: #343434;
  display: flex;
}

.footer .footer-wrap .foot-menu ul li {
  position: relative;
}

.footer .footer-wrap .foot-menu ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 17px;
  background-color: #343434;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.footer .footer-wrap .foot-menu ul li:last-child::after {
  display: none;
}

.footer .footer-wrap .foot-menu ul li a {
  display: block;
  padding-inline: 16px;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
}

.footer .inner .foot-wrap {
  display: grid;
  justify-items: end;
  align-content: center;
  margin-top: 32px;
}

.footer .inner .foot-wrap .foot {
  font-size: 12px;
  font-weight: 500;
  color: #343434;
  text-align: right;
  margin-top: 16px;
}
