@charset "euc-jp";

/* Common Style
==================================================================================== */
header {
  border-bottom: none;
}
#container {
  background: none;
  padding-bottom: 0;
}
#Products a,
#Products img {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}
#Products a:hover,
#Products img:hover {
  opacity: 0.7;
  text-decoration: none;
}

h2,
h3 {
  font-weight: 600;
}
h2 {
  margin: 40px 0;
  font-size: 21px;
  line-height: 1;
  text-align: center;
  position: relative;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  border-radius: 2px;
}
@media screen and (min-width: 769px) {
  h2 {
    margin: 60px 0 50px 0;
    font-size: 30px;
  }
  h2::after {
    bottom: -20px;
    width: 60px;
  }
}

/*----- mainimg -----*/
#slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 60px;
  box-sizing: border-box;
}
#slider a,
#slider button,
#slider li {
  box-sizing: border-box;
  border: none !important;
}

/*----- slick.css
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  /* float: left;
  height: 100%;
  min-height: 1px; */
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Dots */
.slick-dots {
  /* position: absolute;
  bottom: -32px; */
  display: flex !important;
  justify-content: center !important;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  margin-top: 30px;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 !important;
  padding: 0;
  width: 15px !important;
}

.slick-dots li button {
  box-sizing: border-box;
  font-size: 0;
  line-height: 0;
  vertical-align: middle;
  background: #999;
  display: block;
  width: 15px !important;
  height: 2px !important;
  cursor: pointer;
  background: #7b191e;
  opacity: 0.3;
  padding: 0;
  border: none;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #7b191e;
  opacity: 1;
}

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

.slick-dots li.slick-active button {
  background: #7b191e;
  opacity: 1;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  top: calc(50% - 13px);
  display: block;
  background: none;
  width: 10px;
  height: 20px;
  padding: 0;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .slick-prev,
  .slick-next {
    width: 10px;
    height: 20px;
    top: calc(50% - 17px);
  }
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  opacity: 1;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 1;
}

.slick-prev {
  left: -50px !important;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-color: transparent transparent #7b191e #7b191e;
  transform: rotate(45deg);
}
.slick-next {
  right: -50px !important;
  z-index: 1;
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-color: #7b191e #7b191e transparent transparent;
  transform: rotate(45deg);
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  display: block;
}

.slider_sample {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slider_sample.slick-initialized {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .slick-prev {
    left: 15px;
  }
  .slick-next {
    right: 15px;
  }
}
/*----- end.mainimg -----*/

/*----- Products -----*/
.main_image {
  margin: 0 auto;
  background: #fcfaf7;
}
@media screen and (min-width: 769px) {
  .main_image {
    margin: -72px auto 0;
  }
}
#Products {
  box-sizing: border-box;
  /* width: 100%;
	max-width: 1440px; */
  margin: 0 auto;
  background: #fcfaf7;
}
#Products .pc_caution {
  width: 100%;
  max-width: 1200px;
  padding: 60px 0 0 0;
  margin: -20px auto 0;
  text-align: center;
  color: #651c06;
  opacity: 1;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0px;
}
#Products .tit_caution {
  font-size: 20px;
  line-height: 2.9;
}
@media screen and (max-width: 769px) {
  #Products .pc_caution {
    width: 100%;
    max-width: 1200px;
    padding: 80px 0 0 0;
    margin: -20px auto 0;
    text-align: center;
    color: #651c06;
    opacity: 1;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.875;
    letter-spacing: 0px;
  }
}
@media screen and (max-width: 769px) {
  #Products .tit_caution {
    font-size: 18px;
    line-height: normal;
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .sp-br {
    display: none;
  }
}

/* SP（768px以下）：改行を表示する */
@media screen and (max-width: 768px) {
  .sp-br {
    display: inline;
  }
}

/*----- メディア -----*/
.corner_tv {
  width: 100%;
  max-width: 1440px;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .corner_tv {
    margin: 60px auto 0;
  }
}
.tv_main_image {
  width: 100%;
  text-align: center;
}
.tv_main_image img {
  width: 270px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 769px) {
  .tv_main_image img {
    width: 200px;
    margin: 0 auto 40px;
  }
}
.tv_coment {
  width: 100%;
  font-size: 20px;
  text-align: center;
  color: #831f0f !important;
  box-sizing: border-box;
  margin: 0 auto 50px;
}
@media screen and (max-width: 769px) {
  .tv_coment {
    width: 100%;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
    color: #831f0f !important;
    box-sizing: border-box;
    margin: 0 auto 50px;
  }
}

.tv_screen {
  width: 110%;
  padding: 0 250px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
.tv_screen div {
  width: 31.7%;
}
@media screen and (max-width: 769px) {
  .tv_screen {
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .tv_screen .tv-a {
    width: 100%;
    text-align: center;
  }
  .tv_screen .tv-a img {
    width: 45%;
  }

  .tv_screen .tv-b,
  .tv_screen .tv-c {
    display: inline-block;
    width: 45%;
  }
}
.media_area {
  width: 100%;
  max-width: 1440px;
  margin: 120px auto 160px;
  padding: 0 170px;
}
@media screen and (max-width: 769px) {
  .media_area {
    margin: 60px auto;
    padding: 0 30px;
  }
}

.media_box {
  position: relative;
  z-index: 1;
  background: #e1dfbb;
  border: 1px solid #7b191e;
  border-radius: 20px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}

@media screen and (max-width: 769px) {
  .media_box {
    padding: 7px;
  }
}
.media_inner {
  padding: 50px 0 60px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #7b191e;
  border-radius: 15px;
}
.media_inner .tit_media {
  font-size: 50px;
  color: #831f0f;
  margin: 0 auto -0.65em !important;
}
.media_inner .jpn {
  font-size: 20px;
  color: #831f0f;
}
.media_coment {
  width: 100%;
  max-width: 774px;
  margin: 0 auto 1.5em;
  text-align: center;
  color: #651c06;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
}

.media_program {
  width: 100%;
  padding: 0 100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .media_program .p01 {
    width: 25.5%;
  }
  .media_program .p02 {
    width: 20.9%;
  }
  .media_program .p03 {
    width: 24%;
  }
  .media_program .p04 {
    width: 21.28%;
  }
}
.media_inner .title_area {
  width: 100%;
  text-align: center;
  padding: 0 0 30px;
}
@media screen and (max-width: 769px) {
  .media_inner {
    padding: 30px 0 40px;
  }
  .media_inner .tit_media {
    font-size: 40px;
    color: #831f0f;
    margin: 0 auto -0.65em !important;
  }
  .media_inner .jpn {
    font-size: 14px;
    color: #831f0f;
  }
  .media_coment {
    width: 100%;
    max-width: 774px;
    margin: 0 auto 1.5em;
    text-align: center;
    color: #651c06;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.875;
  }

  .media_program {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }
}

/*----- 歴史と店舗案内 -----*/
.about_history {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: 421px;
  margin: auto;
  /* overflow: hidden !important; */
}
.about_history_01,
.about_history_02,
.about_history_03,
.about_history_04,
.about_history_05 {
  display: block;
  position: absolute;
  height: auto;
}

.about_history_01 {
  top: 208px;
  left: -262px;
  width: 333px;
}
.about_history_02 {
  top: 96px;
  left: -113px;
  width: 298px;
}
.about_history_03 {
  top: 0px;
  left: 770px;
  width: 361px;
}
.about_history_04 {
  top: 200px;
  left: 1017px;
  width: 298px;
}
.about_history_05 {
  top: 136px;
  left: 1278px;
  width: 248px;
}
.about_history_comment {
  width: 462px;
  position: absolute;
  top: 40px;
  left: 250px;
}
.about_history_comment .comment_big {
  font-size: 27px;
  color: #831f0f;
  line-height: 1.85;
  text-align: left;

  @media screen and (max-width: 769px) {
    font-size: 22px;
  }
}
.about_history_comment .comment_small {
  margin-top: 50px;
  font-size: 14px;
  color: #7b191e;
  line-height: 1.79;
  text-align: left;
}

@media screen and (max-width: 769px) {
  .about_history_comment {
    width: 100%;
    position: unset;
  }
  .about_history {
    height: auto;
    padding: 0 30px;
    box-sizing: border-box;
  }

  .about_history_01,
  .about_history_02,
  .about_history_03,
  .about_history_04,
  .about_history_05 {
    display: none;
  }
  .about_history_comment .comment_small {
    margin-top: 30px;
  }
}
/*----- review -----*/
.review {
  margin: 150px auto 0;
  width: 100%;
  /* max-width: 1440px; */
  padding: 70px 0 80px;
  background: #f5f1eb;
}
.review .title_review {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0 30px;
}
.review .tit_review {
  font-size: 50px;
  color: #831f0f;
  text-align: center;
  margin: 0 auto -0.65em !important;
}
@media screen and (max-width: 769px) {
  .review {
    margin: 60px 0 0;
  }
  .review .tit_review {
    font-size: 40px;
  }
}
.review .jpn {
  font-size: 20px;
  color: #831f0f;
  text-align: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 769px) {
  .review .jpn {
    font-size: 14px;
  }
}

.review_box_area {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.review_box {
  width: 100%;
  height: 100%;
  max-height: 200px !important;
  background: #fff;
  padding: 22px 14px 22px 20px;
  margin: 0 12px;
}
.review_box span {
  display: inline-block;
  margin-top: -6px !important;
  font-size: 12px;
  color: #707070;
  font-weight: 500;
}
.icon_review {
  display: inline-block;
  width: 31px;
  height: 31px;
  padding-right: 0.75em;
  margin-bottom: -10px;
  zoom: 1;
  background: url(https://file003.shop-pro.jp/PA01452/518/img/review_human.png) top left no-repeat;
  background-size: 31px 31px;
}
.review_star {
  margin: 1em 0 1.25em;
  display: flex;
}
.review_star img {
  width: 145px;
}
.score {
  color: #8d7070;
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 0 0.785em !important;
}
.review_comment {
  font-size: 15px;
  font-weight: 500;
  color: #7b191e;
  line-height: 1.3;
  line-break: strict !important;
  overflow-wrap: anywhere !important;
  font-feature-settings: "palt";
}

/*----- cake_list -----*/
.cake_item_02_flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cake_list {
  margin: 130px auto 0 !important;
  width: 100%;
  max-width: 1440px;
  padding: 0 0 88px;
}
.cake_list_02 {
  margin: 0 auto 88px !important;
  width: 100%;
  max-width: 1440px;
}
.cake_list_03 {
  margin: 0 auto 150px !important;
  width: 100%;
  max-width: 1440px;
}
.title_list {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 0 0 30px;
}
.tit_list {
  font-size: 50px;
  color: #831f0f;
  text-align: center;
  margin: 0 auto -0.65em !important;
}
.title_list .jpn {
  font-size: 20px;
  color: #831f0f;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 769px) {
  .cake_list {
    margin: 0 !important;
    padding: 60px 0;
  }
  .title_list {
    width: 100%;
    max-width: 940px;
    margin: 0 auto;
    text-align: center;
    padding: 0 0 30px;
  }
  .tit_list {
    font-size: 40px;
    color: #831f0f;
    text-align: center;
    margin: 0 auto -0.65em !important;
  }
  .title_list .jpn {
    font-size: 14px;
    color: #831f0f;
    text-align: center;
    margin-bottom: 20px;
  }
}
.list_box_area {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}
.list_box_area + .list_box_area {
  margin-top: 90px;
}
.list_box_area_02,
.list_box_area_03 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.subtitle {
  width: 100%;
  max-width: 940px;
  display: flex; /* 
  justify-content: flex-start; */
  align-items: flex-end;
  margin: 0 auto;
  margin-bottom: 32px;
}
.subtitle_name {
  width: 34.57%;
  display: block;
  /* margin-top: -1.575em; */
}
.subtit_list {
  text-align: left;
  color: #651c06;
  font-size: 40px;
  font-weight: 500;
  display: block;
  margin: 0 auto -0.875em !important;
}
.subtitle .jpn {
  text-align: left;
  font-size: 16px;
  color: #651c06;
}
.subtit_list_comment {
  width: 65.43%;
  color: #651c06;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: block;
}
@media screen and (max-width: 769px) {
  .subtitle {
    width: 100%;
    padding: 0 30px;
    box-sizing: border-box;
    flex-direction: column;
  }
  .subtitle_name {
    width: 100%;
    margin-bottom: 10px;
  }
  .subtit_list {
    text-align: left;
    color: #651c06;
    font-size: 30px;
    font-weight: 500;
    display: block;
    margin: 0 auto -0.875em !important;
  }
  .subtitle .jpn {
    text-align: left;
    font-size: 12px;
    color: #651c06;
  }
  .subtit_list_comment {
    width: 100%;
    font-size: 12px;
    margin-bottom: 30px;
  }
}
.item_box,
.item_box_02 {
  position: relative;
  /* height: 446px !important; */
  padding: 19px 20px 60px;
  background: #fff;
  margin: 0 12px;
  box-shadow: 0px 3px 15px #0000000d;
}
.slick-track {
  display: flex;
}
.slick-slide {
  height: auto !important;
}

.item_box_03 {
  position: relative;
  height: 495px !important;
  padding: 19px 18px 0;
  background: #fff;
  margin: 0 12px;
  box-shadow: 0px 3px 15px #0000000d;
}
.item_box_02,
.item_box_03 {
  width: 30.85%;
  box-sizing: border-box;
  margin: 0 auto !important;
}
.item_detail {
  text-align: left;
}
.item_name {
  font-size: 20px;
  color: #7b191e;
  margin: 14px 0;
  line-height: 1.15;
}
.item_exp {
  /* height: 142px; */
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}
.item_box_03 {
  height: 103px;
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 769px) {
  .item_box,
  .item_box_02 {
    position: relative;
    height: 446px !important;
    padding: 20px 20px 0;
    background: #fff;
    margin: 0 12px;
    box-shadow: 0px 3px 15px #0000000d;
  }
  .item_box_03 {
    position: relative;
    height: 495px !important;
    padding: 19px 18px 0;
    background: #fff;
    margin: 0 12px;
    box-shadow: 0px 3px 15px #0000000d;
  }
  .item_box_02,
  .item_box_03 {
    width: 30.85%;
    box-sizing: border-box;
    margin: 0 auto !important;
  }
  .item_detail {
    text-align: left;
  }
  .item_name {
    font-size: 20px;
    color: #7b191e;
    margin: 17px 0 20px;
    line-height: 1.15;
  }
  .item_exp {
    margin-bottom: 40px;
    color: #7b191e;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
  }
  .item_box_03 {
    height: 103px;
    color: #7b191e;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
  }
}
.shape {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px !important;
  display: flex;
  align-items: center;
}
.shape_02 {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  margin-top: -0.75em !important;
}
.shape_03 {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  margin-top: 84px !important;
}
.shape_03b {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  margin-top: -34px !important;
}
.shape_03b-2 {
  display: block;
  text-indent: 5em;
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
}
.shape_up {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
}
.shape-kinds {
  display: inline-block;
  width: 48px;
  height: 21px;
  background: #efe8e3;
  border-radius: 6px;
  text-align: center;
  vertical-align: middle;
  padding: 2px 2px 0;
  box-sizing: border-box;
  margin-right: 0.82em;
}
.item_notice {
  color: #8d7070;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  padding-top: 1.15em;
  font-feature-settings: "palt";
}

.icon-cargo_item {
  display: inline-block;
  width: 18px;
  height: 16px;
  padding-right: 0.25rem;
  margin-bottom: -4px;
  zoom: 1;
  background: url(https://file003.shop-pro.jp/PA01452/518/img/image_cargo_w.svg) top left no-repeat;
  background-size: 18px 16px;
}
.link_item a {
  display: block !important;
}
.link_item a span {
  color: #fff !important;
  font-size: 14px;
  font-weight: 400;
  margin-right: 4px;
}
.buton_link_item {
  display: block;
  position: absolute;
  padding-top: 10px;
  text-align: center;
  width: 120px;
  height: 34px;
  bottom: 0;
  right: 0;
  background: #7b191e;
  border: none;
  border-radius: 10px 0px 0px 0px;
}

@media screen and (max-width: 769px) {
  .buton_link_item {
  }
  .item_box,
  .item_box_02 {
    height: auto !important;
    padding-bottom: 60px;
  }
}
/*----- best sellers -----*/
.seller_area {
  width: 100%;
  max-width: 1440px;
  margin: 130px auto 140px;
  padding: 0 94px;
  box-sizing: border-box;
}
.seller_box {
  position: relative;
  z-index: 1;
  background: #e1dfbb;
  border: 1px solid #7b191e;
  border-radius: 20px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
}
.seller_inner {
  padding: 50px 0 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #7b191e;
  border-radius: 15px;
}
.seller_inner .title_area {
  width: 100%;
  text-align: center;
  padding: 0 0 40px;
}
.seller_inner .tit_seller {
  font-size: 50px;
  color: #831f0f;
  margin: 0 auto -0.65em !important;
}
.seller_inner .jpn {
  font-size: 20px;
  color: #831f0f;
}

.best_seller {
  width: 100%;
  max-width: 950px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.image_bs,
.image_bs_02,
.image_bs_03 {
  width: 30.53%;
  position: relative;
  padding-bottom: 50px;
}
.image_bs .rank_01_bg,
.image_bs_02 .rank_02_bg,
.image_bs_03 .rank_03_bg {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0px 0px 16px 0px;
  background: #bfba7f;
  width: 63px;
  height: 34px;
}
.image_bs .rank_01,
.image_bs_02 .rank_02,
.image_bs_03 .rank_03 {
  position: absolute;

  top: -8px;
  left: 10px;
  font-size: 12px;
  text-align: center;
  color: #fff;
}
.image_bs .rank_01 span,
.image_bs_02 .rank_02 span,
.image_bs_03 .rank_03 span {
  font-size: 30px !important;
}
.seller_name {
  font-size: 20px;
  color: #7b191e;
  margin: 14px 0 8px;
  line-height: 1.15;
}
.seller_price {
  color: #8d7070;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 14px;
}
.seller_exp {
  height: 142px;
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.icon-cargo_seller {
  display: inline-block;
  width: 18px;
  height: 16px;
  padding-right: 0.25rem;
  margin-bottom: 0px;
  zoom: 1;
  background: url(https://file003.shop-pro.jp/PA01452/518/img/image_cargo.svg) top left no-repeat;
  background-size: 18px 16px;
}
.buton_link_seller {
  /* float: right;
  margin-top: -2em; */
  position: absolute;
  right: 0;
  bottom: 0;
}
.mark_to {
  font-size: 0.5em !important;
  font-weight: 600;
}
.link_seller {
  width: 124px;
  border-bottom: 1px solid #831f0f;
  padding-bottom: 2px;
  text-align: center;
}
.link_seller .link_online-shop {
  color: #7b191e !important;
  font-size: 16px;
  font-weight: 400;
  margin-right: 6px;
}

@media screen and (max-width: 769px) {
  .seller_area {
    margin: 0 auto 60px;
    padding: 0 30px;
  }
  .seller_box {
    padding: 5px;
  }
  .seller_inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .seller_inner .tit_seller {
    font-size: 40px;
  }
  .seller_inner .jpn {
    font-size: 14px;
  }

  .best_seller {
    display: block;
    padding: 0 20px;
  }
  .best_seller_inner {
    width: 100%;
  }
  .image_bs,
  .image_bs_02,
  .image_bs_03 {
    width: 30.53%;
    position: relative;
  }
  .image_bs .rank_01_bg,
  .image_bs_02 .rank_02_bg,
  .image_bs_03 .rank_03_bg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 0px 16px 0px;
    background: #bfba7f;
    width: 63px;
    height: 34px;
  }
  .image_bs .rank_01,
  .image_bs_02 .rank_02,
  .image_bs_03 .rank_03 {
    position: absolute;

    top: -8px;
    left: 10px;
    font-size: 12px;
    text-align: center;
    color: #fff;
  }
  .image_bs .rank_01 span,
  .image_bs_02 .rank_02 span,
  .image_bs_03 .rank_03 span {
    font-size: 30px !important;
  }
  .seller_name {
    font-size: 20px;
    color: #7b191e;
    margin: 14px 0 8px;
    line-height: 1.15;
  }
  .seller_price {
    color: #8d7070;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .seller_exp {
    height: 142px;
    color: #7b191e;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.65;
  }

  .icon-cargo_seller {
    display: inline-block;
    width: 18px;
    height: 16px;
    padding-right: 0.25rem;
    margin-bottom: 0px;
    zoom: 1;
    background: url(https://file003.shop-pro.jp/PA01452/518/img/image_cargo.svg) top left no-repeat;
    background-size: 18px 16px;
  }
  .mark_to {
    font-size: 0.5em !important;
    font-weight: 600;
  }
  .link_seller {
    width: 124px;
    border-bottom: 1px solid #831f0f;
    padding-bottom: 2px;
    text-align: center;
  }
  .link_seller .link_online-shop {
    color: #7b191e !important;
    font-size: 16px;
    font-weight: 400;
    margin-right: 6px;
  }
}

/*----- Top 5 Features -----*/
.feature_area {
  margin: 100px auto 0px !important;
  width: 100%;
  /* max-width: 1440px; */
  padding: 110px 0 100px;
  background: #f5f1eb;
}
.feature_inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.feature_inner .title_area {
  width: 100%;
  text-align: center;
  padding: 0 40px;
}
.feature_inner .tit_feature {
  font-size: 50px;
  color: #831f0f;
  margin: 0 auto -0.65em;
}
.feature_inner .jpn {
  font-size: 20px;
  color: #831f0f;
  margin-bottom: 60px;
}
.parts_feature {
  width: 45.75%;
  margin-bottom: 65px;
}
.feature_appeal {
  color: #7b191e;
  font-size: 25px;
  text-align: left;
  margin: 50px 0 30px;
}
.feature_messe {
  color: #7b191e;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
  line-height: 1.785;
  font-feature-settings: "palt";
}

@media screen and (max-width: 769px) {
  .feature_area {
    padding: 60px 0;
    margin: 0 !important;
  }
  .feature_inner {
    width: 100%;
    max-width: 1440px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  .feature_inner .title_area {
    width: 100%;
    text-align: center;
    padding: 0 40px;
  }
  .feature_inner .tit_feature {
    font-size: 40px;
  }
  .feature_inner .jpn {
    font-size: 14px;
    margin-bottom: 0;
  }
  .parts_feature {
    width: 100%;
    margin-bottom: 0;
  }
  .parts_feature.parts_feature_img {
    width: calc(100% + 30px);
  }
  .parts_feature.parts_feature_txt {
    margin-bottom: 20px;
  }
  .parts_feature.parts_feature_txt1 {
    order: 1;
  }
  .parts_feature.parts_feature_img1 {
    order: 2;
    margin-left: -30px;
  }
  .parts_feature.parts_feature_txt2 {
    order: 3;
  }
  .parts_feature.parts_feature_img2 {
    order: 4;
    margin-right: -30px;
  }
  .parts_feature.parts_feature_txt3 {
    order: 5;
  }
  .parts_feature.parts_feature_img3 {
    order: 6;
    margin-left: -30px;
  }
  .parts_feature.parts_feature_txt4 {
    order: 7;
  }
  .parts_feature.parts_feature_img4 {
    order: 8;
    margin-right: -30px;
  }
  .parts_feature.parts_feature_txt5 {
    order: 9;
  }
  .parts_feature.parts_feature_img5 {
    order: 10;
    margin-left: -30px;
  }
  .feature_appeal {
    color: #7b191e;
    font-size: 25px;
    text-align: left;
    margin: 50px 0 30px;
  }
  .feature_messe {
    color: #7b191e;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    line-height: 1.785;
    font-feature-settings: "palt";
  }
}

/*----- ideal for -----*/
.ideal_area {
  margin: 20px auto 80px;
  width: 100%;
  max-width: 1440px;
  padding: 100px 0 100px;
}
.ideal_inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 250px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.ideal_inner .title_area {
  width: 100%;
  text-align: center;
  padding: 0 40px;
}
.ideal_inner .tit_ideal {
  font-size: 50px;
  color: #831f0f;
  margin: 0 auto -0.65em;
}
.ideal_inner .jpn {
  font-size: 20px;
  color: #831f0f;
  margin-bottom: 40px;
}
.parts_ideal {
  width: 45.75%;
}
.parts_ideal .shape_ideal {
  color: #7b191e;
  font-size: 16px;
  font-weight: 500;
  margin: 16px 0 22px;
}
.parts_ideal .shape-kinds_ideal {
  display: inline-flex;
  width: 68px;
  height: 30px;
  background: #efe8e3;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0 4px;
  box-sizing: border-box;
  margin-right: 1em;
}
.ideal_comment {
  display: inline-block;
  vertical-align: top;
  color: #7b191e;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  font-feature-settings: "palt";
}

@media screen and (max-width: 769px) {
  .ideal_area {
    margin: 0;
    padding: 60px 0;
  }
  .ideal_inner {
    padding: 0 30px;
  }
  .ideal_inner .title_area {
    width: 100%;
    text-align: center;
    padding: 0 40px;
  }
  .ideal_inner .tit_ideal {
    font-size: 40px;
  }
  .ideal_inner .parts_ideal {
    width: 100%;
  }
  .ideal_inner .parts_ideal:not(:last-child) {
    margin-bottom: 30px;
  }
  .ideal_inner .jpn {
    font-size: 14px;
  }
  .parts_ideal .shape_ideal {
    font-size: 12px;
    margin: 15px 0 10px;
  }

  .ideal_comment {
    display: block;
    font-size: 14px;
  }
}

/*----- Customer Reviews-2 -----*/
.review-2 {
  margin: 0 auto;
  width: 100%;
  /* max-width: 1440px; */
  padding: 76px 0 90px;
  background: #fff;
}
.review-2 .title_area {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 0px 0 30px;
}
.review-2 .tit_review-2 {
  font-size: 50px;
  color: #831f0f;
  text-align: center;
  margin: 0 auto -0.65em;
}
.review-2 .jpn {
  font-size: 20px;
  color: #831f0f;
  text-align: center;
  margin-bottom: 16px;
}
.box_review-2 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.parts_review-2 {
  z-index: 1;
  height: 270px;
  width: 100%;
  background: #e1dfbb;
  border: 1px solid #7b191e;
  border-radius: 15px;
  padding: 5px;
  box-sizing: border-box;
}
.parts_review-2 .inner_parts-2 {
  background: #fff;
  border: 1px solid #7b191e;
  border-radius: 15px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.review-2_inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.inner_parts-2 {
  text-align: center;
  padding-top: 40px;
  color: #7b191e;
  font-weight: 400;
}
.inner_parts-2 {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}
.review-2_tit {
  font-size: 25px;
}
.review-2_line {
  border: 1px solid #7c191e;
  width: 35px;
  display: block;
  margin: 0 auto;
}
.review-2_cont {
  font-size: 70px;
  margin-top: -0.05em;
}
.review-2_cont2 {
  font-size: 20px;
  margin-top: -0.75em;
  display: inline-block;
}
.review-2_cont3 {
  font-size: 30px;
  margin-top: -0.75em;
  display: inline-block;
}
.review-2_cont4 {
  font-size: 40px;
  margin-top: -0.75em;
  display: inline-block;
}
.review-2_cont2-2 {
  font-size: 12px;
  margin-top: -0.15em;
}

@media screen and (max-width: 769px) {
  .review-2 {
    padding: 60px 0;
  }
  .review-2 .title_area {
    padding: 0px 0 30px;
  }
  .review-2 .tit_review-2 {
    font-size: 40px;
  }
  .review-2 .jpn {
    font-size: 14px;
  }
  .box_review-2 {
    display: grid;
    justify-content: center;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .parts_review-2 {
    position: relative;
    z-index: 1;
    background: #e1dfbb;
    border: 1px solid #7b191e;
    border-radius: 20px;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    height: auto;
  }
  .review-2_inner {
    padding: 0 30px;
    box-sizing: border-box;
  }
  .inner_parts-2 {
    padding: 30px 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    border: 1px solid #7b191e;
    border-radius: 15px;
    margin: 0 auto;
  }
  .review-2_tit {
    font-size: 20px;
  }
  .review-2_line {
    border: 1px solid #7c191e;
    width: 35px;
    display: block;
    margin: 0 auto;
  }
  .review-2_cont {
    font-size: 55px;
    margin-top: -0.05em;
  }
  .review-2_cont2 {
    font-size: 15px;
    margin-top: -0.75em;
    display: inline-block;
  }
  .review-2_cont3 {
    font-size: 25px;
    margin-top: -0.75em;
    display: inline-block;
  }
  .review-2_cont4 {
    font-size: 30px;
    margin-top: -0.75em;
    display: inline-block;
  }
  .review-2_cont2-2 {
    font-size: 12px;
    margin-top: -0.15em;
  }
}

/*----- Gift Service -----*/
.gift_area {
  margin: 120px auto 0px;
  width: 100%; /* 
	max-width: 1440px; */
  background: #fcfaf7;
}
.gift_inner {
  width: 100%;
  max-width: 1440px;
  padding: 0 150px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.gift_inner .title_area {
  width: 100%;
  text-align: center;
  padding: 0 40px;
}
.gift_inner .tit_gift {
  font-size: 50px;
  color: #831f0f;
  margin: 0 auto -0.65em !important;
}
.gift_inner .jpn {
  font-size: 20px;
  color: #831f0f;
  margin-bottom: 50px;
}
.parts_gift {
  width: 48.245%;
  background: #fff;
}

.gift_image_01,
.gift_image_02 {
  position: relative;
  float: left;
  width: 41.82%;
  background: #fff;
  margin-right: 20px;
}
.gift_image_01 .gift_01_bg,
.gift_image_02 .gift_02_bg {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0px 0px 20px 0px;
  background: #7b191e;
  width: 104px;
  height: 34px;
}
.gift_image_01 .gift_01,
.gift_image_02 .gift_02 {
  position: absolute;
  top: -1px;
  left: 10px;
  font-size: 20px;
  text-align: center;
  color: #fff;
}
.parts_gift .gift_text {
  background: #fff;
  text-align: left;
  padding-top: 40px;
  padding-right: 25px;
}

.parts_gift .gift_text .gift_title {
  color: #7b191e;
  font-size: 20px;
  padding-bottom: 25px;
}
.parts_gift .gift_text .gift_comment {
  color: #7b191e;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.67;
}
@media screen and (max-width: 769px) {
  .gift_image_01,
  .gift_image_02 {
    position: relative;
    width: 100%;
    float: none;
  }
  .gift_image_01 img,
  .gift_image_02 img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
  .parts_gift .gift_text {
    padding: 20px;
  }
  .parts_gift .gift_text .gift_title {
    padding-bottom: 5px;
  }
  .gift_area {
    margin: 60px 0 0;
  }
  .gift_inner {
    padding: 0 30px;
    padding-bottom: 60px;
  }
  .parts_gift {
    width: 100%;
  }
  .gift_inner .tit_gift {
    font-size: 40px;
  }
  .gift_inner .jpn {
    font-size: 14px;
  }
  .parts_gift + .parts_gift {
    margin-top: 30px;
  }
}
/*----- recommend -----*/
.recommended {
  width: 100%;
  /* max-width: 1440px; */
  background: #f5f1eb;
  margin: 0 auto;
  padding: 80px 0 30px;
}
@media screen and (max-width: 768px) {
  .recommended {
    padding: 60px 0;
  }
}
.recome_area {
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 378px;
}
@media screen and (max-width: 768px) {
  .recome_area {
    padding: 0 30px;
  }
}
.recome_messe {
  color: #7b191e;
  font-size: 32px;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recome_messe {
    font-size: 26px;
  }
}
.image_usp {
  width: 100%;
  max-width: 684px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
}
.recome_btn_cart {
  width: 65.79%;
  padding: 40px 0 35px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recome_btn_cart {
    width: 100%;
  }
}
.parts_usp {
  width: 27.924%;
}

@media screen and (max-width: 768px) {
  .parts_usp {
    width: 31%;
  }
}
#Products ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#Products .ranking {
  margin-top: 40px;
}
#Products li {
  z-index: 0;
  position: relative;
  width: 49%;
  margin: 0 0 30px 0;
}
#Products li .rank_mark {
  z-index: 10;
  position: absolute;
  top: -30px;
  left: -30px;
  width: 70px;
}
#Products .ranking li:nth-child(1),
#Products .ranking li:nth-child(2),
#Products .ranking li:nth-child(3) {
  width: 70%;
  display: block;
  margin: 20px auto 30px;
  text-align: center;
}
#Products li h3 {
  margin: 10px 2px 0 2px;
  font-size: 15px;
  line-height: 1.4;
}
#Products li .h3_txt {
  font-size: 13px;
  line-height: 1.4;
  margin: 5px 2px 0 2px;
}
@media screen and (min-width: 769px) {
  #Products ul {
    max-width: 900px;
    margin: auto;
  }
  #Products li {
    width: 31%;
    margin-bottom: 50px;
  }
  #Products li::after {
    content: "";
    display: block;
    width: 31%;
  }
  #Products li h3 {
    margin: 10px 2px 0 2px;
    font-size: 17px;
  }
  #Products li .h3_txt {
    font-size: 15px;
  }
  #Products .ranking {
    max-width: 1100px;
  }
  #Products .ranking li:nth-child(1),
  #Products .ranking li:nth-child(2),
  #Products .ranking li:nth-child(3) {
    width: 28%;
    margin: 30px auto 50px;
  }
}
@media screen and (min-width: 961px) {
  #Products li .rank_mark {
    position: absolute;
    top: -35px;
    left: -20px;
    width: 80px;
  }
}

/*str 2020xmax*/
#xmas {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin: 30px auto 50px;
}
#xmas h2 {
  font-size: 16px;
  margin: 20px 0 20px;
}
#xmas ul {
  flex-wrap: wrap;
  width: 70%;
  margin: auto;
}
#xmas li {
  width: 100%;
  margin: 20px 0 10px 0;
  text-align: center;
}
#xmas li h3 {
  margin: 10px 2px 0 2px;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
#xmas li .h3_txt {
  font-size: 13px;
  line-height: 1.4;
  margin: 5px 2px 0 2px;
  text-align: center;
}
#xmas li img {
  transition: all 0.3s ease;
}
#xmas li img:hover {
  opacity: 0.7;
}
@media screen and (min-width: 641px) {
  #xmas {
    margin: 80px auto 120px;
  }
  #xmas h2 {
    font-size: 18px;
    margin: 20px 0 60px;
  }
  #xmas ul {
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  #xmas li {
    width: 48%;
    margin: 0;
  }
}
@media screen and (min-width: 769px) {
  #xmas li h3 {
    font-size: 17px;
  }
  #xmas li .h3_txt {
    font-size: 15px;
  }
}
/*end 2020xmax*/

/*----- Review -----*/
/*
#Review {
	box-sizing: border-box;
	width: 96%;
	max-width: 900px;
	margin: auto;
	margin-top: -50px;
	padding-top: 50px;
}
#Review ul {
	margin-top: 50px;
}
#Review li {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
#Review li a {
	width: 25%;
}
#Review li .data_box {
	width: 70%;
	padding-right: 5px;
}
#Review li .star {
	color: #FF8600;
	font-size: 17px;
	font-weight: 800;
	letter-spacing: 0.1em;
}
#Review li h3 {
	font-size: 16px;
}
#Review li .date {
	color: #666;
	font-size: 13px;
}
#Review li .comment {
	border-top: solid 1px #FF8600;
	margin-top: 5px;
	padding-top: 5px;
	font-size: 14px;
}
@media screen and (min-width: 769px){
	#Review ul {
		margin-top: 80px;
	}
	#Review li {
		margin-bottom: 50px;
	}
	#Review li a {
		width: 20%;
	}
	#Review li .data_box {
		width: 77%;
	}
}
*/

/*----- Caution -----*/
/*
.caution {
	margin: 60px 0 0 0;
}
.caution .caution_block1, .caution .caution_block2 {
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	background: linear-gradient(#fff 40%, #eaf0f0 100%);
}
.caution .caution_block2 {
	border-top: none;
}
.caution h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 20px 0 5px 20px;
}
.caution .caution_block1 .caution_block1_inner {
	background: url("https://file003.shop-pro.jp/PA01452/518/img/top_cool_caution.png") right bottom 10px no-repeat;
	background-size: 30% auto;
	margin-bottom: 20px;
}
.caution .caution_block1 p {
	box-sizing: border-box;
	width: 68%;
	padding: 0 0 0 20px;
	font-size: 14px;
}
.caution .caution_block2 p {
	padding: 0 20px 20px 20px;
	font-size: 14px;
}
@media screen and (min-width: 481px){
	.caution .caution_block1 .caution_block1_inner {
		background: url("https://file003.shop-pro.jp/PA01452/518/img/top_cool_caution.png") right bottom 0 no-repeat;
		background-size: 25% auto;
		margin-bottom: 20px;
	}
	.caution .caution_block1 p {
		box-sizing: border-box;
		width: 73%;
		padding: 0 0 0 20px;
		font-size: 14px;
	}
}
@media screen and (min-width: 641px){
	.caution {
		width: 95%;
		margin: 100px auto 40px;
		display: flex;
		justify-content: space-between;	
	}
	.caution .caution_block1, .caution .caution_block2 {
		width: 49%;
		border: solid 1px #ccc !important;
	}
}
@media screen and (min-width: 769px){
	.caution {
		width: 100%;
	}
	.caution .caution_block1, .caution .caution_block2 {
		width: 49%;
		border: solid 1px #ccc !important;
	}
}
@media screen and (min-width: 1025px){
	.caution h3 {
		font-size: 20px;
		margin: 20px 0 5px 20px;
	}
	.caution .caution_block1 p {
		font-size: 15px;
	}
	.caution .caution_block2 p {
		padding: 0 20px 20px 20px;
		font-size: 15px;
	}
	.caution h3 {
		font-size: 22px;
		margin: 30px 0 5px 30px;
	}
	.caution .caution_block1 .caution_block1_inner {
		margin-bottom: 30px;
	}
	.caution .caution_block1 p {
		padding: 0 0 0 30px;
	}
	.caution .caution_block2 p {
		padding: 0 30px 30px 30px;
	}	
}
*/
/*----- About -----*/
#About {
  padding-top: 60px;
}
#About .about_wrap {
  /*background: url("https://file003.shop-pro.jp/PA01452/518/img/about_line.png") no-repeat, url("https://file003.shop-pro.jp/PA01452/518/img/footer_line_sp.png") no-repeat;
	background-position: top center, bottom center;	
	background-size: auto 40px, 100% auto;
	background-color: #feffec;
	padding: 40px 0 40px 0;*/
}
#About h3 {
  width: 50%;
  max-width: 320px;
  margin: auto;
}
#About .about_inner {
  width: 90%;
  max-width: 900px;
  margin: 30px auto 0;
}
#About .about_inner p {
  font-size: 15px;
  line-height: 1.7;
  margin-top: 10px;
}
#About .about_inner .img {
  margin-top: 20px;
}
/*----- See moreボタン -----*/
/*
.seemore_wrap {
	width: 280px;
	margin: 30px auto 0;
}
.btn_seemore {
	box-sizing: border-box;
	width: 280px;
	height: 40px;
	background: #fff;
	border: solid 1px #000;
	text-align: center;
	font-size: 14px;
	line-height: 40px;
	color: #000;
	font-weight: 600;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.btn_seemore a{
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
	text-decoration: none !important;
}
.btn_seemore a:hover  {
	opacity: 1;
}
.btn_seemore:hover {
	background: #000;
	color: #fff !important;
}
@media screen and (min-width: 481px){
	#About .about_wrap {
		background-size: auto 50px, 100% auto;
		padding: 50px 0 100px 0;
	}
}
@media screen and (min-width: 769px){
#About {
	padding-top: 70px;
}
#About .about_wrap {
	background-size: 100% auto, 100% auto;	
	padding: 50px 0 120px 0;
}
#About h3 {
	width: 40%;
}
#About .about_inner {
	margin: 40px auto 0;
}
#About .about_inner p {
	font-size: 16px;
	margin-top: 15px;
}
#About .about_inner .img {
	margin-top: 40px;
}
.seemore_wrap {
	width: 350px;
	margin: 50px auto 0;
}
.btn_seemore {
	box-sizing: border-box;
	width: 350px;
	height: 50px;
	font-size: 16px;
	line-height: 50px;
}
}
@media screen and (min-width: 1025px){
#About .about_wrap {
	padding: 70px 0 150px 0;
}
#About .about_inner {
	margin: 50px auto 0;
}
#About .about_inner p {
	font-size: 17px;
	margin-top: 20px;
}
#About .about_inner .img {
	margin-top: 40px;
}
}
@media screen and (min-width: 1400px){
#About .about_wrap {
	padding: 100px 0 200px 0;
}
}
*/
/*===============================================================
#Androidのみ適用
============================================================== */
.Android h2,
.Android h3,
.Android .btn_seemore {
  font-weight: 800;
}
