@charset "UTF-8";
/* CSS Document */



/* 一時的 */

#t_news, #t_recruit{
    margin-top: -30px;
    padding-top: 30px;
}

/* 一時的終わり */

main{
    margin-top: 78px;
}

.header{
    background: #FFECB5;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 50px;
}

.logo{
    width: 50%;
    min-width: 250px;
    display: flex;
    align-items: center;
    z-index: 100;
}

.logo a{
    display: block;
}

.logo img{
     width: 250px;
}

.header_menu{
    width: 100%;
}

.hamburger{
    display: none;
}

.rwd_nav ul {
    display: flex;
    justify-content: flex-end;
}

.rwd_nav ul a{
    padding: 30px 25px;
    display: block;
}

.rwd_nav ul a:hover, .footer_link a:hover{
    color: #F79A35;
}

.slide1 {
    position: relative;
    overflow: hidden;
}

.slide1 .slide_txt{
    position: absolute;
    font-size: clamp(30px, 6vw, 48px);
    padding: 0 10px;
    max-width: 700px;
    top:30%;
    left: 35%;
    transform: translate(-50%, -50%);
}

.slide1 .slide_txt span{
    font-weight: 700;
    text-shadow:
        1px 1px rgba(255, 255, 255,0.5),
        1px 0 rgba(255, 255, 255,0.5),
        0 1px rgba(255, 255, 255,0.5),
        -1px -1px rgba(255, 255, 255,0.5),
        -1px 0 rgba(255, 255, 255,0.5),
        0 -1px rgba(255, 255, 255,0.5);
    background:linear-gradient(transparent 60%, rgba(255, 255, 255,0.8) 50%);
    display: inline-block;
}

.slide1 .slide_txt span:first-child{
    margin-bottom: 20px;
}

.slide1 .slide-items {
  width: 100%;
  height: 100%;
    z-index: -1;
}

.slide1 .slide-items img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.shop .shop_txt{
    text-align: center;
}

.shop .shop_container{
    margin: 50px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px 5%; 
}

.shop .shop_item{
    border: 1px solid #734E30;
    border-radius: 10%;
    box-shadow: 4px 4px 15px 10px rgba(115, 78, 48, 0.1);
}

.shop .shop_item:hover{
    box-shadow: 0 4px 7px 0 rgba(115, 78, 48, 0.1);
    transform: translateY(-5px);

}

.shop .shop_photo{
    position: relative;
}

.shop .shop_photo::before{
     content: "";
    display: block;
    padding-top: 75%; /* 4:3の場合 */
}

.shop .shop_photo img{
    height: 100%;
    left: 0;
    min-height: auto;
    min-width: auto;
    object-fit: cover;
    object-position: 50% 50%;
    top: 0;
    transform: none;
    width: 100%;
    position: absolute;
    border-radius: 10% 10% 0 0;
}

.shop .shop_info{
    padding: 20px 0;
    text-align: center;
}

.shop .shop_info h3{
    font-size: 18px;
    position: relative;
}

.shop .shop_info h3::after{
    content: '';
  width: 200px;
  height: 1px;
  display: inline-block;
  background-color: #734E30;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 100px)
}

.shop .shop_info p{
    margin-top: 20px;
}

.slide2{
    margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.slide2 img{
    width: 300px;
    height: auto;
}

.about{
    background-image: url(../img/background/background_wave.png);
}

.about .about_txt{
    max-width: 600px;
    padding-top: 50px; 
    margin: 0 auto;
    text-align: center;
    }

.about .about_txt h3{
    font-size: 24px;
    font-weight: bold;
    color: #F79A35;
}

.about .about_txt p{
    padding: 50px 0;
}

.news .news_container{
    margin-bottom: 50px;
}

.news .news_info{
    padding: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #734E30;
}

.news .news_info a:hover{
    opacity: .7;
}

.news .news_info:last-child{
    margin-bottom: 0;
}

.news .news_info dt{
    font-weight: bold;
}

.news .news_info span{
    padding: 0 20px;
}

.recruit{
    background-image: url(../img/background/background_circle.png);
    background-size: cover;
    background-position: center;
}

.recruit .recruit_container{
    position: relative;
}

.recruit .recruit_img{
    max-width: 960px;
}

.recruit .recruit_img img{
    max-width: 100%;
    height: auto;
}

.recruit .recruit_txt{
    padding: 50px 20px;
    background: #fff;
    position: absolute;
    bottom: 3%;
}

.recruit .r_main_txt{
    font-size: 24px;
    font-weight: bold;
}

.recruit .r_sub_txt{
    padding: 20px 0;
    line-height: 1.5;
}

.r_top{
    display: none;
}

footer{
    background: #FFF6DB;
}

footer .wrapper{
    padding: 100px 20px;
    display: flex;
    justify-content: space-between;
}

footer .logo{
    align-items: flex-start;
}

footer ul{
    display: flex;
}

.footer_link:first-child a{
    padding-right: 50px;
}

.footer_link a{
    padding-bottom: 30px;
    display: block;
}
