@charset "utf-8";

html {
    font-family: Noto Sans JP;
    color: #333;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.wrapper {
 max-width: 1080px;
 margin: 0 auto;
 padding: 80px 40px;   
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  
  @media screen and (max-width: 560px) {
    font-size: 24px;
  }
}

.section-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
}

/*------------
header
------------*/



.header {
    padding: 12px;
    display: flex;
    background-color: #83776A;
    color: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
}

.header-nav {
    display: flex;
    gap: 20px;
    font-weight: 500;
}

/*-----------
firstview-img
-----------*/

.firstview-img {
    max-width: 100%;

    @media screen and (max-width: 560px) {
        height: 100%;
        object-fit: cover;        
    }
}

/*-----------
firstview-pic
-----------*/

.pickup-title {
    color: #83776A;
}

.pickup-texttitle {
    color: #83776A;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 24px;


    @media screen and (max-width: 560px) {
       text-align: center;
    }
}

.pickup-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;

    @media screen and (max-width: 560px) {
       display: block;
    }
}

.pickup-item-reverse {
    flex-direction: row-reverse;
    margin-bottom: 0;
}

.pickup-textbox {
    width: 50%;
    max-width: 468px;

    @media screen and (max-width: 560px) {
       width: 100%;
       max-width: 100%;
    }
}

.pickup-btn {
    width: 179px;
    height: 43px;
    color: #83776A;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    border-radius: 100px;
    border: 1px solid  #83776A ;
    background-color: #fff;
    cursor: pointer;

    @media screen and (max-width: 560px) {
        margin: 0 auto;
    }
}

.pickup-btnlink {
    display: inline-block;
    padding: 10px 0;
} 

/*-----------
shop
-----------*/

.shop {
    background-color: #83776A;
    color: #fff;
    text-align: center;
    
   @media screen and (max-width: 560px) {
        text-align: left;
    }
}

.shop-text {
    margin-bottom: 40px;
    font-size: 16px;
    font-weight: 400
}

.shop-btn {
    margin: 0 auto;
    width: 175px;
    height: 53px;
    color: #83776A;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    background-color: #fff;
    border-radius: 100px;
    cursor: pointer;
}

.shop-btnlink {
    display: inline-block;
    padding: 12px 0;
}

/*-----------
footer
-----------*/

.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #83776A
    background-color: #fff;
}

.footer-text {
    text-align: center;
    font-size: 12px;
}