@charset "UTF-8";

/* 
l_ 他のページ全体でも使う汎用的なレイアウト
m_ 他のページ全体でも使う汎用的なモジュール
top_ トップページにのみ適用させるクラス
recipe_ レシピページにのみ適用させるクラス
*/

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
reset
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

.mainContents button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.mainContents p {
  padding: 0;
  margin: 0;
}

.mainContents ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mainContents h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.mainContents a {
  color: inherit;
  text-decoration: none;
}

.mainContents a:hover {
  text-decoration: none;
}


.mainContents img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
メイン
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

html {
  scroll-padding-top: 64px;
}

.mainContents .pc {
  display: block;
}
.mainContents .sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .mainContents .pc {
    display: none;
  }
  .mainContents .sp {
    display: block;
  }
  body {
    min-width: 100%;
  }
}

.mainContents {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
}

.mainContents .main_wrap {
  contain: paint;
}

.mainContents .main_wrap a:hover img{
  opacity: 1;
}


.mainContents .m_nav-container {
  width: 100%;
  background: #550008;
  height: 67px;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 100;
}

@media screen and (max-width: 1080px) {
  .mainContents .m_nav-container {
    top: 0;
  }
}

.mainContents .m_nav-container.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.mainContents .m_nav-inner {
  padding: 0 16px;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .mainContents .m_nav-inner {
    justify-content: space-between;
  }
}

.mainContents .m_nav-logo {
  width: 68px;
}

.mainContents .m_hamburger {
  width: 43px;
  height: 38px;
  transform: translateY(3px);
  /* safari対策 */
}

.mainContents .m_hamburger_bar-wrap {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 28px;
  height: 20px;
  position: relative;
}

.mainContents .m_hamburger_bar {
  width: 100%;
  border-radius: 8px;
  height: 2px;
  position: absolute;
  background: #fff;
  left: 50%;
  transition: 0.2s;
}

.mainContents .m_hamburger_bar:first-child {
  top: 0;
  transform: translate(-50%, 0%);
}

.mainContents .m_hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.mainContents .m_hamburger_bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

@media screen and (max-width: 768px) {
  .mainContents .m_hamburger.is-active .m_hamburger_bar:first-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mainContents .m_hamburger.is-active .m_hamburger_bar:nth-child(2) {
    opacity: 0;
  }
  .mainContents .m_hamburger.is-active .m_hamburger_bar:last-child {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

.mainContents .m_hamburger_text {
  width: 100%;
  height: 14px;
}
@media screen and (max-width: 768px) {
  .mainContents .m_nav {
    position: absolute;
    transform: translate(100%, calc(100% - 67px));
    bottom: -100%;
    right: 0;
    transition: 0.4s;
    background: #550008;
    width: 328px;
    text-align: center;
    border-top: 1px solid #EFE4D2;
  }

  .mainContents .m_nav.is-active {
    transform: translate(0%, calc(100% - 67px));
  }
}

.mainContents .m_nav-list {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .mainContents .m_nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #efe4d2;
  }
}

.mainContents .m_nav-list_item {
  position: relative;
  padding-left: 38px;
  padding-right: 38px;
}

@media screen and (max-width: 1080px) {
  .mainContents .m_nav-list_item {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media screen and (max-width: 768px) {
  .mainContents .m_nav-list_item {
    padding: 24px 0;
    width: 100%;
    height: 100%;
  }
}

.mainContents .m_nav-list_item:first-child {
  padding-left: 0;
}

.mainContents .m_nav-list_item:last-child {
  padding-right: 0;
}

.mainContents .m_nav-list_item:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 34px;
  width: 3px;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background-image: url(/products/special/gratin/img/common/nav_line-pc.svg);
}

@media screen and (max-width: 768px) {
  .mainContents .m_nav-list_item:not(:last-child)::after {
    background-image: url(/products/special/gratin/img/common/nav_line-sp.svg);
    width: 100%;
    height: 3px;
    top: auto;
    transform: translateY(0%);
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .mainContents .m_nav-list_item img{
  width: auto;
}
}


.mainContents .m_seciton_top-line {
  position: absolute;
  background-image: url(/products/special/gratin/img/top/section_top-line_pc.svg);
  top: 0;
  left: 0;
  width: 100%;
  height: 15px;
}

.mainContents .l_container {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
TOPページ 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

.mainContents .top_section01 {
  background: url(/products/special/gratin/img/top/section01_bg_pc.svg)
    no-repeat top / cover;
  padding: 83px 0 35px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section01 {
    background: url(/products/special/gratin/img/top/section01_bg_sp.svg)
      no-repeat top / cover;
    padding: 32px 0 70px;
  }
}

.mainContents .top_section01_banner-wrap {
  padding-left: 28px;
  padding-right: 28px;
  max-width: 1024px;
  margin: 0 auto;
}

.mainContents .top_section01_title {
  margin-top: 118px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section01_title {
    margin-top: 48px;
  }
}

.mainContents .top_section01-future {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section01-future {
    margin-top: 16px;
    flex-direction: column;
  }
}

.mainContents .top_section01_future-item {
  max-width: 590px;
  margin-left: auto;
  margin-right: auto;
}

.mainContents .top_section01_future-item:last-child {
  max-width: 845px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section01_future-item:not(:first-child) {
    margin-top: -24px;
  }
  .mainContents .top_section01_future-item:last-child {
    max-width: 548px;
  }
}

.mainContents .top_section02 {
  background: #efe4d2
    url(/products/special/gratin/img/top/section02_bg-lattice_pc.svg) no-repeat
    top / cover;
  padding: 70px 0 55px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section02 {
    padding: 64px 0 48px;
  }
}

.mainContents .top_section03 {
  background-color: #fffbf4;
  padding: 65px 0 170px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section03 {
    padding: 70px 0 30px;
  }
}

.mainContents .top_section03_title {
  display: block;
  max-width: 704px;
  margin-left: auto;
  margin-right: auto;
}

.mainContents .top_section03_step-inner {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section03_step-inner {
    max-width: 300px;
    flex-direction: column;
    margin: 6px auto;
  }
}

.mainContents .top_section03_step-item {
  max-width: 302px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section03_step-item {
    max-width: 100%;
  }
  .mainContents .top_section03_step-item:first-child {
    margin-bottom: 70px;
  }
}

.mainContents .top_section03_step-item-img {
  margin-top: 8px;
}

.mainContents .top_section03_step-item-bubble {
  position: absolute;
  bottom: 0;
  transform: translateY(80%);
}

@media screen and (max-width: 768px) {
  .mainContents .top_section03_step-item-bubble {
    max-width: 280px;
    transform: translate(4%, 70%);
  }
}



.mainContents .top_section04 {
  background-color: #efe4d2;
  padding: 96px 0 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04 {
    padding: 60px 0 75px;
  }
}

.mainContents .top_section04_title {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}

.mainContents .top_section04_list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px 61px;
  margin-top: 64px;
  padding: 0 40px;
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section04_list {
    padding: 0 16px 0 48px;
    /* gap: 24px; */
    justify-content: center;
    margin-top: 24px;
  }
}

.mainContents .top_section04_item {
  width: calc((100% - 61px * 2) / 3);
  position: relative;
  -webkit-filter: drop-shadow(0px 10px 10px #90552e40);
  filter: drop-shadow(0px 10px 10px #90552e40);
  /* box-shadow: 0px 10px 10px 0px #90552e40; */
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section04_item {
    width: calc((100% - 32px * 1) / 2);
  }
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04_item {
    width: 100%;
    max-width: 352px;
  }
}

.mainContents .top_section04_item-pkg {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 85px;
}

.mainContents .top_section04_item-img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.mainContents .top_section04_item-content {
  background: #fff;
  padding: 10px 43px 10px 14px;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.mainContents .top_section04_item-content::after {
  content: "";
  position: absolute;
  background: url(/products/special/gratin/img/common/arrow_white-right.svg)
    no-repeat center/contain;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.mainContents .top_section04_item-name {
  width: 270px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 600;
}

.mainContents .top_section04_item:hover .top_section04_item-name {
  color: #ff8e15;
}

.mainContents .top_section04_banner {
  display: flex;
  border-radius: 10px;
  max-width: 900px;
  height: 145px;
  margin: 100px auto 0;
  position: relative;
  box-shadow: 0px 10px 10px 0px #90552e40;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04_banner {
    margin-top: 75px;
    flex-direction: column;
    max-width: 358px;
    height: 280px;
    padding: 0 16px;
    box-shadow: none;
  }
}

.mainContents .top_section04_banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url(/products/special/gratin/img/common/arrow_white-right.svg);
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04_banner::after {
    top: 80%;
    right: 24px;
  }
}

.mainContents .top_section04_banner-img {
  width: 326px;
  flex-shrink: 0;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04_banner-img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
}

.mainContents .top_section04_banner-content {
  background-color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section04_banner-content {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 0px 10px 10px 0px #90552e40;
  }
}

.mainContents .top_section04_banner-text {
  max-width: 448px;
}



@media screen and (max-width: 768px) {
  .mainContents .top_section04_banner-text {
    margin-left: -10px;
  }
}


.mainContents .top_section05 {
  padding: 100px 0 100px;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section05 {
    padding: 60px 0 100px;
  }
}

.mainContents .top_section05_title {
  display: block;
  max-width: 416px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mainContents .top_section05_title {
    max-width: 236px;
  }
}

.mainContents .top_section05_container {
  display: flex;
  margin-top: 46px;
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section05_container {
    margin-top: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.mainContents .top_section05_inner {
  display: flex;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section05_inner {
    flex-direction: column;
    margin-bottom: 100px;
  }
}

.mainContents .top_section05_inner:first-child:after {
  position: absolute;
  background-image: url(/products/special/gratin/img/top/section05_line_pc.svg);
  width: 2px;
  height: 535px;
  content: "";
  top: 24px;
  right: 0;
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section05_inner:first-child:after {
    background-image: url(/products/special/gratin/img/top/section05_line_sp.svg);
    width: 358px;
    height: 2px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    bottom: -120px;
  }
}

@media screen and (max-width: 1080px) {
  .mainContents .top_section05_inner:nth-child(2) {
    margin-top: 40px;
  }
}

.mainContents .top_section05_unit {
  max-width: 420px;
}

.mainContents .top_section05_pkg-wrap {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 14px;
}

.mainContents .top_section05_unit__gratin .top_section05_pkg-wrap {
  gap: 0;
}

.mainContents .top_section05_unit-pkg-lg {
  width: 175px;
  flex-shrink: 0;
}

.mainContents .top_section05_unit-pkg-sm {
  width: 122px;
}

.mainContents .top_section05_unit__gratin .top_section05_unit-pkg-lg {
  width: 188px;
  flex-shrink: 0;
}
.mainContents .top_section05_unit__gratin .top_section05_unit-pkg-sm {
  width: 136px;
}

.mainContents .top_section05_btn {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff8e15;
  color: #fff;
  width: 260px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0px 5px 5px 0px #90552e40;
}

.mainContents .top_section05_btn:hover {
  background-color: #e77700;
}

.mainContents .top_section05_btn-arrow {
  width: 25px;
  height: 25px;
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
レシピページ 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

.mainContents .recipe_anchor_section {
  background: #fffbf4 url(/products/special/gratin/img/recipe/anchor_bg.svg)
    no-repeat top / cover;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_anchor_section {
    padding: 37px 0;
  }
}

.mainContents .recipe_anchor_inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1080px) {
  .mainContents .recipe_anchor_inner {
    flex-direction: column;
    gap: 19px;
  }
}

.mainContents .recipe_anchor_btn {
  width: 352px;
  height: 110px;
  position: relative;
  border: 3px solid #ff8e15;
  border-radius: 12px;
  box-shadow: 0px 10px 10px 0px #90552e40;
  background-color: #fff;
}

.mainContents .recipe_anchor_btn-link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}


.mainContents .recipe_anchor_btn:nth-child(1) .recipe_anchor_btn-link {
  max-width: 276px;
  left: 25px;
}
.mainContents .recipe_anchor_btn:nth-child(2) .recipe_anchor_btn-link {
  max-width: 276px;
  left: 25px;
}
.mainContents .recipe_anchor_btn:nth-child(3) .recipe_anchor_btn-link {
  max-width: 194px;
  left: 59px;
}

.mainContents .recipe_anchor_btn::after {
  content: "";
  position: absolute;
  height: 25px;
  width: 25px;
  background: url(/products/special/gratin/img/common/arrow_white-bottom.svg)
    no-repeat center/contain;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.mainContents .recipe_section01 {
  padding: 53px 0 106px;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_section01 {
    padding: 46px 0 76px;
  }
}

.mainContents .recipe_section01_title {
  display: block;
  max-width: 802px;
  margin: 0 auto;
}

.mainContents .recipe_section01_pattern01 {
  display: block;
  margin: 81px auto 0;
  max-width: 476px;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_section01_pattern01 {
    max-width: 256px;
    margin: -15px auto;
  }
}

.mainContents .recipe_card_list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 32px;
  column-gap: 32px;
  margin-top: 40px;
  padding: 0 40px;
}

.mainContents #meet-souse .recipe_card_list {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .mainContents #meet-souse .recipe_card_list {
    margin-top: 0px;
  }
}

.mainContents #hokkaido-gratin .recipe_card_list {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  .mainContents #hokkaido-gratin .recipe_card_list {
    margin-top: 6px;
  }
}

@media screen and (max-width: 1080px) {
  .mainContents .recipe_card_list {
    gap: 32px;
    justify-content: center;
    margin-top: 40px;
  }
}

.mainContents .recipe_card_item {
  width: calc((100% - 32px * 3) / 4);
  position: relative;
  -webkit-filter: drop-shadow(0px 10px 10px #90552e40);
  filter: drop-shadow(0px 10px 10px #90552e40);
}

@media screen and (max-width: 1080px) {
  .mainContents .recipe_card_item {
    width: calc((100% - 32px * 1) / 2);
  }
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_card_item {
    width: 256px;
    max-width: 352px;
  }
}

.mainContents .recipe_card_item-pkg {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 85px;
}

.mainContents .recipe_card_item-img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.mainContents .recipe_card_item-content {
  background: #fff;
  position: relative;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 78px;
  position: relative;
}

.mainContents .recipe_card_list__wide .recipe_card_item-content {
  height: 107px;
}

.mainContents .recipe_card_item-content::after {
  content: "";
  position: absolute;
  background: url(/products/special/gratin/img/common/arrow_white-right.svg)
    no-repeat center/contain;
  width: 25px;
  height: 25px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.mainContents .recipe_card_item-name {
  width: 200px;
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 600;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
}

.mainContents .recipe_card_item:hover .recipe_card_item-name {
  color: #ff8e15;
}

.mainContents .recipe_section01_pattern02 {
  display: block;
  margin: 72px auto 0;
  max-width: 324px;
}
.mainContents .recipe_section01_pattern03 {
  display: block;
  margin: 74px auto 0;
  max-width: 490px;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_section01_pattern02 {
    max-width: 276px;
  }
  .mainContents .recipe_section01_pattern03 {
    max-width: 252px;
    margin: 66px auto 0;
  }
}

.mainContents .recipe_section02 {
  padding: 80px 0 100px;
  background-color: #efe4d2;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_section02 {
    padding: 27px 0 63px;
    background-color: #efe4d2;
  }
}

.mainContents .recipe_section02_title {
  display: block;
  max-width: 802px;
  margin: 0 auto;
}
html
.mainContents .recipe_section03 {
  padding: 72px 0 125px;
  background-color: #fffbf4;
}

@media screen and (max-width: 768px) {
  .mainContents .recipe_section03 {
    padding: 27px 0 125px;
  }
}

.mainContents .recipe_section03_title {
  display: block;
  max-width: 802px;
  margin: 0 auto;
}

/* 
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
sns
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
*/

.mainContents .sns_area {
  display: flex;
  justify-content: center;
  padding-top: 13px;
  margin: 60px auto 0px;
}
@media screen and (max-width: 768px) {
  .mainContents .sns_area {
    padding: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.mainContents .sns_area li a {
  display: block;
  width: 78px;
  margin: 0 25px;
}
@media screen and (max-width: 768px) {
  .mainContents .sns_area li a {
    width: 16.5333vw;
    margin: 0 10px;
  }
}
.mainContents .sns_area img {
  width: 100%;
  height: auto;
}
