@charset "utf-8";

.first-view {
    /* height: calc(100vh - 400px); */
    height: 210px;
    background-image: url(../images/index/bg-main.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.first-view-text{
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-bottom: 50px;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text h1 {
 font-family: 'Montserrat', sans-serif;
 font-size: 56px;
 line-height: 72px;
}

.first-view-text p {
    font-size: 23px;
    margin-top: center;
}

.lead{
    max-width: 1200px;
    margin: 60px auto;
}

.lead p{
    line-height: 2;
    text-align: center;
}

.lead2{
    max-width: 600px;
    margin: 10px auto;
}

.lead2 p{
    text-align: center;
}

.link-button-area{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px
}

.link-button{
    background-color:#f4dd64;
    display: inline-block;
    min-width: 180px;
    line-height: 48px;
    border-radius: 24px;
    font-family: 'Montserrat,sans-selif';
    font-size: 14px;
}

.link-button:hover{
    background-color: #d8b500;
}

.btn-flat-border {
  display: inline-block;
  padding: 0.3em 1em;
  text-decoration: none;
  color: #67c5ff;
  border: solid 2px #67c5ff;
  border-radius: 3px;
  transition: .4s;
}

.btn-flat-border:hover {
  background: #67c5ff;
  color: white;
}

.recommended {
    background-color: #f8f8f8;
    padding-top: 45px;
    padding-bottom: 55px;
}

.recommended h2 {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.recommended h2::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background-color: #000000;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}

.item-list {
    display: flex;
    padding-top: 40px;
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
    overflow: scroll;
    overflow: visible;
}

.item-list li {
    flex-shrink: 0;
    width: 320px;
    margin-left: 75px;
}

.item-list li:first-child {
    margin-left: 0;
}

.item-list dl {
    margin-top: 20px;
}

.item-list dt {
    font-weight: bold;
}

.item-list dd {
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
}

.item-list .price {
    font-weight: bold;
    margin-top: 15px;
}

.news-list{
  list-style: none outside;
  margin: 0;
  padding: 0;
  width: 900px;
  max-width: 90%;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.news-list .item2 a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 15px 20px;
  line-height: normal;
}

.news-list .item2 .date{
  margin: 0;
  min-width: 100px;
  font-size: 16px;
  color: #747474;
  padding: 0 10px 0 0;
}
.news-list .item2 .title2{
  margin: 0;
  width: 100%;
}
.news-list .item2 a:hover .title2{
  text-decoration: underline;
}

@media screen and (max-width: 767px){
.news-list .item2 a{
  flex-wrap: wrap;
}
.news-list .item2 .date{
  min-width: 100px;
}
.news-list .item2 .title2{
  margin-top: 10px;
}
}
.main{
    padding-top:10px
}



@media (max-width: 800px){
    .first-view{
        height: 210px;
        /* height: calc(100vh - 500px);*/
        background-image: url(../images/index/bg-main.jpg);
        align-items: flex-start;

    
    }
    .first-view-text{
        padding-top: 70px;
        padding-left: 20px; 
    }
    .first-view-text h1 {
        font-size: 36px;
        line-height: 48px;
    }
    .first-view-text p {
        font-size: 18px;
        margin-top: center;
    }

    .lead {
        padding-left: 20px;
        padding-right: 20px;
    }
    .lead p {
        text-align: left;
    }

    .lead2 {
        padding-left: 10px;
        padding-right: 10px;
    }
    .lead2 p {
        text-align: center;
    }

    .item-list {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .item-list li {
        width: 220px;
    }
}

