@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
/* =====================
	南西食品
	リセット・共通系
 ======================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71429;
  letter-spacing: 0.1em;
  color: #544645;
  min-width: 1000px;
  background: url(../images/common/bg.jpg) repeat-y top center/cover;
}

body * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

a {
  color: #544645;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin: 0;
}

address {
  font-style: normal;
}

iframe {
  border: 0;
}

/** COMMON STYLE **/
.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.t-bold {
  font-weight: 500;
}

.inner {
  max-width: 1440px;
  min-width: 1000px;
  margin: 0 auto;
}

.inner.middle {
  max-width: 1160px;
}

.inner.narrow {
  max-width: 1000px;
}

a.more_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  text-decoration: underline;
  text-underline-offset: 6px;
  position: relative;
}

a.more_link:before {
  content: "";
  width: 82px;
  height: 1px;
  background: currentColor;
  margin-left: 1em;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

a.more_link:after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  margin-left: -22px;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

a.more_link:hover {
  opacity: 0.7;
}

/** ANIMATION **/
.anim {
  opacity: 0;
  -webkit-transition: all 1.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 1.2s cubic-bezier(0, 0, 0.58, 1);
}

.anim.is-show {
  opacity: 1.0;
}

.anim.fadeUp {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.anim.fadeUp.is-show {
  -webkit-transform: none;
          transform: none;
}

.anim.slideIn {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

.anim.slideIn.is-show {
  -webkit-transform: none;
          transform: none;
}

/** TYPOGRAPHY **/
.h2_title {
  text-align: center;
  margin: 0 0 32px;
}

.h2_title .jp {
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 1em;
}

.h2_title .eng {
  display: block;
  margin: 0 auto;
}

.h2_title.c_wht {
  color: #fafafa;
}

.h2_title.c_pnk {
  color: #B73284;
}

.h2_title.anim {
  overflow: hidden;
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  opacity: 1.0;
}

.h2_title.anim > span {
  display: block;
  -webkit-transform: translate(100%, 0);
          transform: translate(100%, 0);
  -webkit-transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s, -webkit-transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}

.h2_title.anim.is-show {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.h2_title.anim.is-show > span {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/** ITEM INTRODUCE BLOCK **/
.item-intro {
  position: relative;
  overflow: hidden;
}

.item-intro_container {
  padding: 40px;
  background: #fafafa;
  -webkit-box-shadow: 0px 3px 7px 2px rgba(0, 0, 0, 0.11), 3px 0px 54px 1px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 3px 7px 2px rgba(0, 0, 0, 0.11), 3px 0px 54px 1px rgba(0, 0, 0, 0.06);
}

.item-intro_container_in {
  padding: 88px;
  background: url(../images/common/item-intro_frame_head.png) no-repeat top center/contain, url(../images/common/item-intro_frame_foot.png) no-repeat bottom center/contain, url(../images/common/item-intro_frame_body.png) repeat-y top center/100% auto;
}

.item-intro_item {
  position: relative;
}

.item-intro_item:after {
  content: "";
  width: 100%;
  height: 137px;
  background: url(../images/common/item-intro_border.png) no-repeat center/contain;
  display: block;
}

.item-intro_item .pic {
  position: absolute;
  left: -60%;
  top: -2%;
}

.item-intro_item .pic.is-show img {
  -webkit-animation: shakes 0.4s steps(2) both;
          animation: shakes 0.4s steps(2) both;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.item-intro_item .txt_box {
  width: 435px;
  margin-left: auto;
}

.item-intro_item .txt_box .anim {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}

.item-intro_item h2 {
  margin: 0 0 16px;
}

.item-intro_item h3 {
  margin: 0 0 30px;
}

.item-intro_item p {
  line-height: 1.5;
}

.item-intro_item p + p {
  margin-top: 1.5em;
}

.item-intro_item .scroll {
  position: absolute;
  right: -268px;
  top: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15px;
  gap: 16px;
  -webkit-animation: arrowmove 2s ease-in-out infinite;
          animation: arrowmove 2s ease-in-out infinite;
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}

.item-intro_item:first-child .pic:before {
  content: "";
  width: 43px;
  height: 63px;
  background: url(../images/common/item-intro_imo01_acc.png) no-repeat center/contain;
  position: absolute;
  top: 50px;
  right: 160px;
}

.item-intro_item:nth-child(2) .pic {
  left: auto;
  right: -70%;
}

.item-intro_item:nth-child(2) .pic:before {
  content: "";
  width: 51px;
  height: 81px;
  background: url(../images/common/item-intro_imo02_acc.png) no-repeat center/contain;
  position: absolute;
  top: 100px;
  left: 160px;
}

.item-intro_item:nth-child(2) .txt_box {
  margin-left: 0;
}

.item-intro_item:nth-child(2) .scroll {
  right: auto;
  left: -268px;
}

.item-intro_item:last-child:after {
  display: none;
}

@-webkit-keyframes shakes {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  24% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  36% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes shakes {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  24% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  36% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@-webkit-keyframes arrowmove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes arrowmove {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/** HOWTO **/
.howto {
  position: relative;
}

.howto_list {
  margin: 70px 0 116px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.howto_list li {
  width: 264px;
  margin: 0 20px;
  text-align: center;
}

.howto_list li h3 {
  margin: 0 0 28px;
}

.howto_list li .pic {
  margin-bottom: 16px;
}

.howto_list li .pic img {
  display: block;
  margin: 0 auto;
}

.howto_list li.anim {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.howto_list li.anim:nth-child(2) {
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

.howto_list li.anim:nth-child(3) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}

.howto_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 120px;
}

.howto_item .pic_box {
  width: 50%;
  position: relative;
}

.howto_item .pic_box .txt {
  position: absolute;
  right: 0;
  top: 0;
}

.howto_item .pic_box .txt.anim {
  -webkit-transition-delay: 1.0s;
          transition-delay: 1.0s;
}

.howto_item .txt_box {
  margin: 0 auto;
  text-align: center;
  padding-top: 32px;
}

.howto_item .txt_box h3 {
  margin: 0 0 24px;
}

.howto_item .txt_box .bg_pic {
  margin-top: 30px;
}

.howto_item .txt_box .bg_pic img {
  display: block;
  margin: auto;
}

.howto_item .txt_box.anim {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.howto_item:nth-child(2) .pic_box .txt {
  left: 0;
  right: auto;
}

.howto_item:nth-child(3) .pic_box .txt {
  top: auto;
  bottom: 12px;
}

.howto_item:nth-child(3) .pic_box .txt.anim {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}

.howto_item:last-child {
  margin-bottom: 0;
}

/** Omoimoのおもい **/
.omoi {
  background: url(../images/common/omoi_bg01.png) no-repeat top 250px right 40px, url(../images/common/omoi_bg02.png) no-repeat bottom 150px left, url(../images/common/omoi_bg.png) no-repeat center bottom/cover;
  padding: 170px 0 250px;
  margin-top: -80px;
}

.omoi h2 {
  text-align: center;
  margin: 0 0 70px;
}

.omoi_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 44px;
  margin-bottom: 40px;
}

.omoi_item .pic {
  width: 44.51754%;
}

.omoi_item .pic img {
  display: block;
  -webkit-box-shadow: 0px 3px 7px 2px rgba(0, 0, 0, 0.11), 0px 3px 54px 2px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 3px 7px 2px rgba(0, 0, 0, 0.11), 0px 3px 54px 2px rgba(0, 0, 0, 0.06);
}

.omoi_item .txt_box {
  width: 44.51754%;
}

.omoi_item h3 {
  padding-bottom: 20px;
  background: url(../images/common/omoi_border.png) no-repeat center bottom/contain;
  margin-bottom: 20px;
}

.omoi_item:nth-of-type(2n+1) .txt_box {
  margin-top: 54px;
}

.omoi_item:nth-of-type(2n) {
  margin-bottom: 60px;
}

.omoi_item:last-child {
  margin-bottom: 0;
}

/** PAGENATION **/
.pagenation {
  padding-top: 108px;
}

.pagenation .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.pagenation .wp-pagenavi span, .pagenation .wp-pagenavi a {
  margin: 0 8px;
}

.pagenation .wp-pagenavi .current {
  font-weight: 700;
}

.pagenation .back_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.pagenation .back_link:before, .pagenation .back_link:after {
  content: "";
  width: 4px;
  height: 4px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 8px;
}

.pagenation .back_link:after {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-right: 4px;
}

/* PCのみ
  ------------------------ */
@media (min-width: 768px) {
  .forSP {
    display: none !important;
  }
}

/* タブレット
  ------------------------ */
@media (max-width: 1440px) {
  .main_continer {
    padding: 4.16667%;
  }
}

/* スマホ
  ------------------------ */
@media (max-width: 767px) {
  body {
    min-width: auto;
    background: url(../images/common/bg_sp.jpg) repeat-y top center/100%;
  }
  .forPC {
    display: none !important;
  }
  /** COMMON STYLE **/
  .inner {
    min-width: auto;
    padding: 0 10px;
  }
  a.more_link {
    text-underline-offset: 3px;
    letter-spacing: 0.06em;
  }
  a.more_link:before {
    width: 54px;
  }
  /** TYPOGRAPHY **/
  .h2_title .jp {
    font-size: 14px;
  }
  /** ITEM INTRODUCE BLOCK **/
  .item-intro_container {
    padding: 10px;
  }
  .item-intro_container_in {
    padding: 20px 20px 36px;
  }
  .item-intro_item {
    padding-top: 120px;
  }
  .item-intro_item:after {
    height: 60px;
  }
  .item-intro_item .pic {
    left: 0;
    right: 0;
    top: -120px;
    margin: auto;
  }
  .item-intro_item .txt_box {
    width: auto;
  }
  .item-intro_item .txt_box .anim {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .item-intro_item h2 {
    margin-bottom: 20px;
    text-align: right;
  }
  .item-intro_item h2 img {
    width: 254px;
  }
  .item-intro_item h3 {
    margin-bottom: 40px;
  }
  .item-intro_item:first-child .pic:before {
    width: 31px;
    height: 45px;
    top: -25px;
    left: 60px;
    right: auto;
  }
  .item-intro_item:nth-child(2) {
    padding-top: 0;
  }
  .item-intro_item:nth-child(2) .pic {
    right: auto;
    top: auto;
    position: relative;
    margin-right: -20px;
    margin-bottom: 36px;
  }
  .item-intro_item:nth-child(2) .pic:before {
    width: 31px;
    height: 50px;
    top: 30px;
    left: auto;
    right: 30px;
  }
  .item-intro_item:nth-child(2) h2 img {
    width: 200px;
  }
  .howto_list {
    margin: 40px 0 72px;
    display: block;
  }
  .howto_list li {
    width: 100%;
    margin: 0 0 64px;
  }
  .howto_list li:last-child {
    margin-bottom: 0;
  }
  .howto_list li h3 {
    margin-bottom: 18px;
  }
  .howto_list li h3 img {
    width: auto !important;
    height: 18px;
  }
  .howto_list li .pic {
    width: 55%;
    margin: 0 auto 16px;
  }
  .howto_list li.anim {
    -webkit-transition-delay: 0s !important;
            transition-delay: 0s !important;
  }
  .howto_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 72px;
  }
  .howto_item .pic_box {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: auto;
    margin: 0 -10px;
  }
  .howto_item .pic_box .txt {
    right: 10px;
  }
  .howto_item .pic_box .txt img {
    width: auto !important;
    height: 29px;
  }
  .howto_item .pic_box .txt.anim {
    -webkit-transition-delay: 0.4s;
            transition-delay: 0.4s;
  }
  .howto_item .txt_box {
    padding: 16px 15px 0;
    text-align: left;
  }
  .howto_item .txt_box h3 {
    font-size: 22px;
    letter-spacing: 0.05em;
  }
  .howto_item .txt_box p {
    letter-spacing: 0.02em;
  }
  .howto_item .txt_box .bg_pic {
    margin-top: 24px;
  }
  .howto_item .txt_box .bg_pic img {
    max-width: 190px;
  }
  .howto_item .txt_box.anim {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  .howto_item:nth-child(2) .pic_box .txt {
    left: 10px;
  }
  .howto_item:nth-child(3) .bg_pic img {
    max-width: 112px;
  }
  /** Omoimoのおもい **/
  .omoi {
    background: url(../images/common/omoi_bg01.png) no-repeat top 80px right/291px, url(../images/common/omoi_bg02.png) no-repeat bottom 48px right/264px, url(../images/common/omoi_bg_sp.png) no-repeat center bottom/cover;
    padding: 100px 0 136px;
    margin-top: -60px;
  }
  .omoi h2 {
    margin: 0 0 40px;
  }
  .omoi h2 img {
    width: 220px;
  }
  .omoi_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 12px;
    margin-bottom: 60px;
  }
  .omoi_item .pic {
    width: 100%;
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 28px;
  }
  .omoi_item .txt_box {
    width: 100%;
    letter-spacing: 0.06em;
  }
  .omoi_item h3 {
    padding-bottom: 12px;
    margin-bottom: 16px;
    background: url(../images/common/omoi_border_sp.png) no-repeat center bottom/contain;
    text-align: center;
  }
  .omoi_item h3 img {
    height: 20px;
  }
  .omoi_item:nth-of-type(2n+1) .txt_box {
    margin-top: 0;
  }
  /** PAGENATION **/
  .pagenation {
    padding-top: 64px;
  }
}

/*# sourceMappingURL=map/common.css.map */
