@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Shippori Mincho";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/*===========================================
共通パーツ
============================================*/
body {
  width: 100%;
  background-color: rgb(244, 243, 223);
}

@media screen and (max-width: 768px) {
  .u_md_none {
    display: none;
  }
}

.inner {
  width: 100%;
  max-width: 1250px;
  padding-left: 25px;
  padding-right: 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.heading {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 0.052em;
}
@media screen and (max-width: 768px) {
  .heading {
    font-size: 28px;
  }
}

.heading::before {
  position: absolute;
  top: -12px;
  right: 10px;
  content: "";
  width: 42px;
  height: 1px;
  background-color: #000;
  transform: rotate(135deg);
}

.heading::after {
  position: absolute;
  bottom: -6px;
  left: 10px;
  content: "";
  width: 42px;
  height: 1px;
  background-color: #000;
  transform: rotate(135deg);
}

.title {
  text-align: center;
  font-size: 36px;
  background-image: url(../images/bg_title.png);
  font-weight: 500;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 32px;
  }
}

/*===========================================
header
============================================*/
.header {
  background-color: #fff;
  color: #000;
  height: 70px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}

.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
}

.header_logo {
  display: flex;
  height: inherit;
  align-items: center;
  font-weight: 500;
}

.header_nav {
  height: inherit;
}

.header_items {
  display: flex;
  height: inherit;
  align-items: center;
}

.header_item {
  height: inherit;
}

.header_item:not(:last-child) {
  margin-right: 40px;
}

.header_link {
  height: inherit;
  display: flex;
  align-items: center;
  font-family: "Shippori Mincho";
  color: #000;
  font-weight: 500;
  font-size: 16px;
}

/*===========================================
   ハンバーガーメニュー
   ============================================*/
.hamburger {
  position: fixed;
  top: 27px;
  right: 25px;
  width: 25px;
  height: 16px;
  z-index: 9999;
  cursor: pointer;
}

.u-md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-md-show {
    display: block;
  }
}

.hamburger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.5px;
  background-color: #000;
  transition: 0.3s all;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger span.is-active:nth-child(1) {
  top: 15px;
  transform: rotate(-45deg);
}

.hamburger span.is-active:nth-child(2) {
  opacity: 0;
}

.hamburger span.is-active:nth-child(3) {
  top: 15px;
  transform: rotate(45deg);
}

/*===========================================
   ドロワー
   ============================================*/
.drawer-menu {
  position: fixed;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 5000;
  transition: all 0.6s;
  background-image: url(../images/icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.js-drawer.panelactive {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.js-drawer.panelactive {
  right: 0;
}

.drawer-menu_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: inherit;
}

.drawer-menu_items {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.drawer-menu_item {
  display: inline-block;
}

.drawer-menu_item:nth-child(2) {
  margin-top: 50px;
}

.drawer-menu_item:nth-child(3) {
  margin-top: 50px;
}

.drawer-menu_item:nth-child(4) {
  margin-top: 50px;
}

.drawer-menu_link {
  color: #000;
  font-size: 16px;
  font-family: "Shippori Mincho";
  font-weight: 500;
  letter-spacing: 0.05em;
}

/*===========================================
   ファーストビュー
   ============================================*/
.frist-viwe {
  margin-top: 70px;
  width: 100%;
  height: 100vh;
  background-image: url(../images/first-viwe.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .frist-viwe {
    margin-top: 60px;
    height: 50vh;
  }
}

.frist-viwe_inner {
  height: inherit;
  position: relative;
}
@media screen and (max-width: 768px) {
  .frist-viwe_inner {
    position: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.frist-viwe_logo {
  width: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .frist-viwe_logo {
    width: 300px;
    position: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.first-viwe_btn {
  display: block;
  position: absolute;
  position: fixed;
  right: 5%;
  bottom: 10%;
  z-index: 999;
}
@media screen and (max-width: 1024px) {
  .first-viwe_btn {
    right: 10%;
    bottom: 5%;
  }
}
@media screen and (max-width: 768px) {
  .first-viwe_btn {
    display: block;
    position: absolute;
    position: fixed;
    right: auto;
    bottom: 3%;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.first-viwe_btn_link {
  width: 400px;
  height: 90px;
  background-color: #000;
  border-radius: 50px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .first-viwe_btn_link {
    width: 350px;
    height: 80px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .first-viwe_btn_link {
    width: 300px;
    height: 40px;
    border-radius: 20px;
  }
}

.first-viwe_btn_img {
  margin-left: 30px;
  width: 70px;
  height: 70px;
  margin: 5px 5px 5px 30px;
}
@media screen and (max-width: 768px) {
  .first-viwe_btn_img {
    width: 35px;
    height: 35px;
    margin: 10px 5px 5px 30px;
  }
}

.first-viwe_btn_text {
  font-size: 32px;
  color: #fff;
  margin-left: 10px;
}
@media screen and (max-width: 1024px) {
  .first-viwe_btn_text {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .first-viwe_btn_text {
    font-size: 20px;
  }
}

/*===========================================
   about0
   ============================================*/
.about {
  padding: 50px 25px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about {
    padding: 30px 0px;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}

.about_inner {
  margin-right: auto;
  margin-left: auto;
}

.about_inner_section {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about_inner_section {
    margin-right: auto;
    margin-left: auto;
  }
}
.about_inner_section_title {
  font-size: 46px;
  width: 80%;
  padding: 15px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .about_inner_section_title {
    display: none;
    width: 80%;
    font-size: 20px;
    padding: 0px;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}

.about_inner_section_text {
  text-align: center;
  padding: 15px;
  margin-top: 25px;
  font-size: 36px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .about_inner_section_text {
    display: none;
    font-size: 20px;
    padding: 15px 0px;
    margin-right: auto;
    margin-left: auto;
  }
}

.about_inner_section_paragraph {
  text-align: center;
  padding: 15px;
  font-weight: 600;
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .about_inner_section_paragraph {
    display: none;
    text-align: left;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    padding: 0px 0px;
    line-height: 20px;
    margin-bottom: 20px;
  }
}

.about_inner_img {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .about_inner_img {
    margin-top: 25px;
    width: 350px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 375px) {
  .about_inner_img {
    width: 310px;
    height: 200px;
  }
}

.sp-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-img {
    display: block;
  }
}

/*===========================================
   price
   ============================================*/
.price {
  width: 100%;
  padding: 25px;
  background-image: url(../images/price_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .price {
    padding: 0px;
    background-image: none;
  }
}

.price_inner {
  display: flex;
  flex-direction: row-reverse;
}

.price_area {
  width: 500px;
  height: 500px;
  display: flex;
  flex-direction: column;
  background-image: url(../images/body_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .price_area {
    margin-top: 15px;
    width: 350px;
    height: 350px;
    margin-right: auto;
    margin-left: auto;
  }
}

.price_area_title {
  margin-top: 20px;
}

.price_area_text {
  margin-top: 25px;
  text-align: left;
  font-weight: 600;
  font-size: 24px;
  line-height: 50px;
}
@media screen and (max-width: 768px) {
  .price_area_text {
    font-size: 16px;
    line-height: 35px;
  }
}

/*===========================================
   seat
   ============================================*/
.seat {
  margin-top: 100px;
  width: 100%;
  padding: 25px;
  background-image: url(../images/seat_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
}
@media screen and (max-width: 768px) {
  .seat {
    padding: 0px;
    background-image: none;
  }
}

.seat_inner {
  display: flex;
  flex-direction: row;
}

.seat_area {
  width: 500px;
  height: 500px;
  margin-right: 0px;
  display: flex;
  flex-direction: column;
  background-image: url(../images/body_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .seat_area {
    margin-top: 15px;
    width: 350px;
    height: 350px;
    margin-right: auto;
    margin-left: auto;
  }
}

.seat_area_title {
  margin-top: 20px;
}

.seat_area_title_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .seat_area_title_sp {
    display: block;
  }
}

.seat_area_text {
  margin-top: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 24px;
  line-height: 50px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .seat_area_text {
    font-size: 16px;
    line-height: 35px;
  }
}

.seat_imgs {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 375px);
  grid-template-rows: repeat(1, 250px);
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .seat_imgs {
    grid-template-columns: repeat(1, 500px);
    grid-template-rows: repeat(1, 330px);
    row-gap: 50px;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}
@media screen and (max-width: 768px) {
  .seat_imgs {
    margin-top: 25px;
    grid-template-columns: repeat(1, 310px);
    grid-template-rows: repeat(3, 250px);
    justify-content: space-around;
    row-gap: 15px;
    -moz-column-gap: 0px;
         column-gap: 0px;
  }
}

/*===========================================
information
   ============================================*/
.information {
  margin-top: 50px;
}

.information_inner {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, 500px);
  grid-template-rows: repeat(1, 500px);
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1024px) {
  .information_inner {
    grid-template-columns: repeat(1, 500px);
    grid-template-rows: repeat(1, 500px);
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .information_inner {
    grid-template-columns: repeat(1, 310px);
    grid-template-rows: repeat(1, 310px);
    justify-content: center;
    row-gap: 25px;
  }
}

.information_title {
  margin-top: 75px;
}

.information_address {
  margin-left: auto;
}

.information_text {
  margin-top: 50px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .information_text {
    font-size: 16px;
    margin-top: 25px;
  }
}

.information_btn {
  margin-top: 50px;
  border: 1px solid #000;
  padding: 25px 50px;
}
@media screen and (max-width: 768px) {
  .information_btn {
    margin-top: 25px;
  }
}

.information_btn_link {
  font-size: 24px;
  opacity: 1;
  color: #000;
}
@media screen and (max-width: 768px) {
  .information_btn_link {
    font-size: 16px;
  }
}

/*===========================================
   footer
   ============================================*/
.footer {
  margin-top: 50px;
  width: 100%;
  background-color: #000;
  padding: 30px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 17.5px 0;
  }
}

.footer_copyright {
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #fff;
  text-transform: uppercase;
}