/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600&display=swap');
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;
  /*========== Colors ==========*/
  --first-color: #DB8E46;
  --second-color: #FDEEBA;
  --third-color: #C5D9AB;
  --fourth-color: #DB554A;
  --text-color: #2F2F2F;
  --white-color: #fff;
  --container-color: #FFFDF5;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Noto Sans JP', sans-serif;
  /* --second-font: "Montserrat", sans-serif; */
  --bigger-font-size: 2.18rem;
  --big-font-size: 1.8rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1.125rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --bigger-font-size: 4rem;
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-big-font-size: 1.125rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

  /*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

input,
button,
body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  background-color: var(--container-color);
}

input,
button {
  border: none;
  outline: none;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
}

a {
  color:inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.circle{
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--second-color);
}

.icon-l{
  font-size: 3rem;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px; 
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}


/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  background-color: var(--container-color);
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__list{
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__link{
  color: var(--text-color);
  text-decoration: none;
  border-bottom: 1px solid var(--first-color);
  padding-bottom: 2px;
}

.nav__link:hover{
  background: var( --first-color);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav__link-button{
  background-color: var(--second-color);
  padding: 0.75rem 1.8rem;
  border-radius: 4rem;
  color: var(--text-color);
  column-gap: 1rem;
}

.fa-file-lines{
  color: var(--fourth-color);
}

.ri-file-2-line{
  color: var(--fourth-color);
}



/*=============== MAIN ===============*/
main{
  margin-top: var(--header-height);
}


.item__section,
.drinks__section{
  padding-block: 7rem 2rem;
}

.home__image{
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.pc{
  display: block;
}

.sp{
  display:none;
}

/*=============== LEAD ===============*/
.lead__content{
  padding-block: 2.5rem 2.5rem;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
}


/*=============== ITEM ===============*/
.item__section{
  width: 100%;
}

.item__title{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
}

.item__content,
.item__info{
  display: grid;
  justify-content: center;
}

.item__info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
/*    width: 320px;*/
}

.item__info-title{
  display: flex;
  flex-wrap: nowrap;
  column-gap: 3rem;
  color: var(--first-color);
}

.item__info-title-kids{
  display: flex;
  column-gap: 1rem;
  color: var(--first-color);
}

.price{
  color: var(--text-color);
  font-size: var(--h3-font-size);
}

.item__info-card img{
  display: block;
  margin-bottom: 1rem;
}

h3, span{
  display: inline-block;
}

.item__content{
  row-gap: 2rem;
}

.item__info{
  grid-template-columns: repeat(2, 1fr);
  column-gap: 8rem;
  row-gap: 1.875rem;
}

.item__info-card{
  padding: 2rem 1.5rem;
  text-align: center;
}

.item__info-title{
  font-size: var(--h3-font-size);
}

.item__description{
  color: #5D5D5D;
  font-size: var(--small-font-size);
  margin-top: 1.25rem;
  text-align: left;
}

/* NEWS */

.news {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding-block: 2rem;
  align-items: center;
  background-color: white;
  border-radius: 2rem;
  width: 100%;
} 

.news__container {
  padding: 2rem;
  text-align: center;
  width: 100%;
}

.news__content{
  gap: 1rem;
}

.oshirase,
.news__content .news__link {
  text-align: center;
  color: var(--first-color);
}

.news__list .news__item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: var(--text-color);
  border-bottom: 1px solid var(--second-color);
  padding-block: 20px 20px;
}

.news__list .news__item:first-child a{
  border-top: 1px solid var(--second-color);
}

.news__list .news__item .date{
  margin: 0;
  min-width: 120px;
  font-size: var(--small-font-size);
  color: #999;
  padding: 0 20px 0 0;
  text-align: left;
}

.news__list .news__item .link__title{
  margin: 0;
  width: 100%;
  font-size: var(--small-font-size);
}

.news__list .news__item a:hover .link__title{
  color: var(--first-color);
}




/* BANNER */
.banner{
  margin: 4.25rem auto 6.25rem;
}


/*=============== DRINKS ===============*/
.drinks__section{
  width: 100%;
}

.drinks__content{
  display: grid;
  justify-content: center;
}

.drinks__title{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
}

/* TABLE */

table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
  border-radius: 60px;
  overflow: hidden;
}

.table-container{
  padding: 2.5rem 8rem;
}

table tr {
  background-color: #ffffff;
}

table th,
table td {
  padding: 1rem 4rem;
  border-bottom: 1px dotted #eee;
  text-align: center;
}

table tr:last-child th,
table tr:last-child td {
  border-bottom: none;
}


table thead th {
    font-size: .85em;
    padding: 1em;
}

table thead .softdrink{
  background-color: var(--third-color);
  color:var(--text-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
}

table thead .alcohol{
  background-color: var(--second-color);
  color:var(--text-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
}

table tbody th {
  text-align: left;
  font-size: var(--normal-font-size);
}

.price{
  text-align: right;
  color: var(--text-color);
}

.table__softdrink{
  margin-bottom: 1.25rem;
}

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

/*=============== CONTACT ===============*/
.contact__section{
  padding-block: 7rem 7rem;
}

.contact__content{
  display: grid;
  justify-content: center;
}

.contact__data{
  display: inline-flex;
  flex-direction: column;
}

.contact__download{
  display: inline-flex;
  cursor: pointer;
  color: var(--fourth-color);
}

.contact__title{
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 0 auto;
}

.phone-icon{
  color: #2E6230;
}

.contact__tel{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-block: 2rem;
  column-gap: 2rem;
  background-color: var(--third-color);
  width: 600px;
  border-radius: 5.3rem;
}

.tel,
.fax{
  font-size: var(--bigger-font-size);
}

.contact__fax{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-block: 2rem;
  column-gap: 2rem;
  background-color: #FFCC9C;
  width: 600px;
  border-radius: 5.3rem;
}

.fax-icon{
  color: #714115;
}

.contact__download{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding-block: 2rem;
  column-gap: 2rem;
  background-color: #FFFFFF;
  width: 600px;
  border-radius: 5.3rem;
  border: solid 5px var(--fourth-color);
}

.download{
  font-size: var(--big-font-size);
  color: var(--fourth-color);
  border-bottom: solid 1px var(--fourth-color);
}

.download-icon{
  color: #DB554A;
}

.url{
  margin: 0 auto;
  font-size: var(--smaller-font-size);
}


/*=============== FOOTER ===============*/
.footer{
  padding-block: 3rem 2rem;
  background-color: var(--third-color);
}

.footer__content{
  margin: 0 auto;
  text-align: center;
}

.footer__title{
  font-weight: var(--font-semi-bold);
  font-size: var(--h2-font-size);
}

/* For small devices */


@media screen and (max-width: 769px){

  .nav{
    max-width: 100%;
    height: auto;
  }

  .item__info{
    column-gap: 5rem;
  }
  
  .item__section,
  .drinks__section{
    padding-block: 3rem 2rem;
  }


  .item__info{
    column-gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
    margin: 0 auto;
  }



  .table-container{
    padding: 1rem 3rem;
  }

  .contact__container{
    max-width: 100%;
  }

.contact__tel,
.contact__fax,
.contact__download{
  width: 400px;
}
}

@media screen and (min-width:426px) and (max-width:767px){
  .nav{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 6rem;
  }

  li{
    font-size: var(--smaller-font-size);
  }

  .nav__link-button{
    padding: 0.5rem 1rem;
  }

  .nav__menu{
    margin: 0 auto;
    text-align: center;
  } 


  .nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
  }

.home__image{
  margin-top: 2rem;
}
}


@media screen and (max-width: 425px){
  .nav{
    display: flex;
    flex-direction: column;
    height: 8rem;
    justify-content: center;
  }

  li{
    font-size: var(--smaller-font-size);
  }

  .nav__link-button{
    padding: 0.5rem 1rem;
  }

  .pc{
    display: none;
  }

  .sp{
    display: block;
    margin: 0 auto;
  }

  .home__image{
    margin-top: 2rem;
  }

  .lead__content{
    padding-block: 2.5rem 2rem;
  }
  .item__section,
  .drinks__section{
    padding-block: 3rem 2rem;
  }
  .item__info{
    column-gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  .table-container{
    font-size: var(--h3-font-size);
  }

  .banner{
    width: 300px;
    margin: 0 auto;
  }
  
  .table-container{
    padding: 1rem 3rem;
  }
  
  table th{
    padding: 1rem 1rem;
  }

  table td{
    padding: 1rem 2rem;
  }

.contact__container{
  max-width: 100%;
}

.contact__tel,
.contact__fax,
.contact__download{
  width: 300px;
  padding-block: 1rem;
}


.tel-title,
.fax-title{
  font-size: var(--normal-font-size);
}

.tel,
.fax,
.download{
  font-size: var(--h3-font-size);
}
}

@media screen and (min-width: 1152px){
  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 7rem 2rem;
  }

  .nav{
    height: calc((--header-height) + 1.5rem);
  }

  .home__container{
    grid-template-columns: 530px 465px;
    justify-content: center;
    padding-top: 3.5rem;
    column-gap: 7.5rem;
  }

  .tel,
  .fax,
  .download{
    font-size: var(--h3-font-size);
  }
}