/*
 * subheader
 *
 * - accent blue : #0098e6
 * - brown color : #826844
 */

#subheader {
  width: 100%;
  background: var(--color-m02);
  position: relative;
  z-index: 1000;
}
.subheader_inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1130px;
  margin: 0 auto;
  padding: 30px;
}
.subheader_logo img {
  width: 183px;
}
.subheader_upper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.subheader_tel {
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 21px;
  font-weight: 500;
}
.subheader_icons {
  display: flex;
  align-items: center;
  list-style: none;
}
.subheader_icons li {
  margin-left: 20px;
}
.subheader_icons .map a img {
  width: 20px;
}
.subheader_icons .instagram a img {
  width: 22px;
}
.subheader_icons .line a img {
  width: 25px;
  margin-top: 2px;
}
.subheader_nav ul {
  display: flex;
  column-gap: 30px;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.subheader_nav ul li a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
}

.subheader_btn,
.subheader_nav .subheader_tel {
  display: none;
}

/*
.home #subheader {
  position: fixed;
  display: none;
}*/

@media screen and (max-width: 680px) {

.subheader_inner {
  height: 50px;
  padding: 5px 0 5px 10px;
}
.subheader_logo img {
  width: 90px;
}
.subheader_upper {
  margin-bottom: 0;
}
.subheader_upper > .subheader_tel {
  display: none;
}

.subheader_icons li {
  margin-left: 15px;
}
.subheader_btn {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  cursor: pointer;
}
.subheader_btn span {
  position: absolute;
  left: 12px;
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all .2s;
}
.subheader_btn span:nth-child(1) {
  top: 20px;
}
.subheader_btn span:nth-child(2) {
  top: 30px;
}
.subheader_btn.is-open span {
  top: 25px;
}
.subheader_btn.is-open span:nth-child(1) {
  transform: rotate(45deg);
}
.subheader_btn.is-open span:nth-child(2) {
  transform: rotate(-45deg);
}
.subheader_nav {
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  padding: 60px 0;
  background: var(--color-m02);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  transition: all .2s;
}
.subheader_nav ul {
  flex-direction: column;
  row-gap: 20px;
  font-size: 24px;
  text-align: center;
}
.subheader_nav ul li a {
  display: block;
  padding: 16px;
}
.subheader_nav .subheader_tel {
  display: block;
  padding: 40px 0 0;
  font-size: 24px;
  text-align: center;
}
.subheader_nav.is-open {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

}
