@charset "utf-8";

.recommend_main body {
  width: 100%;
  font-size: 1rem;
}

.recommend_main h2 {
  font-size: 1.3rem;
}

.recommend_main h3 {
  font-size: 1.2rem;
}

.recommend_main h4 {
  font-size: 1.1rem;
}

.recommend_main p {
  font-size: 1rem;
}

.recommend_main .pc_only {
  display: none;
}

.recommend_main .pc_tablet_only {
  display: none;
}

@media only screen and (min-width:600px) {
  .recommend_main .pc_only {
    display: block;
  }
  .recommend_main .pc_tablet_only {
    display: block;
  }
  .recommend_main .sp_only {
    display: none;
  }
}

@media only screen and (max-width:1024px) {
  .recommend_main .sp_tablet_only {
    display: block;
  }
  .recommend_main .pc_only_sub {
    display: none;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main h2 {
    font-size: 2rem;
  }
  .recommend_main .pc_only {
    display: block;
  }
  .recommend_main .pc_tablet_only {
    display: block;
  }
  .recommend_main .sp_only {
    display: none;
  }
  .recommend_main .sp_tablet_only {
    display: none;
  }
}




/********************************
メインビジュアル
********************************/
.recommend_main .mv_wrap {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

.recommend_main .mv_wrap .main_visual {
  position: relative;
  width: 100%;
  /* height: 85vh; *//*管理画面で指定*/
  margin-bottom: 30px;
  visibility: visible;
  opacity: 0;
}

.recommend_main .mv_wrap .main_visual.show {
  position: relative;
  width: 100%;
  /* height: 85vh; *//*管理画面で指定*/
  visibility: visible;
  animation: MainVisualShow 2s ease-out forwards;
}

.recommend_main .mv_wrap .main_visual img {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1940px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@keyframes MainVisualShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  75% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}




/********************************
メインタイトル
********************************/
.recommend_main .mv_wrap .main_title {
  visibility: hidden;
  opacity: 0;
}

.recommend_main .mv_wrap .main_title img {
  display: block;
  position: absolute;
}

@media only screen and (max-width:599px) {
  .recommend_main .mv_wrap .main_title img {
    width: 55% !important;
  }
}

.recommend_main .mv_wrap .main_title.show {
  animation: MainTItleShow 2s 1s ease-out forwards;
  visibility: visible;
}

@keyframes MainTItleShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  75% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (min-width:600px) and (max-width:1024px) {
  .recommend_main .mv_wrap .main_title img {
    width: 35vw !important;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .mv_wrap .main_title img {
    width: 35vw;
  }
}




/********************************
サブテキスト
********************************/
.recommend_main .mv_wrap .sub_text {
  visibility: hidden;
  opacity: 0;
}

.recommend_main .mv_wrap .sub_text.show {
  animation: SubTextShow 2s 1s ease-out forwards;
  visibility: visible;
}

.recommend_main .mv_wrap .sub_text p {
  line-height: 1.3;
}

@keyframes SubTextShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  75% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}



/********************************
アンカーテキスト
********************************/
.recommend_main .mv_wrap .anchor_text {
  visibility: hidden;
  opacity: 0;
}

.recommend_main .mv_wrap .anchor_text.show {
  animation: AnchorTextShow 2s 1s ease-out forwards;
  visibility: visible;
}

.recommend_main .mv_wrap .anchor_text p {
  padding: 4px 40px;
  transition: all .5s ease-out;
}

.recommend_main .mv_wrap .anchor_text p:hover {
  opacity: .8;
}

@keyframes AnchorTextShow {
  0% {
    opacity: 0;
  }
  50% {
    opacity: .3;
  }
  75% {
    opacity: .7;
  }
  100% {
    opacity: 1;
  }
}




/********************************
アイテムボタン
（複数ブランドがある場合表示される）
********************************/
.recommend_main .item_btn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5%;
  width: 90%;
  max-width: 1100px;
  margin: 50px auto;
}

.recommend_main .item_btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  text-align: center;
  width: 40%;
  height: 45px;
  margin-bottom: 10px;
  line-height: 1.2;
  border-radius: 30px;
}

@media only screen and (min-width:600px) {
  .recommend_main .item_btn_wrap {
    margin: 70px auto;
  }
  .recommend_main .item_btn_wrap a {
    width: 200px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .item_btn_wrap {
    margin: 100px auto;
  }
  .recommend_main .item_btn_wrap a {
    width: 200px;
    margin-bottom: 30px;
  }
}


/********************************
ブランドスライダーエリア
********************************/
.recommend_main .brand {
  width: 90%;
  margin: 40px auto 70px;
}

.recommend_main .brand .slider_thumb .inner img {
  width: 100%;
  display: block;
  margin: 0 auto 15px;
}

.recommend_main .brand .slider_thumb .inner .brand_name {
  font-size: 1.6rem;
  margin-bottom: 15px;
}

.recommend_main .brand .slider_thumb .inner .brand_description {
  line-height: 1.3;
}

.recommend_main .brand .thumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6%;
  width: 90%;
  max-width: 980px;
  margin: 30px auto 0;
}

.recommend_main .brand .thumb .brand_icon {
  cursor: pointer;
  transition: all .3s ease-out;
}

.recommend_main .brand .thumb img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 40px;
  margin-bottom: 8%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all .5s ease-out;
}

.recommend_main .brand .thumb img.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media only screen and (min-width:600px) {
  .recommend_main .brand .thumb {
    margin: 40px auto 70px;
  }
  .recommend_main .brand .thumb .inner img {
    max-height: 55px;
    margin-bottom: 4%;
  }
  .recommend_main .brand .slider_thumb .inner .brand_name {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .brand .thumb .inner img {
    max-height: 60px;
    margin-bottom: 4%;
  }
  .recommend_main .brand .slider_thumb .inner .brand_name {
    font-size: 2rem;
  }
  .recommend_main .brand .thumb {
    margin: 40px auto 70px;
  }
  .recommend_main .brand .thumb img {
    margin-bottom: 4%;
    max-height: 72px;
  }
  .recommend_main .brand .thumb .brand_icon:hover {
    opacity: .6;
  }
}




/********************************
商品見出しエリア（パターン1）
********************************/
.recommend_main .brand_container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin: 0 auto 30px;
}

.recommend_main .brand_container .brand_img {
  order: 2;
}

.recommend_main .brand_container .brand_img img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.recommend_main .brand_container .brand_names {
  order: 1;
  transition: all .5s ease-out;
  margin: 2em 0 0;
}

.recommend_main .brand_container .brand_names::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  margin-bottom: 15px;
  transition: all .5s ease-out;
  transform: scale(0, 1);
  transform-origin: center;
}

.recommend_main .brand_container .brand_names.show:after {
  transform: scale(1, 1);
}

.recommend_main .brand_container .brand_names h2 {
  font-size: 1.5rem;
  width: 100%;
}

.recommend_main .brand_container .brand_description {
  padding: 0 10px;
  order: 3;
}

.recommend_main .brand_container .brand_description p {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 20px;
  width: 100%;
}

.recommend_main .brand_container .brand_shop_btn {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
  order: 4;
}

.recommend_main .brand_container .brand_shop_btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  height: 45px;
  width: 100%;
  max-width: 250px;
  line-height: 1.2;
  border-radius: 30px;
}


@media only screen and (min-width:600px) {
  .recommend_main .brand_container {
    margin: 0 auto 50px;
  }
  .recommend_main .brand_container .brand_names h2 {
    font-size: 2rem;
  }
  .recommend_main .brand_container .brand_description {
    padding: 0 10px;
  }
  .recommend_main .brand_container .brand_description p {
    font-size: 1.1rem;
    width: 100%;
    max-width: 740px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0;
  }
  .recommend_main .brand_container .brand_img img {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .recommend_main .brand_container .brand_shop_btn a {
    font-size: 1.3rem;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .brand_container {
    margin: 0 auto 40px;
  }
  .recommend_main .brand_container .brand_names h2 {
    font-size: 2rem;
  }
  .recommend_main .brand_container .brand_description {
    padding: 0;
  }
  .recommend_main .brand_container .brand_description p {
    font-size: 1.2rem;
    max-width: 740px;
    margin: 20px auto;
    line-height: 1.6;
    padding: 0;
  }
  .recommend_main .brand_container .brand_img img {
    margin-bottom: 10px;
  }
  .recommend_main .brand_container .brand_shop_btn a {
    font-size: 1.5rem;
    transition: all .3s ease-out;
  }
  .recommend_main .brand_container .brand_shop_btn a:hover {
    opacity: .5;
  }
}




/********************************
商品見出しエリア（パターン2）
********************************/
.recommend_main .item_head_area {
  display: block;
  width: 100%;
  margin: 0 auto 30px;
}

.recommend_main .item_head_area .item_head_img.sp_tablet_only img {
  object-fit: cover;
  height: 80vh;
  object-position: center 60%;
}

.recommend_main .item_head_area .item_text_area {
  display: flex;
  flex-direction: column;
  width: 90%;
}

.recommend_main .item_head_area .item_head_anchor a {
  padding: 4px 40px;
  transition: all .5s ease-out;
}

.recommend_main .item_head_area .item_head_anchor a:hover {
  opacity: .8;
}

@media only screen and (min-width:600px) {
  .recommend_main .item_head_area .item_text_area {
    width: 50%;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .item_head_area .item_text_area {
    width: 40%;
  }
}


/********************************
商品紹介エリア（layout1）
********************************/
.recommend_main .recommend_item.layout1 {
  width: 100%;
  margin: 30px auto;
}

.recommend_main .recommend_item.layout1 .recommend_container {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between !important;
  margin: 0 auto 50px !important;
  padding: 0 20px;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_name {
  width: 100%;
  order: 2;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_name h3 {
  text-align: left;
  font-size: 1rem;
  padding: 7px;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_price {
  order: 3;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_price p {
  text-align: left;
  font-size: 1.4rem !important;
  padding: 10px 5px 0;
  font-weight: bold !important;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_price span.fz_small {
  font-size: 1.1rem !important;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_description {
  order: 4;
  margin-bottom: 5px;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_description p {
  text-align: left;
  font-size: 1rem;
  padding: 10px 5px 0;
  line-height: 1.3;
  word-wrap: break-word;
}

.recommend_main .recommend_item.layout1 .recommend_container .read_more_btn {
  order: 5;
  text-align: right;
}

.recommend_main .recommend_item.layout1 .recommend_container .read_more_btn a {
  position: relative;
  right: 0;
  text-align: left;
  font-size: 1rem;
  padding: 0 15px 0 0;
}

.recommend_main .recommend_item.layout1 .recommend_container .read_more_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg) translate(0, -50%);
  transition: all .3s ease-out;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_img {
  order: 1;
  margin-bottom: 15px;
}

.recommend_main .recommend_item.layout1 .recommend_container .item_img img {
  display: block;
  width: 100%;
}

.recommend_main .slick-slider .slick-track, .slick-slider .slick-list {
  width: 100%;
  margin: 0;
}

.recommend_main .recommend_item.layout1 .slide-arrow {
  bottom: 0;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 1;
  cursor: pointer;
}
.recommend_main .recommend_item.layout1 .prev-arrow {
  width: 30px;
  height: 100px;
  top: 0;
  left: 3%;
}
.recommend_main .recommend_item.layout1 .prev-arrow::before {
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: top left;
  transform: rotate(-45deg);
}
.recommend_main .recommend_item.layout1 .prev-arrow::after {
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: top left;
  transform: rotate(45deg);
}
.recommend_main .recommend_item.layout1 .next-arrow {
  width: 30px;
  height: 100px;
  top: 0;
  right: 3%;
}
.recommend_main .recommend_item.layout1 .next-arrow::before {
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: top right;
  transform: rotate(45deg);
}
.recommend_main .recommend_item.layout1 .next-arrow::after {
  content: "";
  background: #333;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform-origin: top right;
  transform: rotate(-45deg);
}
.recommend_main .recommend_item.layout1 button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

@media only screen and (min-width:600px) {
  .recommend_main .recommend_item.layout1 {
    width: 100%;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .item_img {
    margin-bottom: 15px;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .read_more_btn a {
    font-size: 1.2rem;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .recommend_item.layout1 {
    width: 100%;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .item_img {
    margin-bottom: 15px;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .item_description p {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .read_more_btn a {
    font-size: 1rem;
    transition: all .3s ease-out;
  }
  .recommend_main  .recommend_item.layout1 .recommend_container .read_more_btn a:hover {
    opacity: .7;
  }
  .recommend_main .recommend_item.layout1 .recommend_container .read_more_btn a:hover:after {
    opacity: .7;
  }
}


/********************************
商品紹介エリア（layout2）
********************************/
.recommend_main .recommend_item.layout2 {
  width: 90%;
  display: flex !important;
  flex-direction: row;
  justify-content: flex-start !important;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0 auto 50px !important;
}

.recommend_main .recommend_item.layout2 .recommend_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 30px;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_name {
  width: 100%;
  order: 2;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_name h3 {
  text-align: left;
  font-size: 1.2rem;
  padding: 7px;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_price {
  order: 3;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_price p {
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 10px 5px 0;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_description {
  order: 4;
  margin-bottom: 10px;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_description p {
  text-align: left;
  font-size: 1rem;
  padding: 10px 5px 0;
  line-height: 1.5;
  word-wrap: break-word;
}

.recommend_main .recommend_item.layout2 .recommend_container .read_more_btn {
  order: 5;
  text-align: right;
}

.recommend_main .recommend_item.layout2 .recommend_container .read_more_btn a {
  position: relative;
  right: 0;
  text-align: left;
  font-size: 1rem;
  padding: 0 15px 0 0;
}

.recommend_main .recommend_item.layout2 .recommend_container .read_more_btn a:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  transform: rotate(45deg) translate(0, -50%);
  transition: all .3s ease-out;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_img {
  order: 1;
  margin-bottom: 15px;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_img a {
  display: block;
}

.recommend_main .recommend_item.layout2 .recommend_container .item_img img {
  display: block;
  width: 100%;
}

@media only screen and (max-width:599px) {
  .recommend_main .recommend_item.layout2 .recommend_container {
    width: 100% !important;
  }
}

@media only screen and (min-width:600px) {
  .recommend_main  .recommend_item.layout2 {
    width: 90%;
    max-width: 1400px;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container .item_img {
    margin-bottom: 15px;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container .read_more_btn a {
    font-size: 1rem;
  }
}

@media only screen and (min-width:600px) and (max-width:799px) {
  .recommend_main  .recommend_item.layout2 {
    justify-content: space-between !important;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container {
    margin-bottom: 50px;
    width: calc(100%/2.1) !important;
  }
}

@media only screen and (min-width:800px) {
  .recommend_main  .recommend_item.layout2 {
    justify-content: flex-start;
  }
  .recommend_main  .recommend_item.layout2.column2 {
    justify-content: center !important;
  }
  .recommend_main  .recommend_item.layout2.column2 .recommend_container:not(:nth-of-type(2n)) {
    margin-right: 2.5%;
  }
  .recommend_main  .recommend_item.layout2.column3 .recommend_container:not(:nth-of-type(3n)) {
    margin-right: 1.6%;
  }
  .recommend_main  .recommend_item.layout2.column4 .recommend_container:not(:nth-of-type(4n)) {
    margin-right: .8%;
  }
  .recommend_main  .recommend_item.layout2.column5 .recommend_container:not(:nth-of-type(5n)) {
    margin-right: .4%;
  }
  .recommend_main  .recommend_item.layout2.column6 .recommend_container:not(:nth-of-type(6n)) {
    margin-right: .3%;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main  .recommend_item.layout2 {
    width: 90%;
    margin: 0 auto 50px;
  }
  .recommend_main .recommend_item.layout2 .recommend_container {
    margin-bottom: 50px;
  }
  .recommend_main .recommend_item.layout2 .recommend_container .item_img {
    margin-bottom: 15px;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container .read_more_btn a {
    font-size: 1rem;
    transition: all .3s ease-out;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container .read_more_btn a:hover {
    opacity: .7;
  }
  .recommend_main  .recommend_item.layout2 .recommend_container .read_more_btn a:hover:after {
    opacity: .7;
  }
}




/********************************
商品単体紹介エリア
********************************/
.recommend_main .item_only_area {
  width: 100%;
  margin: 0 auto 50px;
  max-width: 750px;
}

.recommend_main .item_only_area .item_only_image img {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}

.recommend_main .item_only_area .item_only_name {
  width: 100%;
  padding: 0 10px;
  font-size: 1.2rem;
}

.recommend_main .item_only_area .item_only_text {
  width: 100%;
  padding: 0 10px;
  margin-bottom: 20px;
}

.recommend_main .item_only_area .item_only_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
}

.recommend_main .item_only_area .item_only_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  height: 45px;
  width: 100%;
  max-width: 250px;
  line-height: 1.2;
  border-radius: 30px;
  transition: all .3s ease-out;
  padding: 0 25px;
}

@media only screen and (min-width:1025px) {
  .recommend_main .item_only_area .item_only_btn a:hover {
    opacity: .5;
  }
}




/********************************
コンバージョンエリア
********************************/
.recommend_main .conversion_area {
  width: 100%;
  margin: 0 auto 100px;
}

.recommend_main .conversion_inner {
  width: 100%;
  padding: 20px 15px;
  text-align: center;
}

.recommend_main .conversion_inner .conversion_text {
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.recommend_main .conversion_inner .conversion_annotation {
  font-size: 12px;
  margin-bottom: 10px;
}

.recommend_main .conversion_inner .conversion_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.2rem;
  height: 45px;
  width: 100%;
  max-width: 250px;
  line-height: 1.2;
  border-radius: 30px;
  margin: 0 auto;
}

@media only screen and (min-width:1025px) {
  .recommend_main .conversion_inner {
    padding: 30px 240px;
  }
  .recommend_main .conversion_inner .conversion_text {
    font-size: 1.4rem;
  }
  .recommend_main .conversion_inner .conversion_annotation {
    font-size: 1rem;
  }
}




/********************************
フリーテキストエリア
********************************/
.recommend_main .free_text_area {
  width: 90%;
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
}

.recommend_main .recommend_main .free_text_area p {
  line-height: 1.5;
  font-size: 1rem;
}

@media only screen and (min-width:600px) {
  .recommend_main .free_text_area {
    margin: 0 auto;
  }
  .recommend_main .free_text_area p {
    font-size: 1rem;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .free_text_area {
    margin: 0 auto;
  }
  .recommend_main .free_text_area p {
    font-size: 1rem;
  }
}




/********************************
フリー画像エリア
********************************/
.recommend_main .free_img_area {
  width: 90%;
  margin: 50px auto;
}
.recommend_main .free_img_area img {
  display: block;
  max-width: 750px;
  margin: 0 auto;
}




/********************************
中見出しエリア
********************************/
.recommend_main .nakamidashi {
  text-align: center;
}

.recommend_main .brand_names {
  order: 1;
  transition: all .5s ease-out;
  display: inline-block;
  margin: 2em 0 0;
}

.recommend_main .brand_names::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  margin-bottom: 15px;
  transition: all .5s ease-out;
  transform: scale(0, 1);
  transform-origin: center;
}

.recommend_main .brand_names.show:after {
  transform: scale(1, 1);
}

.recommend_main .brand_names h2 {
  font-size: 1.5rem;
  width: 100%;
}


@media only screen and (min-width:600px) {
  .recommend_main .brand_names h2 {
    font-size: 2rem;
  }
}

@media only screen and (min-width:1025px) {
  .recommend_main .brand_container {
    margin: 0 auto 40px;
  }
  .recommend_main .brand_names h2 {
    font-size: 2rem;
  }
}




/********************************
サイドボタンエリア
********************************/
.recommend_main .btn_inner {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  /* visibility: visible;
  opacity: 0;
  transition: all .5s ease-out; */
}

/* .recommend_main .btn_inner.show {
  visibility: visible;
  opacity: 1;
} */

.recommend_main .btn_inner img {
  width: 75%;
  max-width: 100px;
}




/********************************
トラストプライス
********************************/
.recommend_main .services {
  width: 100%;
}

.recommend_main .services .dots {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}

.recommend_main .services .dots ruby rt {
  font-size: .8rem;
}

.recommend_main .services .sub_lead {
  margin-bottom: 25px;
  text-align: center;
}

.recommend_main .services .slider_wrap {
  width: 100%;
  margin: 0 auto;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 90%;
  height: 380px;
  padding: 20px 30px 5px;
  margin: 0 auto 50px;
  box-shadow: 0 0 14px -8px #221919;
  background: #fff;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens .cnt_number_sp {
  margin-bottom: 5px;
  font-size: 3.5rem;
  font-weight: bold;
  font-family: 'Gelasio', serif;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens .features_subtitle_sp {
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 1.2rem;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens p {
  font-size: .9rem;
  text-align: left;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens .note {
  margin-top: 10px;
  font-size: .9rem;
  text-align: left;
}

.recommend_main .services .slider_wrap .slider_recommend_item .features_sp .inner_contens .btn_service_smy_sp a {
  display: block;
  background: none;
  font-size: .9rem;
  text-align: right;
  text-decoration: underline;
  margin: 5px 0 0 auto;
}


@media only screen and (min-width: 600px) {
  .recommend_main .services .dots {
    font-size: 2rem;
    text-align: center;
  }
  .recommend_main  .services .sub_lead {
    font-size: 1.5rem;
    text-align: center;
  }
  .recommend_main  .services .features {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  .recommend_main  .services .features ul {
    display: grid;
    grid-template-rows: 230px 1fr 360px 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 15px 100px;
  }
  .recommend_main  .services .features ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    background: #fff;
  }
  .recommend_main  .services .features ul li:first-of-type {
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / 4;
    justify-content: center;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_cnt-number {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Gelasio', serif;
    margin: 0;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 0 0 10px;
    display: inline;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_text {
    margin-bottom: 0;
    margin-top: 7px;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_note {
    font-size: .9rem;
    text-align: left;
    line-height: 1.5;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_btn a {
    display: block;
    background: none;
    font-size: .9rem;
    max-width: 280px;
    margin: 10px 0 0 auto;
    text-align: right;
    text-decoration: underline;
  }
}

@media only screen and (min-width: 600px) {
  .recommend_main .services .features ul li .features_contents .features_contents_subtitle {
    font-weight: 500;
  }
}

@media only screen and (min-width: 1025px) {
  .recommend_main .services .sub_lead {
    font-size: 1.5rem;
  }
  .recommend_main  .services .features {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
  }
  .recommend_main .services .features ul {
    display: grid;
    grid-template-rows: 230px 350px 330px 1fr;
    grid-template-columns: 320px 320px 320px;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 0 15px 100px;
  }
  .recommend_main  .services .features ul li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 20px;
    background: #fff;
  }
  .recommend_main  .services .features ul li:first-of-type {
    grid-column: 1 / 4;
    justify-content: center;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_cnt-number {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Gelasio', serif;
    margin: 0;
  }
  .recommend_main .services .features ul li .features_contents .features_contents_subtitle {
    font-size: 1.7rem;
    margin: 0 0 0 10px;
    display: inline;
  }
  .recommend_main   .services .features ul li .features_contents .features_contents_text {
    margin-bottom: 0.3rem;
    margin-top: 7px;
    font-size: 1.1rem;
    text-align: left;
    line-height: 1.5;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_note {
    font-size: .8rem;
    text-align: left;
    line-height: 1.5;
  }
  .recommend_main .services .features ul li .features_contents .features_contents_btn a {
    display: block;
    background: none;
    font-size: .9rem;
    max-width: 280px;
    margin: 10px 0 0 auto;
    text-align: right;
    text-decoration: underline;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }
  .recommend_main  .services .features ul li .features_contents .features_contents_btn a:hover {
    opacity: .8;
  }
}

@media only screen and (max-width: 860px) {
  .pc_tablet_only_trustPrice {
    display: none !important;
  }
}

@media only screen and (min-width: 861px) {
  .sp_only_trustPrice {
    display: none !important;
  }
}



/********************************
フッター上書き
********************************/
#footer #footer_nav_pc .footer_nav_inner {
  max-width: 960px;
}
#footer #footer_nav_pc .footer_nav_inner, #footer #footer_nav_pc .footer_nav_inner a {
width: 100%;
}
#footer #footer_nav_pc .footer_nav_inner .footer_nav_col li {
  font-size: .9rem;
}
#footer .footer_nav_bg .footer_nav_bg_inner {
width: 100%;
}