@charset "UTF-8";
/* =====================
	南西食品
	グローバル系
 ======================= */
/** ---------- HEADER ---------- **/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 24px;
}

.header .logo {
  padding: 6px 0 6px;
}

.header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  font-weight: 500;
}

.header .logo img {
  width: 82px;
  margin-right: 8px;
}

.header .menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.header .menu_list > li {
  padding: 0 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.header .menu_list > li a {
  display: inline-block;
  position: relative;
  padding: 3px 0;
  font-weight: 500;
}

.header .menu_list > li a:before {
  content: "";
  width: 0;
  height: 1px;
  background: #544645;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header .menu_list > li a:hover:before {
  width: 100%;
}

.header .menu_list > li .child {
  position: absolute;
  top: 100%;
  left: 50%;
  margin: auto;
  background: #fafafa;
  padding: 24px 52px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  display: none;
}

.header .menu_list > li .child li {
  margin-bottom: 28px;
}

.header .menu_list > li .child li:last-child {
  margin-bottom: 0;
}

.header .user_menu_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.header .user_menu_list li {
  margin: 0 20px;
  font-size: 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .user_menu_list li:last-child {
  margin-right: 0;
}

.header .user_menu_list li a {
  display: block;
  position: relative;
  font-weight: 700;
}

.header .user_menu_list li a:hover {
  color: #B73284;
}

.header .user_menu_list li a:hover img:first-of-type {
  opacity: 0;
}

.header .user_menu_list li a:hover img:nth-child(2) {
  opacity: 1.0;
}

.header .user_menu_list li img {
  display: block;
  margin: 0 auto 2px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.header .user_menu_list li img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
}

.header .user_menu_list .logout.my-false {
  display: none;
}

.header .user_menu_list .login.my-true {
  display: none;
}

.header.bg_wht {
  background: #fafafa;
}

.header.scroll {
  background: #fafafa;
}

/** ---------- FOOTER ---------- **/
#backToIndex {
  padding: 108px 0;
}

#backToIndex a {
  color: #544645;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.0;
  margin: 0 auto;
}

#backToIndex a:before, #backToIndex a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-top: 4px;
  margin-right: 4px;
}

#backToIndex a:after {
  margin-right: 16px;
}

#backToIndex a:hover {
  color: #B73284;
}

.footer {
  background: #1C0501;
  color: #fafafa;
  padding: 80px 0;
  position: relative;
}

.footer a {
  color: #fafafa;
}

.footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer .logo_img {
  width: 232px;
}

.footer .logo .sns_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
}

.footer .logo .sns_list li {
  width: 40px;
  margin-right: 24px;
}

.footer .logo .sns_list li:last-child {
  margin-right: 0;
}

.footer .logo .sns_list li a {
  display: block;
  border-radius: 5px;
  background: #fafafa;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.footer .logo .sns_list li a img {
  display: block;
}

.footer .logo .sns_list li a:hover {
  background: #B73284;
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.footer_nav_list li {
  margin-bottom: 24px;
}

.footer_nav_list li:last-child {
  margin-bottom: 0;
}

.footer_nav_list li a {
  display: inline-block;
  position: relative;
  letter-spacing: 0;
}

.footer_nav_list li a:before {
  content: "";
  width: 0;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.footer_nav_list li a:hover:before {
  width: 100%;
}

.footer .copy {
  width: 100%;
  text-align: center;
  margin-top: 64px;
}

.footer .copy small {
  font-size: 100%;
}

/* PCのみ
  ------------------------ */
/* タブレット
  ------------------------ */
@media (max-width: 1440px) {
  /** ---------- HEADER ---------- **/
  .header .logo {
    padding-left: 0;
  }
  .header .menu_list > li {
    padding: 0 1.2vw;
  }
  .header .user_menu_list li {
    margin: 0 1.2vw;
  }
}

/* スマホ
  ------------------------ */
@media (max-width: 767px) {
  .header_inner {
    padding: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header .logo {
    padding: 0;
  }
  .header .logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 10px;
    letter-spacing: 0;
  }
  .header .logo img {
    width: auto;
    max-width: 114px;
    margin: 0;
  }
  .header .user_menu_list li {
    margin: 0 12px;
  }
  .header .menu {
    position: fixed;
    top: 63px;
    left: 0;
    width: 100%;
    height: calc(100% - 63px);
    background: #fafafa;
    padding: 32px;
    overflow: scroll;
    display: none;
  }
  .header .menu_list {
    display: block;
    height: auto;
    margin-bottom: 24px;
  }
  .header .menu_list > li {
    border-bottom: 1px solid rgba(84, 70, 69, 0.4);
    display: block;
    text-align: left;
    position: relative;
  }
  .header .menu_list > li:first-child {
    padding-top: 0;
  }
  .header .menu_list > li:after {
    content: "";
    width: 4px;
    height: 4px;
    border-right: 1px solid #544645;
    border-bottom: 1px solid #544645;
    position: absolute;
    right: 4px;
    top: calc(0.5em + 16px);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .header .menu_list > li a {
    font-size: 16px;
    padding: 16px 0;
    line-height: 1.0;
  }
  .header .menu_list > li a:before {
    bottom: 10px;
  }
  .header .menu_list > li.parent:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header .menu_list > li.parent a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header .menu_list > li.parent.open:after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .header .menu_list > li .child {
    position: relative;
    top: auto;
    left: auto;
    padding: 0;
    -webkit-transform: none;
            transform: none;
    padding: 20px 16px;
    width: 100%;
  }
  .header .menu_list > li .child li {
    margin-bottom: 20px;
  }
  .header .menu_list > li .child a {
    padding: 0;
  }
  .header .menu_list > li .child a:before {
    bottom: -10px;
  }
  .header .sns_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header .sns_list li {
    margin-right: 24px;
  }
  .header .sns_list li:last-child {
    margin-right: 0;
  }
  .header .sns_list li a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background: #1C0501;
  }
  .header .sns_list li a:hover {
    background: #B73284;
  }
  .header .sub_menu {
    margin-bottom: 24px;
  }
  .header .sub_menu li {
    margin-bottom: 20px;
  }
  .header .sub_menu li:last-child {
    margin-bottom: 0;
  }
  .header .sub_menu li a {
    position: relative;
  }
  .header .sub_menu li a:before {
    content: "";
    width: 0;
    height: 1px;
    background: currentColor;
    position: absolute;
    bottom: -8px;
    left: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .header .sub_menu li a:hover:before {
    width: 100%;
  }
  .header .menu_btn {
    position: relative;
    width: 18px;
    height: 16px;
    margin: auto 0;
  }
  .header .menu_btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #544645;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
  }
  .header .menu_btn span:first-child {
    top: 0;
  }
  .header .menu_btn span:nth-child(2), .header .menu_btn span:nth-child(3) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .header .menu_btn span:last-child {
    bottom: 0;
  }
  .header .menu_btn.open span:first-child, .header .menu_btn.open span:last-child {
    opacity: 0;
  }
  .header .menu_btn.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .header .menu_btn.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  /** ---------- FOOTER ---------- **/
  #backToIndex {
    padding: 64px 0;
  }
  .footer {
    padding: 40px 0;
  }
  .footer_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer_nav {
    margin-top: 32px;
  }
  .footer_nav_list {
    text-align: center;
  }
  .footer .copy {
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 0;
  }
}
/*# sourceMappingURL=global.css.map */