@charset "utf-8";

/* common */

:root {
  --primary-black: #333;
  --primary-white: #fdfdfd;
  --primary-navy:#37373F;
  --accent-color: #504736;
  --background-color: #F1F0EA;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "noto serif jp","noto sans jp", serif, sans-serif;
  font-style: normal;
  color: var(--primary-black, #333);
  background-color: var(--background-color);
  line-height: 2;
  position: relative;
}

.over__flow {
  overflow: hidden;
}

img, iframe {
  width: 100%;
  height: auto;
  text-align: center;
}

.section {
  padding: 0 4.2%;
}


.section__lead {
  text-align: justify;
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 48px;
  color: #000;
}

.section__topic {
  color: var(--accent-color, #504736);
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 64px;
}

.section__txt {
  text-align: justify;
  font-family: "Noto Serif JP";
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  margin-bottom: 64px;
}

.item__topic {
  text-align: center;
  font-family: "Noto Serif JP";
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 24px;
}

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

  .section__topic {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 80px;
  }
  .section__txt {
    display: block;
    font-size: 1.8rem;
    width: 45.5%;
    margin: 0 auto 64px;
  }
  .item__topic {
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 48px;
  }
}

/* header */

.header, .nav__header {
  background-color: var(--primary-navy);
  width: 100%;
  padding: 24px 4.2% 16px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.header {
  margin-bottom: 48px;
}

.header__topic {
  width: 33.3%;
}

.menuBotton, .closeBotton {
  width: 9.6%;
}

@media screen and (min-width:769px) {
  .header {
    background-color: var(--primary-navy);
    width: 100%;
    padding: 0 4.4% 48px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px !important;
  }    
  .nav__header {
    display: none;
  }
  .header__topic {
    width: 12%;
  }
  .menuBotton, .closeBotton {
    display: none;
  }
}

/* nav */

.nav {
  background-color: var(--background-color);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateX(-100%); 
  transition: transform 0.4s;
}

.nav.active {
  transform: translateX(0);
}

.nav__header {
  margin-bottom: 48px;
}

.nav__item {
  display: block;
  color: var(--accent-color, #504736);
  font-family: "Noto Serif JP";
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 40px 4.2%;
}

.btn--call {
  width: fit-content;
  position: relative;
  display: block;
  margin: 0 auto;
  background-color:var(--accent-color);
  padding: 8px 16px 8px 40px;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  
  color:var(--primary-white);
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;

  transition: 0.4s;
  cursor:pointer;
}

.btn--call::after{
  position: absolute;
  content: '';
  display: inline-block;
  width: 18px;
  height: 24px;
  background-image: url(../img/cellphone.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);

  margin-right: 8px;
}

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

  .nav {
    background-color: var(--primary-navy);
    height: auto;
    width: 100%;
    position: static;
    z-index: 0;
    transform: none;
  }
  .nav__list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
  }
  .nav__item {
    color: var(--primary-white);
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.15;
    margin: auto;
  }
  .item__border {
    display: none;
  }
  .btn--call {
    pointer-events: none;
    color: var(--primary-black, #333);
    background-color: transparent;
    font-size: 2.4rem;
    line-height: 0.75;
    box-shadow: none;
    padding: 0;
    padding-left: 30px;
    margin: 0 auto 16px;
  }
  .btn--call::after {
    top: 57%;
    left: 0;
    filter: brightness(0%) contrast(300%) grayscale(100%) opacity(100%) saturate(300%);
  }
}

/* common footer */

.footer__nav {
  display: none;
}

.footer {
  display: block;
  padding: 24px;
  background-color: var(--primary-navy);
  color: var(--primary-white);
  font-family: "Noto Serif JP";
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
}

.footer h2 {
  margin-bottom: 24px;
}

.footer h2 span {
  font-size: 3.6rem;
  line-height: 45px;
}

.footer__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer__info {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-right: 19.2%;
}

.link__tabelog {
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.7;
}

.footer__sns {
  display: flex;
  gap: 0 12px;
  vertical-align: middle;
  align-items: center;
}

.topBtn {
  width: 64px;
  position: fixed;
  bottom: 8px;
  right: 8px;
  cursor:pointer;
}

@media screen and (min-width:769px) {
  .footer {
    display: flex;
    padding: 64px 5%;
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
    align-items: center;

    font-size: 1.8rem;
    line-height: 1.5;
  }
  .footer__sns {
    display: flex;
    gap: 0 24px;
    margin-bottom: 24px;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    margin-top: 36px;
  }
  .footer__info {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-right: 0;
    text-align: center;
  }
  .footer__sns a img{
    height: 48px;
  }
  .link__tabelog {
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
  }
  .footer__nav {
    display: flex;
    width: 45%;
    justify-content: space-between;
    gap: 36px;
    flex-wrap: wrap;
    text-align: right;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25; 
  }
}


/* end of common */
