.area_products .tab_name {
  margin: 35px auto 0;
}

@media screen and (max-width: 768px) {
  .area_products .tab_name {
    width: 600px;
    margin: 8vw auto 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .area_products .tab_name li {
    padding: 1.6vw 2.2%;
    font-size: 3.73333vw;
    letter-spacing: .05em;
  }
  .area_products .tab_body > div {
    margin: 8vw auto 0;
  }
}

.area_products .ul_category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.area_products .ul_category li {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .area_products .ul_category li {
    margin-left: 45px;
  }
  .area_products .ul_category li:nth-child(n+4) {
    margin-top: 50px;
  }
  .area_products .ul_category li:nth-child(3n+1) {
    margin-left: 0;
  }
}

.area_products .ul_category li a {
  display: block;
}

.area_products .ul_category li a .img {
  width: 370px;
  height: 250px;
  line-height: .8;
  position: relative;
  overflow: hidden;
}

.area_products .ul_category li a .img img {
  max-width: 100%;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.area_products .ul_category li a .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1;
}

.area_products .ul_category li a p {
  margin: 16px 0 0;
  letter-spacing: .08em;
}

.area_products .ul_category li a:hover .img {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.area_products .ul_category li a:hover .img::before {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.area_products .ul_category li a:hover p {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  color: #e75298;
}

@media screen and (max-width: 768px) {
  .area_products .ul_category li {
    width: 48%;
  }
  .area_products .ul_category li:nth-child(even) {
    margin-left: 4%;
  }
  .area_products .ul_category li:nth-child(n+3) {
    margin-top: 6vw;
  }
  .area_products .ul_category li a .img {
    width: 100%;
    height: 29.8vw;
  }
  .area_products .ul_category li a p {
    margin: 2vw 0 0;
    line-height: 1.4;
    letter-spacing: initial;
    font-size: 3.73333vw;
  }
}

.area_products .body_tag .ul_tag {
  margin: -10px 0 0 -7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.area_products .body_tag .ul_tag li {
  margin: 10px 0 0 7px;
}

.area_products .body_tag .ul_tag li a {
  padding: 5px 10px;
  display: block;
  background: #f7f5f0;
  font-size: 13px;
}

.area_products .body_problem {
  padding: 45px 40px;
  background: #f7f5f0;
}

.area_products .body_problem .ul_problem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.area_products .body_problem .ul_problem li {
  width: 300px;
  padding: 0 0 0 20px;
  position: relative;
}

.area_products .body_problem .ul_problem li:nth-child(n+4) {
  margin: 30px 0 0;
}

.area_products .body_problem .ul_problem li::before {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  color: #e75298;
  font-size: 13px;
  top: 2px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .area_products .body_problem {
    padding: 8vw 10%;
  }
  .area_products .body_problem .ul_problem {
    display: block;
  }
  .area_products .body_problem .ul_problem li {
    width: initial;
    padding: 0 0 0 1em;
  }
  .area_products .body_problem .ul_problem li:nth-child(n+2) {
    margin: 1.2em 0 0;
  }
}

.area_products .body_keyword {
  padding: 50px 0 80px;
  text-align: center;
  background: #f7f5f0;
}

.area_products .body_keyword .box_search {
  width: 390px;
  margin: 30px auto 0;
  position: relative;
}

.area_products .body_keyword .box_search input[type="text"] {
  width: 100%;
  padding: 20px 20px;
  background: #fff;
  font-size: 18px;
  border-radius: 50px;
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

.area_products .body_keyword .box_search input[type="image"] {
  width: 22px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

@media screen and (max-width: 768px) {
  .area_products .body_keyword {
    padding: 10vw 0 14vw;
  }
  .area_products .body_keyword .box_search {
    width: 90%;
    margin: 6vw auto 0;
  }
  .area_products .body_keyword .box_search input[type="text"] {
    padding: .8em 6%;
    font-size: 4vw;
  }
  .area_products .body_keyword .box_search input[type="image"] {
    width: 5vw;
    right: 4%;
  }
}

.history_movie {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fffeda;
  z-index: -1;
}

.history_movie video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.area_mainvisual {
  text-align: center;
  position: relative;
  z-index: 2;
  background: #fff;
}

.area_mainvisual p {
  width: 100%;
  font-size: 30px;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-shadow: 0 0 60px #000;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  z-index: 10;
}

@media screen and (max-width: 768px) {
  .area_mainvisual {
    text-align: left;
  }
  .area_mainvisual p {
    width: 80vw;
    font-size: 4.8vw;
    line-height: 2;
  }
}

.area_mainvisual .mv_slider {
  height: 600px;
}

.area_mainvisual .mv_slider .ul_slick {
  display: none;
  position: relative;
}

.area_mainvisual .mv_slider .ul_slick.slick-initialized {
  display: block;
}

.area_mainvisual .mv_slider .ul_slick li.slick-slide {
  position: relative;
  margin: 0 10px;
}

@media screen and (min-width: 769px) {
  .area_mainvisual .mv_slider .ul_slick li.slick-slide {
    min-width: 1200px !important;
    height: 600px;
  }
}

.area_mainvisual .mv_slider .slick-arrow {
  width: 64px;
  height: 64px;
  position: absolute;
  z-index: 10;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #e75298;
  border-radius: 64px;
  line-height: .8;
}

.area_mainvisual .mv_slider .slick-arrow img {
  width: 100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.area_mainvisual .mv_slider .slick-arrow:hover {
  background: #fff;
  cursor: pointer;
}

.area_mainvisual .mv_slider .slick-arrow:hover img {
  opacity: .8;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.area_mainvisual .mv_slider .slick-arrow.next {
  right: calc(50% - 640px);
}

.area_mainvisual .mv_slider .slick-arrow.prev {
  left: calc(50% - 640px);
  -webkit-transform: translateY(-50%) rotate(180deg);
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.area_mainvisual .mv_slider .slick-dots {
  width: 100%;
  position: absolute;
  bottom: 30px;
  line-height: 0;
}

.area_mainvisual .mv_slider .slick-dots li {
  width: 12px;
  height: 12px;
  margin: 0 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

.area_mainvisual .mv_slider .slick-dots li button {
  width: 12px;
  height: 12px;
  padding: 5px;
  font-size: 0;
  line-height: 0;
  display: block;
  color: transparent;
  border: 0;
  outline: none;
  background: #f5f5f5;
  cursor: pointer;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 0px 3px rgba(255, 255, 255, 0.3);
}

.area_mainvisual .mv_slider .slick-dots li button:hover, .area_mainvisual .mv_slider .slick-dots li button:focus {
  outline: none;
  background: #e75298;
}

.area_mainvisual .mv_slider .slick-dots li button:hover:before, .area_mainvisual .mv_slider .slick-dots li button:focus:before {
  opacity: 1;
}

.area_mainvisual .mv_slider .slick-dots li.slick-active button {
  background: #e75298;
}

@media screen and (max-width: 768px) {
  .area_mainvisual .mv_slider {
    height: 115vw;
  }
  .area_mainvisual .mv_slider .ul_slick {
    width: 100%;
    height: 115vw;
    display: none;
    position: relative;
  }
  .area_mainvisual .mv_slider .ul_slick.slick-initialized {
    display: block;
  }
  .area_mainvisual .mv_slider .ul_slick li.slick-slide {
    width: 100vw;
    height: 115vw;
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  .area_mainvisual .mv_slider .ul_slick li.slick-slide img {
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .area_mainvisual .mv_slider .slick-arrow {
    width: 10vw;
    height: 10vw;
  }
  .area_mainvisual .mv_slider .slick-arrow.next {
    right: 2%;
  }
  .area_mainvisual .mv_slider .slick-arrow.prev {
    left: 2%;
  }
  .area_mainvisual .mv_slider .slick-dots {
    width: 100vw;
    text-align: center;
    bottom: 7vw;
  }
  .area_mainvisual .mv_slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 0 3vw;
  }
  .area_mainvisual .mv_slider .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 5px;
  }
}

.area_topics {
  padding: 30px 0 0;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .area_topics {
    display: none !important;
  }
}

.box_topics {
  width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-radius: 30px;
  overflow: hidden;
  background: #f5f5f5;
}

.box_topics .tit {
  width: 180px;
  padding: 20px 20px;
  background: #e75298;
  color: #fff;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.box_topics .tit span {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15px;
}

.box_topics .ticker {
  width: 1020px;
  height: 50px;
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
}

.box_topics .ticker ul {
  width: 100%;
  position: relative;
}

.box_topics .ticker ul li {
  width: 100%;
  display: none;
}

.box_topics .ticker ul li a {
  display: block;
}

.box_topics .ticker ul li a::after {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  top: -2px;
  right: 0;
  font-size: 18px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.box_topics .ticker ul li a:hover {
  color: #e75298;
}

.box_topics .ticker ul li a:hover::after {
  right: -8px;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.box_topics .ticker ul li dl {
  display: inline-block;
}

.box_topics .ticker ul li dl dt {
  display: inline-block;
}

.box_topics .ticker ul li dl dd {
  padding-left: 20px;
  display: inline-block;
}

.area_products {
  margin: 0 auto;
  padding: 70px 0 120px;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .area_products {
    margin: 0 auto;
    padding: 11vw 0 15vw;
  }
  .area_products .tab_name {
    width: 600px;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .area_products .tab_name li {
    min-width: unset;
    padding: 1.8vw 1.2%;
  }
  .area_products .tab_name li + li {
    margin-left: 1%;
  }
}

.area_history {
  margin: 0 auto;
  padding: 46px 0 90px;
  position: relative;
  background: #fffed5;
}

.area_history .box_history {
  text-align: center;
  position: relative;
  z-index: 3;
}

.area_history .box_history .tit_history {
  width: 232px;
  margin: 0 auto;
  position: relative;
  left: -14px;
}

.area_history .box_history .tit_history img {
  width: 100%;
}

.area_history .box_history .logomark {
  width: 544px;
  margin: 25px auto 0;
}

.area_history .box_history .logomark img {
  width: 100%;
}

.area_history .box_history p {
  margin: -14px auto 0;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: .1em;
}

.area_history .box_history .btn {
  width: 300px;
  margin: 42px auto 0;
}

.area_history .box_history .btn a {
  width: 100%;
  padding: 22px 30px 22px 90px;
  display: block;
  color: #fff;
  background: #e75298;
  border: 2px solid #e75298;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  letter-spacing: .05em;
  position: relative;
}

.area_history .box_history .btn a::before {
  content: '';
  display: block;
  width: 52px;
  height: 52px;
  background: url(/assets/img/top/history_btn.png) no-repeat center top/100%;
  position: absolute;
  top: 8px;
  left: 7px;
}

.area_history .box_history .btn a:hover {
  background: #fff;
  color: #e75298;
}

.area_history .box_history .btn a:hover::before {
  background: url(/assets/img/top/history_btn_hover.png) no-repeat center top/100%;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .area_history {
    padding: 9vw 0 15vw;
  }
  .area_history .box_history {
    width: 100%;
  }
  .area_history .box_history .tit_history {
    width: 49vw;
    left: -3vw;
  }
  .area_history .box_history .logomark {
    width: 100%;
    margin: 6vw auto 0;
  }
  .area_history .box_history .logomark img {
    width: 100%;
  }
  .area_history .box_history p {
    margin: -2vw auto 0;
    font-size: 6.4vw;
    line-height: 1.6;
  }
  .area_history .box_history .btn {
    width: 86%;
    margin: 8vw auto 0;
  }
  .area_history .box_history .btn a {
    padding: 6vw 4% 6vw 31%;
    font-size: 4.26667vw;
  }
  .area_history .box_history .btn a::before {
    width: 14vw;
    height: 14vw;
    top: 2.2vw;
    left: 2vw;
  }
}

.modalInner {
  width: 1005px;
}

@media screen and (max-width: 768px) {
  .modalInner {
    width: 92%;
  }
  .modalInner video.modal_video {
    width: 100% !important;
  }
}

.area_column {
  padding: 80px 0 120px;
}

.area_column .btn {
  width: 240px;
  margin: 70px auto 0;
}

.area_column .btn a {
  width: 100%;
  padding: 14px 0;
  display: block;
  border: 1px solid #222;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: #222;
  position: relative;
}

.area_column .btn a::after {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.area_column .btn a:hover {
  background: #222;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .area_column {
    padding: 10vw 0 14vw;
  }
  .area_column .btn {
    width: 70%;
    margin: 12vw auto 0;
  }
  .area_column .btn a {
    width: 100%;
    padding: 14px 0;
    display: block;
    border: 1px solid #222;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    color: #222;
    position: relative;
  }
  .area_column .btn a::after {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    font-size: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
  }
  .area_column .btn a:hover {
    background: #222;
    color: #fff;
  }
}

.area_column .wrap_category {
  height: 100%;
  position: relative;
  line-height: .8;
}

.area_column .wrap_category .category {
  padding: 7px 8px;
  background: #222;
  color: #fff;
  line-height: 1;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 13px;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .area_column .wrap_category .category {
    min-width: 6.4em;
    padding: 1vw 4%;
    font-size: 2.66667vw;
  }
}

.ul_column {
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ul_column > li {
  width: 370px;
}

.ul_column > li .img {
  width: 100%;
  height: 260px;
  overflow-y: hidden;
  position: relative;
  line-height: .8;
}

.ul_column > li .img img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.ul_column > li .box_text {
  margin: 15px 0 0;
}

.ul_column > li .box_text .time {
  margin: 2px 0 0;
  color: #999;
}

.ul_column > li .box_text .title {
  font-size: 20px;
  line-height: 1.8;
}

.ul_column > li a {
  height: 100%;
  padding: 0 0 12px;
  display: block;
}

.ul_column > li a .wrap_category::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  z-index: 1;
}

.ul_column > li a:hover .wrap_category {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.ul_column > li a:hover .wrap_category::before {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.ul_column > li a:hover .box_text .title {
  color: #e75298;
}

@media screen and (max-width: 768px) {
  .ul_column {
    margin: 4.6vw auto 0;
    border-top: 1px solid #ccc;
  }
  .ul_column > li {
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .ul_column > li a {
    padding: 4vw 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .ul_column > li .img {
    width: 33%;
    height: 21vw;
    padding: 0;
  }
  .ul_column > li .box_text {
    width: 64%;
    margin: 0;
  }
  .ul_column > li .box_text .time {
    margin: 0;
    font-size: 3.2vw;
  }
  .ul_column > li .box_text .title {
    font-size: 4vw;
    line-height: 1.5;
  }
}

.area_recepe {
  padding: 70px 0 120px;
  background: #f7f5f0;
  z-index: 5;
}

.area_recepe .ul_recipe,
.area_recepe .ul_recipe_ie {
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.area_recepe .ul_recipe li,
.area_recepe .ul_recipe_ie li {
  width: 270px;
}

@media screen and (min-width: 769px) {
  .area_recepe .ul_recipe li,
  .area_recepe .ul_recipe_ie li {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
    -webkit-transition: ease-out .5s;
    -o-transition: ease-out .5s;
    transition: ease-out .5s;
  }
  .area_recepe .ul_recipe li.in,
  .area_recepe .ul_recipe_ie li.in {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    -webkit-transition: ease-out .5s;
    -o-transition: ease-out .5s;
    transition: ease-out .5s;
  }
}

.area_recepe .ul_recipe li .img,
.area_recepe .ul_recipe_ie li .img {
  line-height: .8;
  position: relative;
}

.area_recepe .ul_recipe li .img::before,
.area_recepe .ul_recipe_ie li .img::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.area_recepe .ul_recipe li .img img,
.area_recepe .ul_recipe_ie li .img img {
  width: 100%;
}

.area_recepe .ul_recipe li .name,
.area_recepe .ul_recipe_ie li .name {
  margin: 14px 0 0;
  font-weight: 500;
}

.area_recepe .ul_recipe li .time,
.area_recepe .ul_recipe_ie li .time {
  margin: 13px 0 0;
  padding: 10px 0 0 18px;
  border-top: 1px solid #ccc;
  color: #666;
  font-weight: 500;
  position: relative;
}

.area_recepe .ul_recipe li .time::after,
.area_recepe .ul_recipe_ie li .time::after {
  content: '\f017';
  font-family: "FontAwesome";
  position: absolute;
  top: 11px;
  left: 0;
}

.area_recepe .ul_recipe li a,
.area_recepe .ul_recipe_ie li a {
  display: block;
}

.area_recepe .ul_recipe li a:hover .img,
.area_recepe .ul_recipe_ie li a:hover .img {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.area_recepe .ul_recipe li a:hover .img::before,
.area_recepe .ul_recipe_ie li a:hover .img::before {
  -webkit-box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
  box-shadow: inset 0px 0px 0px 12px rgba(231, 82, 152, 0.5);
}

.area_recepe .ul_recipe_ie li {
  opacity: 1;
}

.area_recepe .btn {
  width: 240px;
  margin: 74px auto 0;
}

.area_recepe .btn a {
  width: 100%;
  padding: 14px 0;
  display: block;
  border: 1px solid #222;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: #222;
  position: relative;
}

.area_recepe .btn a::after {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.area_recepe .btn a:hover {
  background: #222;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .area_recepe {
    padding: 9vw 0 16vw;
  }
  .area_recepe .ul_recipe {
    margin: 8vw auto 0;
  }
  .area_recepe .ul_recipe li {
    width: 48%;
    font-size: 3.73333vw;
  }
  .area_recepe .ul_recipe li:nth-child(n + 3) {
    margin-top: 10vw;
  }
  .area_recepe .ul_recipe li .name {
    margin: 1vw 0 0;
    line-height: 1.7;
  }
  .area_recepe .ul_recipe li .time {
    margin: 3vw 0 0;
    padding: 3vw 0 0 5vw;
  }
  .area_recepe .ul_recipe li .time::after {
    top: 3vw;
  }
  .area_recepe .btn {
    width: 70%;
    margin: 12vw auto 0;
  }
}

.area_news {
  margin: 0 auto;
  padding: 80px 0;
  background: #fff;
}

.area_news .box_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.area_news .box_left {
  width: 300px;
  padding: 60px 0 0;
  position: relative;
}

@media screen and (min-width: 769px) {
  .area_news .box_left .tit_section {
    text-align: left;
  }
  .area_news .box_left .tit_section span {
    margin: 15px 0 0;
  }
  .area_news .box_left .tit_section::after {
    left: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.area_news .box_left .btn {
  width: 190px;
  margin: 200px 0 0;
}

.area_news .box_left .btn a {
  width: 100%;
  padding: 14px 0;
  display: block;
  border: 1px solid #222;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  color: #222;
  position: relative;
}

.area_news .box_left .btn a::after {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  font-size: 18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
}

.area_news .box_left .btn a:hover {
  background: #222;
  color: #fff;
}

.area_news .box_right {
  width: 900px;
}

.area_news .box_right .tab_name2 {
  width: 530px;
  margin: 0 auto 0;
}

.area_news .box_right .tab_body2 > div {
  margin: 30px 0 0;
}

.area_news .box_right .tab_body2 .ul_news {
  border-top: 1px solid #ccc;
}

.area_news .box_right .tab_body2 .ul_news li {
  border-bottom: 1px solid #ccc;
}

.area_news .box_right .tab_body2 .ul_news li a {
  padding: 18px 0;
  display: block;
  position: relative;
}

@media screen and (min-width: 769px) {
  .area_news .box_right .tab_body2 .ul_news li a::after {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    color: #e75298;
    font-size: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
  .area_news .box_right .tab_body2 .ul_news li a:hover {
    background: #f5f5f5;
  }
  .area_news .box_right .tab_body2 .ul_news li a:hover::after {
    right: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
  }
}

.area_news .box_right .tab_body2 .ul_news li a dl dt .mark {
  width: 100px;
  margin: 0 0 0 36px;
  display: inline-block;
  color: #e75298;
  font-size: 12px;
  border: 1px solid #e75298;
  border-radius: 20px;
  text-align: center;
}

.area_news .box_right .tab_body2 .ul_news li a dl dd {
  margin: 10px 0 0;
}

@media screen and (max-width: 768px) {
  .area_news .box_wrap {
    display: block;
  }
  .area_news .box_left {
    width: 100%;
    padding: 0;
  }
  .area_news .box_right {
    width: 100%;
  }
  .area_news .box_right .tab_name2 {
    width: 450px;
    margin: 8vw auto 0;
  }
  .area_news .box_right .tab_body2 > div {
    margin: 8vw auto 0;
  }
  .area_news .box_right .tab_body2 .ul_news li a {
    padding: 4vw 0;
  }
  .area_news .box_right .tab_body2 .ul_news li a dl dt .mark {
    width: 8em;
    margin: 0 0 0 9%;
    padding: 0;
    font-size: 3.2vw;
  }
  .area_news .box_right .tab_body2 .ul_news li a dl dd {
    margin: 3vw 0 0;
    line-height: 1.8;
    font-size: 3.73333vw;
  }
  .area_news .box_right .btn {
    width: 70%;
    margin: 10.6vw auto 0;
  }
  .area_news .box_right .btn a {
    width: 100%;
    padding: 14px 0;
    display: block;
    border: 1px solid #222;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    color: #222;
    position: relative;
  }
  .area_news .box_right .btn a::after {
    content: '\f105';
    font-family: "FontAwesome";
    position: absolute;
    font-size: 18px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 20px;
  }
  .area_news .box_right .btn a:hover {
    background: #222;
    color: #fff;
  }
}

.area_instagram {
  line-height: 1;
  margin: 0 auto;
  position: relative;
  background: #fff;
}

.area_instagram a {
  display: block;
}

.area_instagram a:hover {
  opacity: .7;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  .area_instagram {
    padding: 80px 0;
  }
  .area_instagram .tit_instagram {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .area_instagram .ul_instagram {
    width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .area_instagram .ul_instagram li {
    width: 231px;
  }
  .area_instagram .ul_instagram li:nth-of-type(n+2) {
    margin-left: 12px !important;
  }
  .area_instagram .ul_instagram li:nth-of-type(3) {
    margin-left: 252px !important;
  }
  .area_instagram .ul_instagram li:nth-of-type(5) {
    display: none;
  }
  .area_instagram .ul_instagram li img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .area_instagram {
    width: 100%;
    padding: 16vw 4%;
  }
  .area_instagram .tit_instagram {
    width: 45.1vw;
    position: absolute;
  }
  .area_instagram .ul_instagram {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .area_instagram .ul_instagram li {
    width: 45.1vw;
    height: 45.1vw;
  }
  .area_instagram .ul_instagram li:nth-of-type(odd) {
    margin-left: 1.7vw !important;
  }
  .area_instagram .ul_instagram li:first-of-type {
    margin-left: 51% !important;
  }
  .area_instagram .ul_instagram li:nth-of-type(n+2) {
    margin-top: 1.7vw !important;
  }
}

footer {
  background: #fff;
}

footer .box_banner {
  margin: 0 auto;
}
