@charset "utf-8";

.shop__pref {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;

    @media screen and (max-width: 898px) {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 4px 0;
    }

    &-name {
        font-size: clamp(22px,6vw,28px)!important;

        @media screen and (max-width: 898px) {
            position: relative;
            margin: 0!important;
            padding: 16px;
            background-color: #e94d59;
            color: #fff;

            &::before {
                content: none!important;
            }

            &::after {
                content: '\f0ab'!important;
                font-family: FontAwesome;
                position: absolute;
                right: 5%;
            }
        }
    }

    .shop__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        border: solid 2px #e94d59;
        border-radius: 100px;
        background-color: #FFF;
        text-align: center;
        font-size: 16px;

        @media screen and (max-width: 898px) {
            margin: -2px 0;
            border-radius: 0;

        }

        a {
            display: block;
            width: 100%;
            color: #e60012;
            margin: 0;
            padding: 16px;

            @media screen and (max-width: 898px) {
                text-align: left;

                &::before {
                    content: '\f054';
                    font-family: FontAwesome;
                    padding-right: 0.3em;
                    font-size: 81%;
                }
            }
        }
    }
}

h1 figure {
  /* box-shadow: 0 0 10px rgba(0,0,0,0.25); */
}


.content_detail {
  margin: 2em 0;

  .content_ttl {
    position: relative;
    font-size: 18px;
    margin: 2em 0 1em;

    @media screen and (min-width: 768px) {
      font-size: 22px;
    }

    &::before {
      position: absolute;
      content: '';
      width: 100%;
      height: 2px;
      left: 0;
      bottom: 0;
      background: linear-gradient(to right, #666, #666 2px, transparent 3px);
      background-size: 5px 2px;
      background-position: left bottom;
      background-repeat: repeat-x;
    }
  }

  a {
      color: #e60012;
      text-decoration: underline;
      transition: all 0.3s ease;
      
      &:hover {
        opacity: 0.5;
        text-decoration: none;
      }
    }

  .schedule_list {
    /* max-width: 360px; */
    padding: 0;

    @media screen and (min-width: 768px) {
      /* max-width: 560px; */
    }

    li {
      position: relative;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      margin: 2px 0;

      @media screen and (min-width: 768px) {
      font-size: 16px;
      margin: 2px 0;
    }

      &::before {
        position: absolute;
        content: '';
        left: 0;
        bottom: 0;
        background-color: #666;
        width: 100%;
        height: 1px;
      }

      .date {
        display: block;
        font-weight: 700;
        line-height: 1.5;
        width: 27%;
        padding: 0.2em 0.4em;

        @media screen and (min-width: 600px) {
          width: 24%;
        }
      }

      .time {
        display: block;
        font-weight: 700;
        line-height: 1.5;
        background: #ca9e5c;
        width: 18%;
        padding: 0.2em 0.4em;
      }

      .opponent {
        /* display: flex;
        justify-content: center;
        align-items: center; */
        font-weight: 700;
        line-height: 1.5;
        background: #c80a14;
        color: #fff;
        width: 55%;
        padding: 0.2em 0.4em;

        @media screen and (min-width: 600px) {
          width: 58%;
        }
      }
    }
  }

  .table {

    dl {
      display: flex;
      justify-content: flex-start;
      align-items: flex-start;
      margin: 0.4em 0;
  
      dt {
        display: block;
        width: 80px;
        font-weight: 700;
      }
  
      dd {
        display: block;
      }
    }
    
  }
}

.flx_box {
  display: block;

  @media screen and (min-width: 768px) {
    display: flex;
  }
}

.shop_txt {

   @media screen and (min-width: 768px) {
    width: 50%;
  }
}

.shop_map {

   @media screen and (min-width: 768px) {
    width: 50%;
  }
}