@charset "UTF-8";


/*---------------------------------------------------------------*\
$header menu
\*---------------------------------------------------------------*/

.header_menu .modal__container {
  overflow: scroll;
  padding: 0;
}
.header_menu .modal__close {
  top: 18px;
  right: 18px;
}
.header_menu .menu_header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 32px 30px;
  border-bottom: solid 1px #636363;
}
.header_menu .logo {
  width: 110px;
  height: fit-content;
}
.header_menu .info_containers {
  display: grid;
  gap: 56px;
  padding: 32px;
}
.header_menu .main_info {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: baseline;
  justify-content: space-between;
}
.header_menu .each_menu {
  margin: 24px 0 0 0;
}
.header_menu .each_menu:first-child {
  margin: 0;
}
.header_menu .each_menu a {
  font-size: 16px;
}
.header_menu .categories_mag {
  border-left: solid 1px #636363;
  margin: 16px 0 0 0;
  padding: 0 0 0 16px;
}
.header_menu .each_category_mag {
  margin: 16px 0 0 0;
}
.header_menu .each_category_mag:first-child {
  margin: 0;
}
.header_menu .each_category_mag a {
  font-size: 15px;
}
.header_menu .menu_container {
  width: fit-content;
  margin: 0 auto 0 0;
}
.header_menu .mag_container {
  width: fit-content;
  margin: 0 auto 0 0;
}
.header_menu .submenu_container {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #636363;
  padding: 24px 0 0 0;
}
.header_menu .submenu {
  display: flex;
}
.header_menu .each_submenu {
  font-size: 13px;
  margin: 0 24px 0 0;
}
.header_menu .copyright {
  display: none;
}
.header_menu .copyright_sp {
  display: block;
  font-size: 10px;
}
.header_menu .sns_container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header_menu .wrap_sns_icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.header_menu .copyright_sp {
  display: none;
}
.header_menu .break_off {
  display: none;
}


@media screen and (min-width: 480px) {

  .header_menu .main_info {
    flex-direction: column;
  }
  .header_menu .address {
    font-size: 14px;
    line-height: 20px;
  }
  .header_menu .map {
    font-size: 15px;
  }
}


/*---------------------------------------------------------------*\
$header
\*---------------------------------------------------------------*/

header {
  width: 410px;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: none;
}

/* menu icon */
header .menu__toggle {
  cursor: pointer;
  width: 64px;
  height: 64px;
  position: fixed;
  top: 70px;
  right: 65px;
  z-index: 100;
}
header .inner_menu__toggle {
  position: relative;
  width: 64px;
  height: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
}
header .decolation {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url('../img/decolation_menu.svg');
  background-size: 56px;
  background-position: center;
  background-repeat: no-repeat;
}
header .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #3c3a3a;
  margin: 0 auto 8px;
}
header .transition {
  font-size: 10px;
}


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

  header {
    display: block;
  }
}


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

  header {
    display: none;
  }
}


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

  header {
    display: block;
  }
}


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

	header .menu__toggle {
		right: 16px;
    top: 16px;
	}
}