.h__nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.h__nav__item {
  position: relative;
}

.h__nav__item a,
.h__nav__parent {
  color: #000;
  font-weight: bold;
  font-feature-settings: "palt" 1;
  letter-spacing: 0.2em;
  line-height: 2.8;
  padding-left: 0.2em;
  position: relative;
  text-decoration: none;
}

.h__nav__parent {
  background: none;
  border: none;
  cursor: pointer;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
}

.h__nav__item a::after,
.h__nav__parent::after {
  content: '';
  display: block;
  background-color: transparent;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: background-color 0.4s ease-in-out;
}

.h__nav__item a:hover::after,
.h__nav__item--has-child:hover .h__nav__parent::after {
  background-color: #000;
}

.h__nav__sublist {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid #ddd;
  display: none;
  z-index: 100;
}

.h__nav__sublist li a {
  display: block;
  padding: 10px 16px;
  white-space: nowrap;
  line-height: 2em;
}

.h__nav__sublist li a:hover {
  background: #f5f5f5;
}

.h__nav__item--has-child:hover .h__nav__sublist {
  display: block;
}

/* スマホ */
@media screen and (max-width: 768px) {
  .h__nav__list {
    display: block;
  }

  .h__nav__item {
    width: 100%;
  }

  .h__nav__item a,
  .h__nav__parent {
    display: block;
    width: 100%;
    text-align: left;
    line-height: 1.8;
    padding: 12px 0;
  }

  .h__nav__item--has-child:hover .h__nav__sublist {
    display: none;
  }

  .h__nav__parent {
    position: relative;
    padding-right: 24px;
  }

  .h__nav__parent::before {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
  }

  .h__nav__item--has-child.is-open .h__nav__parent::before {
    content: '−';
  }

  .h__nav__sublist {
    position: static;
    min-width: auto;
    border: none;
    background: transparent;
    padding: 0;
    display: none;
  }

  .h__nav__item--has-child.is-open .h__nav__sublist {
    display: block;
  }

  .h__nav__sublist li a {
    padding: 10px 0 10px 16px;
    line-height: 1.6;
    font-size:1.8rem;
  }
}

.f__nav__list.salons{
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #c9c9c9;
}
@media screen and (min-width: 1240px) {
  .f__nav__list.salons{
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .footer .f__main{
    display: grid;
    grid-template-columns: 125px 1fr;
    column-gap: 40px;
  }
  .f__nav__list{
    gap:10px 20px;
  }
  .f__nav__list .f__nav__item a{
  line-height:2;
  }

  .f__nav__item{
    padding:0 !important;
  }
}
@media screen and (max-width: 767px) {
  .f__nav__list.salons{
    font-size:1.3rem;
  }
  .f__nav__list.salons .f__nav__item:first-child{
    width:50%;
  }
  .f__main{
    padding: 60px 20px !important;
  }
}