/*=========================================================
header
=========================================================*/
.header {
  width: 100%;
  height: 86px;
  position: fixed;
  z-index: 999;
  transition: all 0.3s;
}
.header.fixed {
  background-color: var(--bg-header);
  height: 64px;
}
.header .container {
  height: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-nav-list {
  display: flex;
  gap: 25px;
}
.header-nav-list__item {
  font-family: Montserrat;
  font-weight: bold;
  font-size: 1.4rem;
  line-height: 25.2px;
  letter-spacing: 0.07rem;
}
.header-nav-list__link {
  color: var(--text-white);
  position: relative;
}
.header-nav-list__link::after {
  background-color: var(--btn-white);
  bottom: -6px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: left top;
  transition: transform 0.3s;
  width: 100%;
}
.header-nav-list__link:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
@media screen and (max-width: 767px) {
  .header {
    height: 64px;
  }
  .header-logo__image {
    width: 120px;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
  }
  .header-nav.active {
    display: flex;
    justify-content: center;
    text-align: center;
    opacity: 1;
    visibility: visible;
    background: linear-gradient(#7633a4, #250d65);
    transition: all 0.3s;
  }
  .header-nav-list {
    position: absolute;
    top: 35%;
    flex-direction: column;
    gap: 20px;
  }
  .header-nav-list__item {
    font-size: 1.6rem;
    line-height: 2.88rem;
  }
}
/*=======================================================
hamburger menu
=======================================================*/
.hamburger-menu {
  display: none;
  position: relative;
  width: 40px;
  padding: 0 5px;
  height: 15px;
}
.hamburger-menu__bar {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--btn-white);
  transition: all 0.3s;
}
.hamburger-menu__bar:nth-child(1) {
  top: 0;
  left: 5px;
}
.hamburger-menu__bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger-menu__bar:nth-child(3) {
  bottom: 0;
}

@media screen and (max-width: 1023px) {
}
@media screen and (max-width: 767px) {
  .hamburger-menu {
    display: block;
  }
  .hamburger-menu.active .hamburger-menu__bar:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
  }
  .hamburger-menu.active .hamburger-menu__bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .hamburger-menu__bar:nth-child(3) {
    transform: rotate(-45deg);
    top: 50%;
  }
}
/*=====================================================
sub page visual
=====================================================*/
.subpage-top {
  background-image: url('../images/hero.png');
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.subpage-top__title {
  font-family: "Montserrat";
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 4.32rem;
  letter-spacing: 0.05em;
  padding-bottom: 5px;
}
.subpage-top__subtitle {
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.56rem;
  letter-spacing: 0.05em;
}
/*=====================================================
パンくずリスト
======================================================*/
.breadCrumbs {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 1.2rem;
  line-height: 2.16rem;
  letter-spacing: 0.05em;
  color: var(--text-black-light);
}
.breadCrumbs .container {
  max-width: none;
  background-color: var(--bg-gray-2);
  height: 43px;
  display: flex;
  align-items: center;
  padding: 0 165px;
}
.breadCrumbs .container * + *::before {
  content: ">";
  margin: 0 8px;
}
.breadCrumbs__link,
.breadCrumbs__span {
  display: block;
  position: relative;
}
.breadCrumbs__link {
  color: var(--theme-color);
}
.breadCrumbs__link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1023px) {
  .breadCrumbs .container {
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .subpage-top {
    height: 180px;
  }
  .subpage-top__title {
    font-size: 3rem;
    line-height: 3.6rem;
    padding-top: 42px;
    padding-bottom: 0px;
  }
  .breadCrumbs {
    font-size: 1.1rem;
    line-height: 1.98rem;
  }
  .breadCrumbs .container {
    height: 35px;
  }
}
