/*
    Theme Name: seiryo
*/

@charset "UTF-8";

/*------------------------------------*\
        COMMON
\*------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Noto+Sans+JP:wght@400;500&display=swap');

html, body{
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    color: #000000;
    height: 100%;
    overscroll-behavior: none;
}

:root {
  --fontjp: 'Noto Sans JP', sans-serif;
  --fonten: 'Montserrat', sans-serif;
}

/* pcのみ表示 */
.pc { display: block; }
.sp { display: none; }
/* spのみ表示 */
@media only screen and (max-width: 750px) {
    .pc { display: none; }
    .sp { display: block; }
}

.link_range {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
}

img {
    width: 100%;
    height: auto;
}


/*------------------------------------*\
        共通
\*------------------------------------*/
/* inview用 */
.inview, .inview2 {
    transition: all 800ms ease-in-out;
    opacity: 0;
}
.inview_up, .inview_up2 {
    transition: all 500ms ease-in-out;
    opacity: 0;
    transform: translate(0,10px);
}
.inview_action {
    opacity: 1.0;
}
.inview_up_action {
    opacity: 1.0;
    transform: translate(0,0);
}
@media only screen and (max-width:750px) {
}


/*------------------------------------*\
    header
\*------------------------------------*/
.header_logo_wrap {
  position: fixed;
  top: 50px;
  left: 40px;
  z-index: 940;
  /*
  -webkit-filter: invert(100%);
  filter: invert(100%);
  mix-blend-mode: exclusion;
  */
  transition: all 500ms ease-in-out;
}
.header_logo {
  width: 23vw;
  max-width: 434px;
  transition: all 300ms ease-in-out;
}
@media only screen and (max-width:750px) {
  .header_logo_wrap {
    top: 20px;
    left: 20px;
  }
  .header_logo {
    width: 196px;
  }
}

.header_link_wrap {
  position: fixed;
  right: 40px;
  top: 40px;
  z-index: 930;
  display: flex;
  gap: 20px;
}
.header_link {
  transition: all 300ms ease-in-out;
}
.header_link:hover {
  opacity: 0.6;
}
.header_link_icon {
  width: 58px;
}
@media only screen and (max-width:750px) {
  .header_link_wrap {
    right: 20px;
    top: 14px;
    gap: 10px;
  }
  .header_link_icon {
    width: 40px;
  }
}




/*------------------------------------*\
    top (KV)
\*------------------------------------*/
.top_kv_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.top_kv_img_wrap {
  position: relative;
  /* height: 100vh; */
  /* overflow: hidden; */
  max-width: 2000px;
  margin: 0 auto;
}
.top_kv_img_wrap:before {
  content: "";
  display: block;
  padding-top: calc(100% * (1123 / 1937));
}
.top_kv_img {
  background-image: url(../img/top_kv.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 101%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-width: 2000px;
}
@media only screen and (max-width:750px) {
  .top_kv_img_wrap {
    min-height: 100vh;
  }
  .top_kv_img_wrap:before {
    /* padding-top: calc(100% * (2689 / 1483)); */
    padding-top: calc(100% * (840 / 480) * 1.2);
  }
  .top_kv_img {
    display: none;
    background-image: url(../img/top_kv_sp.png);
    width: 113%;
    height: 107%;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
}



.top_kv_img_sp {
  display: none;
}
@media only screen and (max-width:750px) {
  .top_kv_img_sp {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    max-width: 700px;
    z-index: -1;
  }
}






.top_kv_title_wrap {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
.top_kv_title {
  font-family: var(--fontjp);
  font-size: 40px;
  line-height: 80px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #000;
}
@media only screen and (max-width:750px) {
  .top_kv_title_wrap {
    top: 30%;
    left: 5%;
  }
  .top_kv_title {
    font-size: 20px;
    line-height: 40px;
  }
}

.top_kv_scroll {
  display: none;
}
@media only screen and (max-width:750px) {
  .top_kv_scroll {
    display: none;
    position: absolute;
    bottom: 8%;
    left: 25%;
    width: 72px;
  }
}

/*------------------------------------*\
    top (com)
\*------------------------------------*/

.top_com_title_wrap {
  text-align: center;
  padding-bottom: 70px;
}
.top_com_title {
  font-family: var(--fonten);
  font-size: 56px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #000;
  overflow-wrap: break-word;
}
.top_com_title_jp {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
  margin-top: 13px;
}
@media only screen and (max-width:750px) {
  .top_com_title_wrap {
    padding-bottom: 35px;
  }
  .top_com_title {
    font-size: 32px;
  }
  .top_com_title_jp {
    font-size: 14px;
    line-height: 20px;
  }
}



/*------------------------------------*\
    top (about)
\*------------------------------------*/

.top_about {
  padding-top: 240px;
}
@media only screen and (max-width:750px) {
  .top_about {
    padding-top: 100px;
  }
}
.top_about_inner {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}
.top_about_detail {
}
.top_about_text_wrap {
}
.top_about_text {
  font-family: var(--fontjp);
  font-size: 28px;
  line-height: 56px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width:750px) {
  .top_about_text {
    font-size: 16px;
    line-height: 32px;
  }
}



/*------------------------------------*\
    top (menu)
\*------------------------------------*/

.top_menu {
  padding-top: 240px;
}
@media only screen and (max-width:750px) {
  .top_menu {
    padding-top: 160px;
  }
}
.top_menu_inner {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}
.top_menu_list {
}
.top_menu_detail {
  margin-bottom: 66px;
}
.top_menu_detail:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width:750px) {
  .top_menu_detail {
    margin-bottom: 42px;
  }
}
.top_menu_title_and_price {
  display: flex;
  justify-content: space-between;
}
.top_menu_title_wrap {
}
.top_menu_title {
  font-family: var(--fontjp);
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #000;
}
@media only screen and (max-width:750px) {
  .top_menu_title {
    font-size: 16px;
    line-height: 21px;
  }
}
.top_menu_price_wrap {
}
.top_menu_price {
  font-family: var(--fontjp);
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}
@media only screen and (max-width:750px) {
  .top_menu_price {
    font-size: 16px;
    line-height: 21px;
  }
}
.top_menu_text_wrap {
  margin-top: 12px;
}
.top_menu_text {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width:750px) {
  .top_menu_text_wrap {
    margin-top: 8px;
  }
  .top_menu_text {
    font-size: 14px;
    line-height: 21px;
  }
}



.top_menu_banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 120px;
}
@media only screen and (max-width:750px) {
  .top_menu_banner {
    margin-top: 64px;
  }
}
.top_menu_banner_bk {
  background-image: url(../img/top_banner_bk.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 125%;
  height: 125%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top_menu_banner_inner {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}
@media only screen and (max-width:750px) {
  .top_menu_banner_inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.top_menu_banner_icon {
  width: 57px;
}
@media only screen and (max-width:750px) {
  .top_menu_banner_icon {
    width: 34px;
  }
}
.top_menu_banner_title {
  font-family: var(--fontjp);
  font-size: 35px;
  line-height: 53px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #FFF;
  margin-top: 3px;
}
.top_menu_banner_text {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #FFF;
  margin-top: 10px;
}
@media only screen and (max-width:750px) {
  .top_menu_banner_title {
    font-size: 20px;
    line-height: 28px;
    margin-top: 9px;
  }
  .top_menu_banner_text {
    font-size: 14px;
    line-height: 21px;
    margin-top: 7px;
  }
}


/*------------------------------------*\
    top (access)
\*------------------------------------*/

.top_access {
  padding-top: 240px;
}
@media only screen and (max-width:750px) {
  .top_access {
    padding-top: 160px;
  }
}
.top_access_inner {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}

.top_access_map_wrap {
}
.top_access_map {
}

.top_access_detail_wrap {
  margin-top: 40px;
}
@media only screen and (max-width:750px) {
  .top_access_detail_wrap {
    margin-top: 25px;
  }
}
.top_access_detail_wrap dl {
}
.top_access_detail {
  display: flex;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #707070;
}
@media only screen and (max-width:750px) {
  .top_access_detail {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.top_access_detail dt {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
  width: 180px;
}
@media only screen and (max-width:750px) {
  .top_access_detail dt {
    font-size: 14px;
    line-height: 21px;
    width: 100px;
  }
}
.top_access_detail dd {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
  width: calc(100% - 180px);
}
.top_access_detail dd .map {
  display: block;
  font-family: var(--fonten);
  color: #1400FF;
  margin-top: 20px;
  text-decoration: underline;
}
@media only screen and (max-width:750px) {
  .top_access_detail dd {
    font-size: 14px;
    line-height: 21px;
    width: calc(100% - 100px);
  }
  .top_access_detail dd .map {
    margin-top: 9px;
  }
}



/*------------------------------------*\
    top (reservation)
\*------------------------------------*/
.top_reservation {
  padding-top: 240px;
  padding-bottom: 240px;
}
@media only screen and (max-width:750px) {
  .top_reservation {
    padding-top: 160px;
    padding-bottom: 120px;
  }
}
.top_reservation_inner {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}

.top_reservation_text_wrap {
}
.top_reservation_text {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width:750px) {
  .top_reservation_text {
    font-size: 14px;
    line-height: 21px;
  }
}

.top_reservation_list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 80px;
}
@media only screen and (max-width:750px) {
  .top_reservation_list {
    margin-top: 40px;
  }
}
.top_reservation_btn {
  position: relative;
  border-radius: 10px;
  width: 108px;
  height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease-in-out;
}
.top_reservation_btn:hover {
  opacity: 0.8;
}
@media only screen and (max-width:750px) {
  .top_reservation_btn {
    width: 64px;
    height: 64px;
  }
}

.top_reservation_btn.btn_instagram {
  background-color: #5C4747;
}
.top_reservation_btn.btn_line {
  background-color: #895E5E;
}
.top_reservation_btn.btn_tel {
  background-color: #CEC2A0;
  width: calc(100% - 108px - 108px - 20px);
  gap: 20px;
}
@media only screen and (max-width:750px) {
  .top_reservation_btn.btn_tel {
    width: calc(100% - 64px - 64px - 10px);
    gap: 12px;
  }
}
.top_reservation_btn_icon {
  width: 54px;
}
@media only screen and (max-width:750px) {
  .top_reservation_btn_icon {
    width: 32px;
  }
}
.top_reservation_tel {
  font-family: var(--fonten);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #FFF;
}
@media only screen and (max-width:750px) {
  .top_reservation_tel {
    font-size: 12px;
  }
}






/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer_wrap {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width:750px) {
}
.footer_inner {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 20px;
}

.footer_tag_wrap {
  text-align: center;
}
.footer_tag {
  font-family: var(--fontjp);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width:750px) {
  .footer_tag {
    font-size: 14px;
    line-height: 21px;
  }
}
.footer_logo_wrap {
  text-align: center;
  margin-top: 120px;
}
.footer_logo {
  width: 234px;
}
@media only screen and (max-width:750px) {
  .footer_logo_wrap {
    margin-top: 60px;
  }
  .footer_logo {
    width: 136px;
  }
}
.footer_link_wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}
.footer_link {
  transition: all 300ms ease-in-out;
}
.footer_link:hover {
  opacity: 0.6;
}
.footer_link_icon {
  width: 76px;
}
@media only screen and (max-width:750px) {
  .footer_link_wrap {
    gap: 12px;
    margin-top: 40px;
  }
  .footer_link_icon {
    width: 40px;
  }
}
.footer_copyright_wrap {
  text-align: center;
  margin-top: 80px;
}
.footer_copyright {
  font-family: var(--fonten);
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #000;
}
@media only screen and (max-width:750px) {
  .footer_copyright_wrap {
    margin-top: 50px;
  }
  .footer_copyright {
    font-size: 12px;
  }
}

.footer_bk {
  position: relative;
  height: 100vh;
  overflow: hidden;
 }
.footer_bk:before {
  content: "";
  display: block;
  padding-top: calc(100% * (1123 / 1937));
}
.footer_bk {
  background-image: url(../img/footer_bk.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 102%;
  max-width: 2000px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media only screen and (max-width:750px) {
  .footer_bk {
    background-image: url(../img/footer_bk_sp.svg);
    width: 116%;
  }
}

