﻿@charset "UTF-8";

.mens-recommend {
  margin: -10px 0 40px;

  .title01 {
    margin-bottom: 25px;
  }
  
  @media screen and (min-width: 769px) {
    margin: 70px 0 50px;
    
    .title01 {
      margin-bottom: 40px;
    }
  }

  .mens-recommend__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;

    @media screen and (min-width: 769px) {
      justify-content: space-between;
    }
  }

  .mens-recommend__list__item {
    width: 30%;
    margin: 0 1.5%;
    @media screen and (min-width: 769px) {
      width: 18%;
      margin: 0;
    }

    a {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      line-height: 1.3;
      &:hover {
        opacity: .7;
      }
      span {
        color: #000;
        text-decoration: underline;
        font-size: 11px;
        text-align: center;
      }

      @media screen and (min-width: 769px) {
        gap: 10px;
        span {
          font-size: 14px;
        }
      }
    }

  }
}