@charset "utf-8";
/* CSS Document */
/*==========================================
 共通
===========================================*/
body {
  font-family: "Sawarabi Mincho";
  color: #333;
}
img {
  display: block;
  max-width: 100%;
  width: 100%;
  line-height: 0;
  image-rendering: -webkit-optimize-contrast;
}
a:hover {
  cursor: pointer
}
.center {
  text-align: center;
}
.posi--r {
  position: relative;
}
.container {
  width: 100%;
}
.content {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.column2 {
  width: 50%;
}
.column2--space {
  width: 48%;
}
.column2--spacePC {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .column2--spacePC {
    width: 48%;
  }
}
.column3 {
  width: 32%;
}
.auto {
  margin: auto !important;
}
.mt--5 {
  margin-top: 5px
}
.mt--s {
  margin-top: 10px !important;
}
.mt--m {
  margin-top: 20px !important;
}
.mt--l {
  margin-top: 30px !important;
}
.mb--5 {
  margin-bottom: 5px;
}
.mb--s {
  margin-bottom: 10px !important;
}
.mb--m {
  margin-bottom: 20px !important;
}
.mb--l {
  margin-bottom: 30px !important;
}
.pt--5 {
  padding-top: 5px;
}
.pt--s {
  padding-top: 10px !important;
}
.pt--m {
  padding-top: 20px !important;
}
.pt--l {
  padding-top: 30px !important;
}
.pb--5 {
  padding-bottom: 5px;
}
.pb--s {
  padding-bottom: 10px !important;
}
.pb--m {
  padding-bottom: 20px !important;
}
.pb--l {
  padding-bottom: 30px !important;
}
@media all and (min-width: 769px) {
  .mt--s {
    margin-top: 15px !important;
  }
  .mt--m {
    margin-top: 30px !important;
  }
  .mt--l {
    margin-top: 45px !important;
  }
  .mb--s {
    margin-bottom: 15px !important;
  }
  .mb--m {
    margin-bottom: 30px !important;
  }
  .mb--l {
    margin-bottom: 45px !important;
  }
  .pt--s {
    padding-top: 15px !important;
  }
  .pt--m {
    padding-top: 30px !important;
  }
  .pt--l {
    padding-top: 45px !important;
  }
  .pb--s {
    padding-bottom: 15px !important;
  }
  .pb--m {
    padding-bottom: 30px !important;
  }
  .pb--l {
    padding-bottom: 45px !important;
  }
}
.bgColor--bk {
  background: #000;
}
.bgColor--red {
  background: #c40018;
}
.bgColor--gray {
  background: #efefef;
}
.z1 {
  position: relative;
  z-index: 1;
}
.z2 {
  position: relative;
  z-index: 2;
}
.z3 {
  position: relative;
  z-index: 3;
}
.z997 {
  position: relative;
  z-index: 997;
}
.z998 {
  position: relative;
  z-index: 998;
}
.z999 {
  position: relative;
  z-index: 999;
}
.w95p {
  width: 95% !important;
}
.w90p {
  width: 90% !important;
}
.w80p {
  width: 80% !important;
}
.w75p {
  width: 75% !important;
}
.w70p {
  width: 70% !important;
}
.w60p {
  width: 60% !important;
}
.w50p {
  width: 50% !important;
}
.w40p {
  width: 40% !important;
}
.w30p {
  width: 30% !important;
}
/*==========================================
 HEADER
===========================================*/
.wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
header {
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 9;
  background: #fff;
  box-shadow: 0 0 10px #999;
}
.head_logo {
  width: 250px;
  padding: 5px 0;
  z-index: 9;
}
@media screen and (min-width: 769px) {
  header {
    width: 100%;
    height: 80px;
    position: relative;
    z-index: 9;
    background: #fff;
    box-shadow: 0 0 10px #999;
  }
  .head_logo {
    width: 500px;
    padding: 5px 0;
    z-index: 9;
  }
}
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  color: #fff;
  text-align: center;
}
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
button {
  border: none;
  background: rgba(255, 255, 255, 0);
}
.menu, .menu span {
  -webkit-transition: all .4s;
  transition: all .4s;
}
.menu_wrap {
  position: absolute;
  top: 10px;
  right: 5%;
  width: 60px;
  height: 60px;
  background: #dbb49b;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
}
.menu_wrap.active {
  background: #efefef;
  position: fixed !important;
}
.menu {
  position: relative;
  width: 30px;
  height: 30px;
  z-index: 9999;
  cursor: pointer;
}
.menu_text {
  width: 60px;
  z-index: 9999;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  padding-top: 12px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  z-index: 9999;
}
.menu_wrap.active .menu span {
  background-color: #333;
}
.menu_wrap.active .menu_text {
  color: #333;
}
.menu span:nth-of-type(1) {
  top: 12px;
}
.menu span:nth-of-type(2) {
  top: 22px;
}
.menu span:nth-of-type(3) {
  top: 32px;
}
.menu_wrap.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.menu_wrap.active span:nth-of-type(2) {
  opacity: 0;
}
.menu_wrap.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
#nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 998;
  opacity: 0;
  -webkit-transition: .5s linear;
  -moz-transition: .5s linear;
  transition: .5s linear;
  -moz-transform: translateX(100vw);
  -webkit-transform: translateX(100vw);
  transform: translateX(100vw);
  width: 80%;
  height: 100vh;
  background: to bottom #dbb49b;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50px, #dbb49b 50px, #dbb49b 100%);
}
@media screen and (min-width: 769px) {
  #nav {
    width: 350px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 80px, #dbb49b 80px, #dbb49b 100%);
  }
}
#nav.active {
  right: 0;
  opacity: 1;
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
header.acctive {
  position: fixed !important;
}
nav ul {
  font-size: 0;
  padding-top: 80px;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  nav ul {
    padding-top: 120px;
  }
}
nav ul li {
  width: 100%;
  font-size: 16px;
  display: inline-block;
}
nav ul li a {
  display: block;
  width: 100%;
  text-decoration: none;
  color: #333;
  padding: 15px 0;
  border-bottom: 1px #fff dashed;
  text-align: left;
  position: relative;
}
nav ul li a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  transition: .7s;
}
nav ul li a:hover {
  opacity: .7;
}
nav ul li a:hover::after {
  right: 5px;
}
nav ul li i {
  width: 40px;
  text-align: center;
  margin-right: 10px;
}
.navi_content {
  color: #333;
  font-weight: normal;
  padding-top: 30px;
  text-align: left;
  font-size: 16px;
  line-height: 26px;
  width: 90%;
  margin: auto;
}
.navi_content p {
  padding-top: 10px;
}
/*==========================================
 MAIN
===========================================*/
.mainVisual {
  background: url(../images/mainVisual.webp) no-repeat;
  background-size: cover;
  background-position: top left;
  width: 100%;
  height: calc(100vh - 80px);
  height: 100vh;
}
.concept {
  padding: 12vw 0 0;
}
h2.title {
  font-size: 6vw;
  line-height: 8vw;
  text-align: center;
  font-weight: normal;
  padding-bottom: 20px;
  margin-bottom: 10vw;
  position: relative;
}
h2.title::before {
  background-color: #dbb49b;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
p.text {
  font-size: 3.5vw;
  line-height: 40px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .mainVisual {
    background: url(../images/mainVisual.webp) no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(100vh - 80px);
    height: 100vh;
  }
  .concept {
    padding: 120px 0 0;
  }
  h2.title {
    font-size: 36px;
    line-height: 64px;
    text-align: center;
    font-weight: normal;
    padding-bottom: 20px;
    margin-bottom: 80px;
    position: relative;
  }
  p.text {
    font-size: 16px;
    line-height: 48px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .menu2 {
    padding: 12vw 0 0;
  }
  .menu_title {
    text-align: center;
    width: 100%;
  }
  .menu_title h2 {
    font-size: 12vw;
    line-height: 80px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    position: relative;
  }
  .menu_title h2::before {
    background-color: #dbb49b;
    border-radius: 5px;
    bottom: -10px;
    content: "";
    height: 3px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
  }
  .menu_thum {
    width: 80%;
    margin-top: 50px;
    position: relative;
    z-index: 1;
  }
  .menu_box {
    background: rgba(253, 253, 253, .9);
    padding: 40px 0 20px;
    width: 85%;
    margin-left: 10%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    box-shadow: 10px 10px 0 #dbb49b;
    margin-top: -70vw;
    position: relative;
    z-index: 2;
  }
  .menu_title2 {
    width: 70%;
    font-size: 4.2vw;
  }
  .menu_price {
    width: 25%;
    font-size: 4vw;
  }
  .border_btm {
    border-bottom: 2px #dbb49b solid;
  }
  .menu_caution {
    font-size: 12px;
    line-height: 20px;
    padding: 10px 5px 0;
  }
  .menu_caution2 {
    font-size: 13px;
    line-height: 20px;
    padding: 10px 5px 0;
    text-align: right;
  }
}
@media all and (min-width: 769px) {
  .menu2 {
    padding: 120px 0 0;
  }
  .menu_title {
    order: 2;
    text-align: left;
    width: 50%;
  }
  .menu_title h2 {
    font-size: 60px;
    line-height: 80px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    position: relative;
  }
  .menu_title h2::before {
    background-color: #dbb49b;
    border-radius: 5px;
    bottom: -10px;
    content: "";
    height: 3px;
    left: 5%;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
  }
  .menu_thum {
    width: 45%;
    order: 1;
  }
  .menu_box {
    position: absolute;
    background: rgba(253, 253, 253, .9);
    top: 120px;
    left: 35%;
    padding: 40px 0 20px;
    width: 65%;
    font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
    box-shadow: 10px 10px 0 #dbb49b;
  }
  .menu_title2 {
    width: 70%;
    font-size: 20px;
  }
  .menu_price {
    width: 25%;
    font-size: 20px;
  }
  .border_btm {
    border-bottom: 2px #dbb49b solid;
  }
  .menu_caution {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 5px 0;
  }
  .menu_caution2 {
    font-size: 14px;
    line-height: 20px;
    padding: 10px 5px 0;
    text-align: right;
  }
}
.cafe {
  padding: 18vw 0 0;
}
h2.cafe_title {
  font-size: 12vw;
  line-height: 60px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  position: relative;
  text-align: center;
  margin-bottom: 10vw;
}
h2.cafe_title::before {
  background-color: #dbb49b;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
.dashed {
  width: 100%;
  margin: 5vw auto 0;
  background: #f4ddcf;
  border-radius: 30px;
  padding: 4vw 0;
}
.dashed i {
  padding: 0 10px;
}
.dashed-note {
  background-color: #f4ddcf;
  background-image: linear-gradient(90deg, transparent 0%, transparent 50%, #f4ddcf 50%, #f4ddcf 100%), /* 点線1の色 */ linear-gradient(180deg, #fff 1px, transparent 1px); /* 点線2の色と太さ */
  background-size: 8px 100%, /* 点線1のサイズ */ 100% 2.5em; /* 点線2のサイズ */
  line-height: 2.5em; /* 文字の高さ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
  width: 90%;
  margin: auto;
}
@media all and (min-width: 769px) {
  .cafe {
    padding: 180px 0 0;
  }
  h2.cafe_title {
    font-size: 60px;
    line-height: 80px;
    text-align: center;
    font-weight: normal;
    padding-bottom: 20px;
    margin-bottom: 40px;
    position: relative;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  }
  .dashed {
    width: 80%;
    margin: 50px auto 0;
    background: #f4ddcf;
    border-radius: 30px;
    padding: 40px 0;
  }
}
.access {
  width: 100%;
  padding: 12vw 0 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.access_title h2 {
  font-size: 12vw;
  line-height: 80px;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  position: relative;
  text-align: center;
}
.access_title h2::before {
  background-color: #dbb49b;
  border-radius: 5px;
  bottom: -10px;
  content: "";
  height: 3px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 50px;
}
.map iframe {
  width: 100%;
  box-shadow: 10px 10px 0 #dbb49b;
  height: 100%;
  margin: 12vw 0;
}
.map {
  margin-bottom: 12vw;
}
.access_text {
  padding-top: 30px;
  font-size: 16px;
  line-height: 30px;
}
@media all and (min-width: 769px) {
  .access {
    padding: 120px 0 0;
  }
  .access_title h2 {
    font-size: 60px;
    line-height: 80px;
    font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    position: relative;
    text-align: left;
  }
  .access_title h2::before {
    background-color: #dbb49b;
    border-radius: 5px;
    bottom: -10px;
    content: "";
    height: 3px;
    left: 25px;
    position: absolute;
    transform: translateX(-50%);
    width: 50px;
  }
  .map iframe {
    width: 100%;
    box-shadow: 10px 10px 0 #dbb49b;
    height: 100%;
    margin: 0;
  }
  .map {
    margin-bottom: 0;
  }
  .access_text {
    padding-top: 50px;
    font-size: 20px;
    line-height: 36px;
  }
}
/*==========================================
 RECRUIT
===========================================*/
@media screen and (min-width: 1001px) {
  .content_wrap {
    width: 100%;
    margin: 120px 0 0;
    display: flex;
    justify-content: space-between;
  }
  .recruit_wrap {
    width: 50%;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
  }
  .contact_wrap {
    width: 50%;
  }
  .recruit_wrap a, .contact_wrap a {
    width: 100%;
    display: block;
    padding: 60px 0;
    color: #fff;
    background: #dbb49b;
    text-decoration: none;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  .recruit_wrap a:hover, .contact_wrap a:hover {
    background: #efefef;
    color: #dbb49b;
  }
  p.content_text_top {
    font-size: 16px;
    padding: 0 0 20px;
  }
  p.content_text_bottom {
    font-size: 16px;
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 601px) and (max-width: 1000px) {
  .content_wrap {
    width: 100%;
    margin: 60px 0 0;
    display: flex;
    justify-content: space-between;
  }
  .recruit_wrap {
    width: 50%;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
  }
  .contact_wrap {
    width: 50%;
  }
  .recruit_wrap a, .contact_wrap a {
    width: 100%;
    display: block;
    padding: 40px 0;
    color: #fff;
    background: #dbb49b;
    text-decoration: none;
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  .recruit_wrap a:hover, .contact_wrap a:hover {
    background: #efefef;
    color: #dbb49b;
  }
  p.content_text_top {
    font-size: 16px;
    padding: 0 0 15px;
  }
  p.content_text_bottom {
    font-size: 16px;
    padding: 15px 0 0;
  }
}
@media screen and (max-width: 600px) {
  .content_wrap {
    width: 100%;
    margin: 16vw 0 0;
  }
  .recruit_wrap {
    width: 100%;
    border-bottom: 1px #fff solid;
  }
  .contact_wrap {
    width: 100%;
  }
  .recruit_wrap a, .contact_wrap a {
    width: 100%;
    display: block;
    padding: 8vw 0;
    color: #fff;
    background: #dbb49b;
    text-decoration: none;
    font-size: 10vw;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
  }
  .recruit_wrap a:hover, .contact_wrap a:hover {
    background: #efefef;
    color: #dbb49b;
  }
  p.content_text_top {
    font-size: 16px;
    padding: 0 0 2vw;
  }
  p.content_text_bottom {
    font-size: 16px;
    padding: 2vw 0 0;
  }
}
/*==========================================
 FOOTER
===========================================*/
footer {
  padding: 30px 0;
  text-align: center;
}
.copy {
  text-align: center;
  font-size: 14px;
}