@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    基本設定
======================================================== */
.gDef-top-banner {
  background-color: #ffffff;
}
.logo_nazo1{
  width: 10rem;
}
.gDef-contents * {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}
.gDef-contents img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}


/* ========================================================
    レイアウト
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.625vw;
  }
}

.gDef-contents {
  width: 100%;
  color: #5c2512;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .gDef-contents {
    font-size: 1.8rem;
  }
}

#wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main {
  position: relative;
  width: 100%;
}

.inner {
  position: relative;
  width: 100%;
}

/* ========================================================
    header
======================================================== */
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
}
#header.fixed {
  position: fixed;
}
#header.fixed2 {
  position: absolute;
  top: auto;
  bottom: 100vh;
}
#header .btn_menu {
  position: absolute;
  right: 3rem;
  top: 3rem;
  display: block;
  width: 9rem;
  height: 9rem;
  z-index: 1010;
}
@media screen and (min-width: 768px) {
  #header .btn_menu {
    right: 4rem;
    top: 4rem;
    width: 6.4rem;
    height: 6.4rem;
  }
}
#header .btn_menu::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/icon_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  opacity: 0;
  transition: 0.3s ease;
}
#header .btn_menu.active {
  position: fixed;
}
#header .btn_menu.active::after {
  opacity: 1;
}
#header .nav {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  padding: 14rem 5rem;
  background-color: #f9ecdb;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  #header .nav {
    padding: 17rem 35rem;
  }
}
#header .nav_menu {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #header .nav_menu {
    justify-content: flex-start;
    column-gap: 2rem;
  }
}
#header .nav_menu > li {
  width: 55rem;
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li {
    width: 44rem;
  }
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li:nth-child(1) {
    order: 1;
  }
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li:nth-child(2) {
    order: 3;
  }
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li:nth-child(3) {
    order: 4;
  }
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li:nth-child(4) {
    order: 2;
  }
}
#header .nav_menu > li.ramen a {
  background-color: #ffe100;
}
#header .nav_menu > li.sweets a {
  background-color: #68de7e;
}
#header .nav_menu > li a {
  position: relative;
  display: block;
  padding: 2rem 0;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  border-radius: 1rem;
  background: #eb611e;
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li a {
    font-size: 2.2rem;
  }
}
#header .nav_menu > li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 4rem;
  border-top: 0.4rem solid;
  border-right: 0.4rem solid;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  #header .nav_menu > li a:hover {
    opacity: 0.7;
  }
}
#header .nav_menu > li h2 {
  margin-bottom: 0.6rem;
}
#header .nav_menu_item > li {
  margin-bottom: 0.6rem;
}
#header .nav_menu_item > li > a {
  background-color: rgba(235, 97, 30, 0.3);
}
#header .menu_bottom {
  position: absolute;
  left: 0;
  top: calc(100vh - 10rem);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #header .menu_bottom {
    left: auto;
    right: 0;
    top: 15vh;
    align-items: flex-end;
    flex-direction: column;
    width: 6.8rem;
  }
}
#header .menu_bottom > li {
  position: relative;
  width: 25%;
}
@media screen and (min-width: 768px) {
  #header .menu_bottom > li {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #header .menu_bottom > li:first-child > a > span {
    border-top-left-radius: 2rem;
  }
}
#header .menu_bottom > li:last-child > a > span {
  border-right: none;
}
@media screen and (min-width: 768px) {
  #header .menu_bottom > li:last-child > a > span {
    border-bottom: 0.3rem solid #5c2512;
    border-bottom-left-radius: 2rem;
  }
}
#header .menu_bottom > li > a {
  position: relative;
  display: block;
  width: 100%;
}
#header .menu_bottom > li > a > img {
  position: absolute;
  left: calc(50% - 4rem);
  top: -4rem;
  display: block;
  width: 8rem;
}
@media screen and (min-width: 768px) {
  #header .menu_bottom > li > a > img {
    left: -3.4rem;
    top: calc(50% - 3rem);
    width: 6rem;
  }
}
#header .menu_bottom > li > a > span {
  display: block;
  width: 100%;
  padding: 5rem 0 1.2rem 0;
  color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  border-top: 0.3rem solid #5c2512;
  border-left: none;
  border-right: 0.3rem solid #5c2512;
  border-bottom: none;
  background-color: #eb611e;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  #header .menu_bottom > li > a > span {
    height: 15rem;
    padding: 1rem 1.5rem;
    font-size: 1.4rem;
    border-left: 0.3rem solid #5c2512;
    border-right: none;
    writing-mode: vertical-rl;
  }
}

.sns_btn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  column-gap: 2rem;
  margin-top: 4rem;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .sns_btn_list {
    column-gap: 1rem;
    margin-bottom: 4rem;
  }
}
.sns_btn_list > li {
  position: relative;
  width: 31.5rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .sns_btn_list > li {
    width: 45rem;
    padding-right: 0;
    line-height: 5rem;
  }
}

@media screen and (min-width: 768px) {
  .sns_btn_list > li::after {
    right: 1.5rem;
    top: calc(50% - 1.2rem);
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
  padding: 6rem 0 18rem 0;
  background-color: #5c2512;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 4rem 0;
  }
}
.footer_copyright {
  color: #ffffff;
  text-align: center;
}

/* ========================================================
    popup
======================================================== */
.popup {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100vh;
  z-index: 1000;
}
.popup_area {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  z-index: 1010;
}
.popup_bg {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(249, 236, 219, 0.9);
  z-index: 1020;
  cursor: pointer;
}
.popup_inner {
  position: relative;
  left: 50%;
  top: 50%;
  display: block;
  width: 65rem;
  height: auto;
  max-height: 90vh;
  transform: translate(-50%, -50%);
  z-index: 1030;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (min-width: 768px) {
  .popup_inner {
    width: 100rem;
  }
}
.popup_close {
  display: block;
  width: 9rem;
  height: 9rem;
  margin-left: auto;
  background-image: url(../images/common/icon_close.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .popup_close {
    width: 6.4rem;
    height: 6.4rem;
  }
}
.popup_list {
  position: relative;
  width: 100%;
  margin-top: 3rem;
  padding: 5rem 5rem 9rem 5rem;
  border: 0.3rem solid #5c2512;
  border-radius: 3rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .popup_list {
    margin-top: 2rem;
    padding: 6rem 10rem 10rem 10rem;
  }
}
.popup_list > li {
  display: none;
}
.popup_list_img {
  width: 42rem;
  margin: 0 auto;
}
.popup_list_img.popup_list_img_map {
  width: 55rem;
  margin-top: 2rem;
}
.popup_list_slider {
  width: 42rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.popup_list_slider .slick-dots {
  position: absolute;
  left: 0;
  bottom: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
}
.popup_list_slider .slick-dots li {
  margin: 0 1rem;
}
.popup_list_slider .slick-dots li.slick-active button {
  background-color: #eb611e;
}
.popup_list_slider .slick-dots li button {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0;
  border-radius: 50%;
  background-color: #cbcbcb;
}
.popup_list_logo {
  width: 19rem;
  margin: 2rem auto 0 auto;
}
.popup_list_warning {
  width: 35rem;
  margin: 2rem auto 0 auto;
}
.popup_list_logo:first-child {
  margin-top: 0;
}
.popup_list_ambassador #popup_id_01 .popup_list_logo {
  width: 21.8rem;
}
@media screen and (min-width: 768px) {
  .popup_list_ambassador #popup_id_01 .popup_list_logo {
    width: 21.2rem;
  }
}
.popup_list_ambassador #popup_id_02 .popup_list_logo {
  width: 18.2rem;
}
@media screen and (min-width: 768px) {
  .popup_list_ambassador #popup_id_02 .popup_list_logo {
    width: 17.7rem;
  }
}
.popup_list_ttl {
  margin-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  border-bottom: 0.4rem dotted #eb611e;
}
.popup_list_ttl > span {
  display: block;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .popup_list_ttl > span {
    font-size: 1.6rem;
  }
}
.popup_list_ttl > em {
  display: block;
  font-style: normal;
  font-family: "Zen Maru Gothic", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .popup_list_ttl > em {
    font-size: 2.6rem;
  }
}
.popup_list_text {
  padding-top: 3rem;
  font-weight: 700;
}
.popup_list_date {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 6rem;
}
.popup_list_date > dt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 18rem;
  color: #ffffff;
  font-weight: 700;
  background-color: #5c2512;
}
.popup_list_date > dd {
  width: calc(100% - 11rem);
}
.popup_list_date > dd > ul {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  border-top: 0.1rem solid #5c2512;
}
.popup_list_date > dd > ul > li {
  width: 50%;
  text-align: center;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .popup_list_date > dd > ul > li {
    width: 50%;
  }
}
.popup_list_date > dd > ul > li:nth-child(2n) {
  background-color: #fffaf3;
}
.popup_list_date > dd > ul > li > span {
  display: block;
  color: #eb611e;
  font-weight: 700;
  border-right: 0.1rem solid #5c2512;
  border-bottom: 0.1rem solid #5c2512;
}
.popup_list_date > dd > ul > li > em {
  display: block;
  font-style: normal;
  font-weight: 700;
  border-right: 0.1rem solid #5c2512;
  border-bottom: 0.1rem solid #5c2512;
}/*# sourceMappingURL=base.css.map */