/* -----------------------------------------------

	 header

----------------------------------------------- */
header {
  position: fixed;
  background-color: white;
  width: 100%;
  z-index: 2;
}

header .hset-wrap {
  width: 100%;
  padding: 45px 30px;
}
header .hpcnav {
  line-height: 3;
}
header .hpcnav > a,
header .hpcnav .sub-menu-item > a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header .hpcnav > a::after,
header .hpcnav .sub-menu-item > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header .hpcnav.menu-item > a::after {
  display: none;
}
header .hpcnav > a:hover::after,
header .hpcnav .sub-menu-item > a:hover:after {
  transform: scale(1, 1);
}

header .hpcnav > a,
header .hpcnav > p,
header .sub-menu-item a {
  color: #4e4e4e;
  font-size: 12px;
  text-decoration: none;
}
header .hset-wrap .hset {
  padding: 0 60px;
}
header .hset-wrap .h01 {
  max-width: 270px;
  width: 100%;
}
header .hset-wrap .h02 li {
  margin: 0 10px;
}
header .hset-wrap .h01 a,
header .hset-wrap .h02 a {
  width: 100%;
  height: 100%;
  display: block;
}
header .hset-wrap .h02 .maplist {
  margin: 0 30px;
}
header .hset-wrap .h02 .maplist img {
  width: 12px;
}
header .hset-wrap .h02 .menulist img {
  width: 55px;
}
header .hset-wrap .h02 .menulist {
  position: relative;
}
header .hset-wrap .h02 .obtn {
  position: relative;
  z-index: 1;
}
header .hset-wrap .h02 .cbtn {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
}
header .hset-wrap .h02 .active .cbtn {
  opacity: 1;
}

header .h_insta {
  max-width: 55px;
}

li.hpcnav.bg_bk {
  background-color: #000;
  padding: 0 20px;
}

li.hpcnav.bg_bk a {
  color: #fff;
}

@media only screen and (max-width: 1350px) {
  header .hset-wrap .h01 {
    max-width: 240px;
  }
}

@media only screen and (max-width: 1200px) {
  header .hset-wrap .hset {
    padding: 0;
  }
  header .hset-wrap .h01 {
    max-width: 220px;
  }
}
@media only screen and (max-width: 1024px) {
  header .hset-wrap .h01 {
    max-width: 180px;
  }
  header .hset-wrap .h02 li {
    margin: 0 6px;
  }
  li.hpcnav.bg_bk {
    padding: 0 15px;
  }
  header .h_insta {
    max-width: 45px;
  }
  header .hset-wrap .h02 .menulist img {
    width: 45px;
  }
}
@media only screen and (max-width: 1000px) {
  header .hpcnav {
    display: none;
  }
  header .hset-wrap {
    padding: 25px 30px 25px;
  }
  header .hset-wrap .h02 .menulist img {
    width: 50px;
  }
  header .h_insta {
    max-width: 50px;
  }
  header .hset-wrap .h02 li {
    margin: 0 5px;
  }
}
@media only screen and (max-width: 768px) {
  header .hset-wrap .h02 .menulist img {
    width: 45px;
  }
  header .hset-wrap .h01 {
    max-width: 200px;
  }
  header .h_insta {
    max-width: 45px;
  }
}
@media only screen and (max-width: 650px) {
  header .hset-wrap {
    padding: 25px 20px 25px;
  }
}
@media only screen and (max-width: 479px) {
  header .hset-wrap .h01 {
    max-width: 180px;
  }
  header .hset-wrap {
    padding: 20px 15px 20px;
  }
  header .hset-wrap .h02 .menulist img {
    width: 40px;
  }
  header .h_insta {
    max-width: 40px;
  }
}

/* -----------------------------------------------

	 dropdown

----------------------------------------------- */
/* メインメニュー */
.menu-item {
  display: inline-block;
  position: relative;
}

.menu-item a {
  display: block;
}
.menu-item > a:hover {
  opacity: 1 !important;
}

/* サブメニュー */
.sub-menu {
  position: absolute;
  width: 300%;
  top: 35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #fff;
  z-index: 1;
}

.sub-menu-item {
  overflow: hidden;
  opacity: 0;
  height: 0;
  /* サブメニューが出現する速度の調整 */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .hset-wrap .sub-menu-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* メインメニューマウスカーソルが乗ったらサブメニューを出現させる */
.menu-item:hover > .sub-menu > .sub-menu-item {
  overflow: visible;
  opacity: 1;
  height: 30px;
}
.menu-item:hover > .sub-menu {
  padding-bottom: 8px;
}

/* -----------------------------------------------

	 hamburger

----------------------------------------------- */
.ham-wrap {
  position: relative;
  background: #000;
}
.hamburger {
  display: block;
  z-index: 3;
  cursor: pointer;
  text-align: center;
}
nav.globalMenuSp {
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.95);
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
  visibility: hidden;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  max-width: 300px;
  margin: auto;
  border-bottom: solid 1px#fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 30px 0 0px;
  line-height: 2;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  z-index: 0;
  visibility: visible;
}

.fcontact .fc01 p a {
  text-decoration: underline;
}

/* -----------------------------------------------

	 footer

----------------------------------------------- */
footer {
  padding: 90px 30px 0;
  background: #efeded;
}
footer .fset {
  padding-bottom: 120px;
  border-bottom: solid 1px #fff;
}
footer .f01 .image {
  max-width: 130px;
}
footer .copyright {
  padding: 60px 0;
  color: #4e4e4e;
  font-size: 14px;
}
footer .f02nav {
  color: #4e4e4e;
  margin: 0 25px;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
footer .f02nav .head {
  margin-bottom: 10px;
}
footer .f02nav ul {
  padding-left: 5px;
}
footer .f02nav ul li {
  letter-spacing: -0.1rem;
  line-height: 2.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
footer .f02nav ul li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  margin-right: 5px;
  background: #4e4e4e;
}

@media only screen and (max-width: 1200px) {
  footer .f01 .image {
    max-width: 110px;
  }
  footer .f02nav {
    font-size: 14px;
  }
  footer .f02nav {
    margin: 0 20px;
  }
}
@media only screen and (max-width: 1024px) {
}
@media only screen and (max-width: 1000px) {
  footer .fset {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 90px;
  }
  footer .fset .f01 {
    margin-bottom: 45px;
  }
  footer .copyright {
    padding: 30px 0;
  }
  footer .f02-navwrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  footer .f02nav {
    width: calc(100% / 3 - 40px);
    margin: 0 20px 20px;
  }
  footer .f02nav-01,
  footer .f02nav-02 {
    order: 1;
  }
  footer .f02nav-06 {
    order: 2;
  }
  footer .f02nav-03,
  footer .f02nav-04,
  footer .f02nav-05 {
    order: 3;
    margin-bottom: 0;
  }
  footer .f02nav-02,
  footer .f02nav-04 {
    margin-left: 0;
    margin-right: 40px;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 650px) {
  footer {
    padding: 60px 20px 0;
  }
  footer .f01 .image {
    max-width: 100px;
  }
  footer .fset {
    padding-bottom: 30px;
    border-bottom: none;
  }
  footer .f02nav {
    width: 100%;
    border-bottom: solid 1px #4e4e4e;
    margin: 0px 0px 10px !important;
    padding-bottom: 10px;
  }
  footer .f02nav .head {
    margin-bottom: 0;
  }
  footer .f02nav ul {
    margin-top: 10px;
  }
  footer .copyright {
    padding: 10px 0 20px;
    font-size: 10px;
  }
}
@media only screen and (max-width: 479px) {
  footer .f01 .image {
    max-width: 80px;
  }
  footer {
    padding: 45px 20px 0;
  }
}
