@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&display=swap");
/*---------------------------------------------------------------------------------
Base
---------------------------------------------------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  font-size: 1.5rem;
  line-height: 3rem;
  color: #000;
  background-color: #080808;
}

@media screen and (max-width: 767px) {
  body {
    line-height: 2.5rem;
  }
}
html,
body {
  min-height: 100vh;
  /*フッターを下に固定*/
  display: flex;
  /*フッターを下に固定*/
  flex-direction: column;
  /*フッターを下に固定*/
}

main {
  flex: 1 1 auto;
  /*フッターを下に固定*/
}

img {
  vertical-align: bottom;
  width: auto;
}

a {
  color: #000;
}

.container {
  width: calc(100% - 40px);
  max-width: 1200px;
  margin: auto;
}

.img-responsive {
  display: block;
  width: 100%;
  margin: auto;
}

/*---------------------------------------------------------------------------------
Padding
---------------------------------------------------------------------------------*/
.u-pd-100 {
  padding: 100px 0;
}

.u-pd-top-100 {
  padding: 100px 0 0;
}

.u-pd-bottom-100 {
  padding: 0 0 100px;
}

.u-pd-80 {
  padding: 80px 0;
}

.u-pd-top-80 {
  padding: 80px 0 0;
}

.u-pd-bottom-80 {
  padding: 0 0 80px;
}

.u-pd-50 {
  padding: 50px 0;
}

.u-pd-top-50 {
  padding: 50px 0 0;
}

.u-pd-bottom-50 {
  padding: 0 0 50px;
}

@media (max-width: 1199px) {
  .u-pd-100 {
    padding: 80px 0;
  }
  .u-pd-top-100 {
    padding: 80px 0 0;
  }
  .u-pd-bottom-100 {
    padding: 0 0 80px;
  }
  .u-pd-80 {
    padding: 70px 0;
  }
  .u-pd-top-80 {
    padding: 70px 0 0;
  }
  .u-pd-bottom-80 {
    padding: 0 0 70px;
  }
}
@media (max-width: 767px) {
  .u-pd-100 {
    padding: 60px 0;
  }
  .u-pd-top-100 {
    padding: 60px 0 0;
  }
  .u-pd-bottom-100 {
    padding: 0 0 60px;
  }
  .u-pd-80 {
    padding: 50px 0;
  }
  .u-pd-top-80 {
    padding: 50px 0 0;
  }
  .u-pd-bottom-80 {
    padding: 0 0 50px;
  }
}
/*---------------------------------------------------------------------------------
Title
---------------------------------------------------------------------------------*/
.primary-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 4rem;
  color: #fff;
  writing-mode: vertical-rl;
  border-left: 1px solid #FFFFFF;
  padding-left: 10px;
  padding-bottom: 5px;
}
.primary-title span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: left;
  color: #a89b65;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .primary-title {
    font-size: 2.8rem;
    line-height: 3.3rem;
    padding-left: 5px;
    padding-bottom: 0;
  }
  .primary-title span {
    font-size: 2rem;
    line-height: 2.5rem;
    margin-top: 5px;
  }
}
.secondary-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 5rem;
  line-height: 5rem;
  text-align: center;
  color: #a89b65;
  text-transform: uppercase;
}
.secondary-title span {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: center;
  color: #fff;
  display: block;
}

@media screen and (max-width: 767px) {
  .secondary-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }
  .secondary-title span {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
/*---------------------------------------------------------------------------------
HEADER
---------------------------------------------------------------------------------*/
.hd_logo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 100px;
}
.hd_logo img {
  width: 100%;
}

.hd_sns {
  position: absolute;
  top: 30px;
  right: 80px;
  width: 75px;
}
.hd_sns a {
  display: inline-block;
  max-width: 30px;
  transition: all 0.3s ease;
}
.hd_sns a:first-child {
  margin-right: 10px;
}
.hd_sns a:hover {
  transform: translateY(2px);
  opacity: 0.8;
}
.hd_sns a img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .hd_logo {
    top: 10px;
    left: 10px;
    width: 80px;
  }
  .hd_sns {
    top: 10px;
    right: 70px;
  }
}
/*---------------------------------------------------------------------------------
drawer
---------------------------------------------------------------------------------*/
.drawer-nav {
  background-color: #080808;
  z-index: 99 !important;
}

.drawer-menu {
  margin-top: 20px;
}

.drawer-brand {
  margin: auto auto 20px;
  max-width: 100px;
}
.drawer-brand img {
  width: 100%;
  display: block;
}

.drawer-menu-item {
  color: #fff;
  border-bottom: 1px solid #707070;
}
.drawer-menu-item:hover {
  color: #000;
  background-color: #fff;
  text-decoration: none;
}

.drawer-contact {
  font-family: "Zen Old Mincho", serif;
  margin: 30px auto auto;
  text-align: center;
  width: min(200px, 100%);
}
.drawer-contact h4 {
  color: #aaa;
  border-bottom: 1px solid #707070;
}
.drawer-contact a {
  font-size: 2.5rem;
  color: #A89B65;
}

.drawer-sns {
  margin: 20px auto auto;
  width: 75px;
}
.drawer-sns a {
  display: inline-block;
}
.drawer-sns a:first-child {
  margin-right: 10px;
}
.drawer-sns a:hover {
  opacity: 0.8;
}

.pc-fixed-btn {
  position: fixed;
  top: 80px;
  right: 0;
  max-width: 50px;
  z-index: 5;
}
.pc-fixed-btn a {
  display: block;
}
.pc-fixed-btn a img {
  width: 100%;
}
.pc-fixed-btn a:hover {
  opacity: 0.9;
}

@media screen and (max-width: 767px) {
  .pc-fixed-btn {
    display: none;
  }
}
.sp-fixed-bar {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-fixed-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 50px;
    z-index: 88;
  }
  .sp-fixed-bar a {
    font-size: 1.4rem;
    font-weight: bold;
    color: #713F41;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: #F1EDDF;
  }
  .sp-fixed-bar a:first-child span {
    max-width: 20px;
  }
  .sp-fixed-bar a:not(:last-child) {
    border-right: 1px solid #A89B65;
  }
  .sp-fixed-bar a span {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 25px;
    margin-right: 5px;
  }
  .sp-fixed-bar a span img {
    display: inline-block;
    width: 100%;
  }
}
/**================================動画================================**/
/* video */
.video {
  width: 100%;
  height: 800px;
  background: url("img/video-img.webp") no-repeat center/cover; /**動画が表示されない時表示**/
  position: relative;
  overflow: hidden;
  z-index: -1;
}

.video::after {
  content: "";
  width: 100%;
  height: 100%;
  background: url("img/overlays/04.png");
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}

.video video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 1399px) {
  .video {
    height: 650px;
  }
}
@media screen and (max-width: 1199px) {
  .video {
    height: 550px;
  }
}
@media screen and (max-width: 991px) {
  .video {
    height: 450px;
  }
}
@media screen and (max-width: 767px) {
  .video {
    height: 350px;
  }
  .video video {
    width: 100vh;
  }
}
/*---------------------------------------------------------------------------------
Main-visual
---------------------------------------------------------------------------------*/
.mv {
  width: 100%;
  height: 800px;
  position: relative;
  z-index: -1;
}
.mv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv__en-phrase {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 10rem;
  letter-spacing: 0.05em;
  line-height: 10rem;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  width: min(850px, 100%);
  margin-bottom: 10px;
}
.mv__en-phrase span {
  font-size: 6.5rem;
  letter-spacing: 0.05em;
  line-height: 6.5rem;
  text-align: center;
  color: #fff;
  display: block;
}
.mv__jp-phrase {
  display: none;
  font-family: "Zen Old Mincho", serif;
  font-weight: normal;
  font-size: 2.8rem;
  line-height: 4rem;
  text-align: center;
  color: #fff;
}
.mv__jp-phrase br {
  display: none;
}
.mv__scroll {
  position: absolute;
  bottom: -50px;
  left: 30px;
}
.mv__big-word {
  position: absolute;
  bottom: -50px;
  right: 30px;
  width: min(660px, 100%);
}
.mv__big-word img {
  width: 100%;
}
.mv__main-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 1399px) {
  .mv {
    height: 650px;
  }
}
@media screen and (max-width: 1199px) {
  .mv {
    height: 550px;
  }
}
@media screen and (max-width: 991px) {
  .mv {
    height: 450px;
  }
  .mv__en-phrase {
    font-size: 8rem;
    line-height: 8rem;
  }
  .mv__en-phrase span {
    font-size: 5rem;
    line-height: 5rem;
  }
  .mv__jp-phrase {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .mv {
    height: 350px;
  }
  .mv__en-phrase {
    font-size: 5rem;
    line-height: 5rem;
    margin-bottom: 10px;
  }
  .mv__en-phrase span {
    font-size: 3rem;
    line-height: 3rem;
  }
  .mv__jp-phrase br {
    display: block;
  }
  .mv__scroll {
    left: 10px;
  }
  .mv__big-word {
    bottom: -25px;
    right: 10px;
    width: min(660px, 85%);
  }
}
/*---------------------------------------------------------------------------------
About
---------------------------------------------------------------------------------*/
.about__img img {
  width: 100%;
}
.about__txt-area {
  color: #fff;
  width: min(550px, 100%);
  margin: 50px auto;
  text-align: center;
}
.about__txt01 {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .about__txt-area {
    margin: 30px auto;
    text-align: justify;
  }
  .about__txt01 {
    margin-bottom: 10px;
  }
  .about__txt01 br {
    display: none;
  }
  .about__txt02 br {
    display: none;
  }
}
/*---------------------------------------------------------------------------------
KAPPOU
---------------------------------------------------------------------------------*/
.kappou {
  background: url("img/kappou_bg.webp") no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.kappou__wrap {
  padding: 50px 0;
  background: url("img/kappou_img01.webp") no-repeat 0 0/600px auto, url("img/kappou_img02.webp") no-repeat 100% 100%/400px auto;
}
.kappou .primary-title {
  position: absolute;
  top: -65px;
  right: 15%;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .kappou .primary-title {
    top: -50px;
    right: 8%;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .kappou__wrap {
    padding: 50px 0;
    background: url("img/kappou_img01.webp") no-repeat 0 0/400px auto, url("img/kappou_img02.webp") no-repeat 100% 100%/300px auto;
  }
  .kappou .primary-title {
    top: -50px;
    right: 8%;
    z-index: 2;
  }
}
/*---------------------------------------------------------------------------------
LINE-part
---------------------------------------------------------------------------------*/
.com__line {
  width: min(810px, 100%);
  margin: auto;
  position: relative;
  border: 1px solid #707070;
}
.com__line__inner {
  padding: 80px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.com__line__inner ::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #707070;
  position: absolute;
  top: 8px;
  left: 8px;
}
.com__line__content {
  width: 100%;
  max-width: 550px;
}
.com__line__content2 {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 5%;
  width: 100%;
  min-width: 450px;
}
.com__line__txt {
  color: #fff;
  text-align: justify;
  padding-left: 8px;
}
.com__line__txt p:not(:last-child) {
  margin-bottom: 30px;
}
.com__line__deco01 {
  position: absolute;
  top: -50px;
  left: 30px;
}
.com__line__deco02 {
  position: absolute;
  bottom: -50px;
  right: 30px;
}

@media screen and (max-width: 991px) {
  .com__line__inner {
    padding: 80px 40px;
  }
  .com__line__content {
    max-width: 650px;
  }
}
@media screen and (max-width: 767px) {
  .com__line {
    margin-left: -4px;
  }
  .com__line__inner {
    padding: 60px 20px;
  }
  .com__line__content2 {
    flex-direction: column-reverse;
    width: 100%;
    min-width: auto;
  }
  .com__line__txt p:not(:last-child) {
    margin-bottom: 10px;
  }
}
/*---------------------------------------------------------------------------------
Concept
---------------------------------------------------------------------------------*/
.concept {
  width: 100%;
  position: relative;
}
.concept__img {
  width: min(850px, 100%);
}
.concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.concept .com__line {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 760px;
}

@media screen and (max-width: 991px) {
  .concept .com__line {
    width: 90%;
    right: 6%;
  }
}
@media screen and (max-width: 767px) {
  .concept .com__line__inner ::after {
    z-index: -1;
  }
  .concept .primary-title {
    margin-left: auto;
    margin-top: -150px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .concept {
    margin: 180px auto 150px auto;
  }
  .concept .primary-title {
    margin-left: auto;
  }
}
/*---------------------------------------------------------------------------------
Use scene(Top-page)
---------------------------------------------------------------------------------*/
.scene {
  margin-bottom: 20px;
}
.scene a {
  display: block;
}
.scene a img {
  width: 100%;
  display: block;
  transition: all 0.2s linear;
}
.scene a:hover img {
  transform: scale(1.02);
  filter: brightness(120%);
}

/*---------------------------------------------------------------------------------
Use-scene(Sub-page)
---------------------------------------------------------------------------------*/
.sb-scene-mv {
  width: 100%;
  height: 350px;
  position: relative;
  z-index: -1;
}
.sb-scene-mv__main-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sb-scene-mv__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 4rem;
  color: #fff;
  max-width: 350px;
  width: 100%;
  height: 154px;
  background: url("img/sb-scene_main-title-bg.svg") no-repeat 0 0/350px auto;
  position: absolute;
  bottom: -77px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1199px) {
  .sb-scene-mv {
    height: 300px;
  }
  .sb-scene-mv__title {
    font-size: 3.5rem;
    max-width: 300px;
    height: 132px;
    background: url("img/sb-scene_main-title-bg.svg") no-repeat 0 0/300px auto;
    bottom: -67px;
  }
}
@media screen and (max-width: 991px) {
  .sb-scene-mv {
    height: 280px;
  }
  .sb-scene-mv__title {
    font-size: 3rem;
    max-width: 280px;
    height: 124px;
    background: url("img/sb-scene_main-title-bg.svg") no-repeat 0 0/280px auto;
    bottom: -62px;
  }
}
@media screen and (max-width: 767px) {
  .sb-scene-mv {
    height: 230px;
  }
  .sb-scene-mv__title {
    font-size: 2.8rem;
    max-width: 250px;
    height: 110px;
    background: url("img/sb-scene_main-title-bg.svg") no-repeat 0 0/250px auto;
    bottom: -54px;
  }
}
@media screen and (max-width: 575px) {
  .sb-scene-mv {
    height: 150px;
  }
  .sb-scene-mv__title {
    font-size: 2.3rem;
    max-width: 200px;
    height: 88px;
    background: url("img/sb-scene_main-title-bg.svg") no-repeat 0 0/200px auto;
    bottom: -45px;
  }
}
.sb-scene-link__phrase {
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 4.8rem;
  line-height: 6rem;
  text-align: center;
  color: #fff;
}
.sb-scene-link__phrase span {
  color: #FFD68D;
}
.sb-scene-link__area {
  border-top: 1px solid #707070;
  margin-top: 30px;
}
.sb-scene-link__list {
  margin: 30px auto auto;
  max-width: 1000px;
  display: flex;
  justify-content: center;
  gap: 3%;
  align-items: center;
}
.sb-scene-link__list li {
  width: 300px;
  height: 50px;
  transition: all 0.3s linear;
}
.sb-scene-link__list li:hover {
  filter: brightness(115%);
  transform: translateY(3px);
}
.sb-scene-link__list li a {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url("img/sb-scene_link-bg.svg") no-repeat 0 0/100% 100%;
}

@media screen and (max-width: 1199px) {
  .sb-scene-link__phrase {
    font-size: 4.5rem;
    line-height: 6rem;
  }
  .sb-scene-link__area {
    margin-top: 20px;
  }
}
@media screen and (max-width: 991px) {
  .sb-scene-link__phrase {
    font-size: 4rem;
    line-height: 5.5rem;
  }
  .sb-scene-link__area {
    margin-top: 10px;
  }
  .sb-scene-link__list li {
    width: 250px;
    height: 40px;
  }
  .sb-scene-link__list li a {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 767px) {
  .sb-scene-link__phrase {
    font-size: 3.3rem;
    line-height: 4.5rem;
  }
  .sb-scene-link__phrase br {
    display: none;
  }
  .sb-scene-link__list {
    gap: 2%;
  }
  .sb-scene-link__list li {
    width: 220px;
    height: 38px;
  }
  .sb-scene-link__list li a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 575px) {
  .sb-scene-link__phrase {
    font-size: 2.3rem;
    line-height: 3.3rem;
  }
  .sb-scene-link__list {
    flex-direction: column;
  }
  .sb-scene-link__list li {
    width: 300px;
    height: 50px;
  }
  .sb-scene-link__list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .sb-scene-link__list li a {
    font-size: 2rem;
  }
}
.sb-scene-case {
  margin-top: 80px;
}
.sb-scene-case__box {
  background: url("img/bg04.webp");
  display: flex;
  justify-content: space-between;
  gap: 3%;
  padding: 50px;
}
.sb-scene-case__box:not(:last-child) {
  margin-bottom: 50px;
}
.sb-scene-case__img {
  width: min(550px, 100%);
}
.sb-scene-case__img img {
  width: 100%;
  display: block;
}
.sb-scene-case__content {
  width: min(500px, 100%);
}
.sb-scene-case__number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 5rem;
  color: #9f5e33;
}
.sb-scene-case__number small {
  font-size: 2rem;
  text-transform: uppercase;
  display: inline-block;
  margin-right: 10px;
}
.sb-scene-case__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: justify;
  color: #82644f;
  border-bottom: 1px solid #A89B65;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.sb-scene-case__txt p {
  color: #82644f;
  text-align: justify;
}
.sb-scene-case__txt p:not(:last-child) {
  margin-bottom: 5px;
}

@media screen and (max-width: 991px) {
  .sb-scene-case {
    margin: 60px auto auto;
    width: 85%;
  }
  .sb-scene-case__box {
    flex-direction: column;
  }
  .sb-scene-case__box:not(:last-child) {
    margin-bottom: 50px;
  }
  .sb-scene-case__img {
    width: min(550px, 100%);
    margin: auto;
  }
  .sb-scene-case__content {
    width: min(850px, 100%);
    margin: 20px auto auto;
  }
  .sb-scene-case__number {
    font-size: 4rem;
    line-height: 4rem;
  }
  .sb-scene-case__number small {
    font-size: 1.8rem;
  }
  .sb-scene-case__title {
    font-size: 1.9rem;
    line-height: 2.8rem;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .sb-scene-case__txt p {
    line-height: 2.5rem;
  }
  .sb-scene-case__txt p:not(:last-child) {
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 767px) {
  .sb-scene-case {
    width: 95%;
  }
  .sb-scene-case__box {
    padding: 50px 30px;
  }
  .sb-scene-case__box:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 575px) {
  .sb-scene-case {
    width: 100%;
  }
  .sb-scene-case__box {
    padding: 30px 20px;
  }
  .sb-scene-case__box:not(:last-child) {
    margin-bottom: 30px;
  }
}
/*---------------------------------------------------------------------------------
MENU
---------------------------------------------------------------------------------*/
.menu {
  background: url("img/deco-circle01.svg") no-repeat 100% 25%/500px auto, url("img/deco-circle02.svg") no-repeat 0 50%/500px auto, url("img/deco-circle01.svg") no-repeat 100% 75%/500px auto, url("img/body_bg2.webp");
}
.menu__top-part {
  background: url("img/menu-top-img.webp") no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  height: 400px;
  position: relative;
}
.menu__top-part .primary-title {
  position: absolute;
  top: -50px;
  left: 18%;
  z-index: 2;
}
.menu__primary-title {
  background-color: #F1EDDF;
  padding: 20px;
}
.menu__primary-title img {
  max-width: 1000px;
  margin: auto;
  width: 100%;
  display: block;
}
.menu__intro {
  margin: 50px auto auto;
  width: min(650px, 100%);
}
.menu__phrase {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 4rem;
  text-align: center;
  color: #a89b65;
}
.menu__txt {
  margin-top: 10px;
}
.menu__txt p {
  text-align: center;
}
.menu__price-area {
  margin-top: 80px;
}
.menu__secondary-title {
  background: url("img/title-bg-brown.svg") no-repeat;
  width: min(300px, 100%);
  height: 55px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 5.5rem;
  text-align: center;
  color: #fff;
  margin: auto;
}
.menu__price-part01 {
  margin-top: 20px;
}
.menu__third-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 5rem;
  text-align: left;
  color: #bd8828;
}
.menu__third-title span {
  font-size: 2rem;
  line-height: 3rem;
  text-transform: uppercase;
}
.menu__list-style01 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 3%;
  margin-top: 20px;
  border-bottom: 1px solid #aaa;
  padding-bottom: 10px;
}
.menu__list-style01 dt {
  font-size: 2.5rem;
  line-height: 3rem;
}
.menu__list-style01 dt span {
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: center;
  color: #fff;
  width: 60px;
  height: 20px;
  border-radius: 5px;
  background: #a89b65;
  display: block;
  margin-bottom: 5px;
}
.menu__list-style01 dd {
  font-size: 2rem;
  line-height: 3rem;
}
.menu__price-part02 {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  margin-top: 100px;
  margin-bottom: 30px;
}
.menu__price-part02 p {
  margin-top: 10px;
  font-weight: bold;
  line-height: 2rem;
}
.menu__price-part02 .com__line__inner {
  padding: 60px;
}
.menu__price-part02 .com__line__content-list {
  width: 100%;
}
.menu__price-part03 {
  margin-top: 100px;
}
.menu__price-part03--mg {
  margin-top: -20px;
}
.menu__price-flex01 {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.menu__price-fx-box01 {
  width: min(550px, 100%);
}
.menu__price-item01:not(:last-child) {
  margin-bottom: 20px;
}
.menu__price-item01 p {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 2.3rem;
  border-bottom: 1px solid #aaa;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.menu__price-item01 dl {
  line-height: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 3%;
  flex-wrap: wrap;
}
.menu__price-item01 dl dt {
  font-weight: normal;
  width: 47%;
}
.menu__price-item01 dl dd {
  width: 50%;
  text-align: right;
}
.menu__price-flex02 {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.menu__price-fx-box02 {
  width: min(550px, 100%);
}
.menu__price-item02 h5 {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 3rem;
  line-height: 3rem;
  color: #9f5e33;
  margin-bottom: 5px;
}
.menu__price-item02 h5::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background: url("img/menu-title_icon.svg") no-repeat;
  margin-right: 5px;
}
.menu__price-item02 dl {
  display: flex;
  justify-content: space-between;
  gap: 3%;
  border-bottom: 1px solid #AAAAAA;
  padding: 5px 0;
}
.menu__price-item02 dl dt {
  font-weight: normal;
}
.menu__price-item02 .menu__secondary-title {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .menu {
    background: url("img/deco-circle01.svg") no-repeat 100% 25%/300px auto, url("img/deco-circle02.svg") no-repeat 0 50%/300px auto, url("img/deco-circle01.svg") no-repeat 100% 75%/300px auto, url("img/body_bg2.webp");
  }
  .menu__top-part {
    height: 200px;
    background-attachment: local;
  }
  .menu__primary-title {
    padding: 5px;
  }
  .menu__intro {
    margin: 30px auto auto;
  }
  .menu__phrase {
    font-size: 2.2rem;
    line-height: 3rem;
  }
  .menu__txt {
    margin-top: 10px;
  }
  .menu__txt p {
    text-align: justify;
  }
  .menu__txt p br {
    display: none;
  }
  .menu__price-area {
    margin-top: 50px;
  }
  .menu__secondary-title {
    background: url("img/title-bg-brown.svg") no-repeat 0 0/220px auto;
    width: min(220px, 100%);
    height: 40px;
    font-size: 2.5rem;
    line-height: 4rem;
  }
  .menu__third-title {
    font-size: 4rem;
    line-height: 4rem;
  }
  .menu__third-title span {
    font-size: 1.8rem;
    line-height: 2rem;
  }
  .menu__list-style01 {
    gap: 3%;
    margin-top: 10px;
    padding-bottom: 5px;
  }
  .menu__list-style01 dt {
    font-size: 2rem;
    line-height: 2.5rem;
  }
  .menu__list-style01 dd {
    font-size: 1.6rem;
    line-height: 2rem;
  }
  .menu__price-part02 {
    flex-direction: column;
    margin-top: 80px;
    margin-bottom: 30px;
  }
  .menu__price-part02 p {
    margin-top: 10px;
    font-weight: bold;
    line-height: 2rem;
  }
  .menu__price-part02 .com__line:not(:last-child) {
    margin-bottom: 80px;
  }
  .menu__price-part02 .com__line__inner {
    padding: 60px 30px;
  }
  .menu__price-part03 {
    margin-top: 60px;
  }
  .menu__price-flex01 {
    margin-top: 20px;
    flex-direction: column;
  }
  .menu__price-fx-box01 {
    margin-left: auto;
    margin-right: auto;
  }
  .menu__price-fx-box01:nth-child(2) {
    margin-top: 20px;
  }
  .menu__price-item01:not(:last-child) {
    margin-bottom: 15px;
  }
  .menu__price-item01 p {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .menu__price-flex02 {
    margin-top: 20px;
    flex-direction: column;
  }
  .menu__price-fx-box02 {
    margin-left: auto;
    margin-right: auto;
  }
  .menu__price-fx-box02:nth-child(2) {
    margin-top: 20px;
  }
  .menu__price-item02 h5 {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .menu__price-item02 dl {
    display: flex;
    justify-content: space-between;
    gap: 3%;
    border-bottom: 1px solid #AAAAAA;
    padding: 5px 0;
  }
  .menu__price-item02 dl dt {
    font-weight: normal;
  }
  .menu__price-item02 .menu__secondary-title {
    margin-top: 10px;
  }
}
/*---------------------------------------------------------------------------------
NEWS
---------------------------------------------------------------------------------*/
.news {
  background: url("img/body_bg.webp");
}
.news__post {
  margin: 30px auto auto;
  width: min(850px, 100%);
  height: 200px;
  overflow-y: auto;
}
.news__list li {
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
}
.news__title {
  color: #ffd68d;
}
.news__content {
  color: #ccc;
  line-height: 2rem;
  margin-top: 10px;
}
.news .box {
  color: #ccc;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
  padding-bottom: 20px;
}
.news .box h2 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffd68d;
}
.news .box ul {
  margin-top: 5px;
}
.news .box ul li {
  line-height: 2.5rem;
  text-align: justify;
}
.news .box p {
  color: #999;
  margin-top: 5px;
}

/*---------------------------------------------------------------------------------
SHOP-INFO
---------------------------------------------------------------------------------*/
.shop__contact {
  margin: auto;
}
.shop__logo {
  display: block;
  max-width: 180px;
  margin: auto;
}
.shop__logo img {
  width: 100%;
}
.shop__con__flx {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.shop__con__box {
  margin: 50px auto auto;
  width: min(600px, 100%);
}
.shop__con__title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 3rem;
  text-align: center;
  color: #ffd68d;
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.shop__con__warn {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 2rem;
  text-align: center;
  color: #82644f;
}
.shop__con__warn-list {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: left;
  color: #f1eddf;
  display: flex;
  justify-content: space-between;
  gap: 3%;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.shop__con__warn-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.shop__con__warn-list li::before {
  display: block;
  content: "";
  width: 10px;
  height: 10px;
  background: url("img/shop-list_icon-polygon.svg") no-repeat;
  margin-right: 5px;
}
.shop__con__number {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 8rem;
  text-align: center;
  color: #fff;
  width: min(450px, 100%);
  height: 80px;
  background: #a89b65;
  display: block;
  margin: auto;
}
.shop__con__number:hover {
  opacity: 0.9;
}
.shop__con__btn-reserve {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 5rem;
  text-align: center;
  color: #fff;
  width: min(450px, 100%);
  height: 80px;
  background: #713f41;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto auto;
}
.shop__con__btn-reserve:hover {
  opacity: 0.9;
}
.shop__con__btn-reserve span {
  max-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.shop__con__btn-reserve span img {
  width: 100%;
}
.shop__con__line__intro {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  color: #fff;
  height: 37px;
  border-radius: 20px;
  background: #82644f;
  max-width: 450px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop__con__line__flx {
  margin: 20px auto auto;
  max-width: 450px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop__con__line__img {
  width: 100%;
  max-width: 250px;
}
.shop__con__line__img img {
  width: 100%;
}
.shop__con__line__content {
  width: 100%;
  max-width: 200px;
}
.shop__con__line__content__txt {
  font-family: "Zen Old Mincho", serif;
  color: #F1EDDF;
  text-align: center;
  line-height: 2rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #F1EDDF;
}
.shop__con__line__content__icon {
  width: 16px;
  height: 15px;
  margin: 10px auto;
}
.shop__con__line__content__icon img {
  width: 100%;
  display: block;
}
.shop__con__line__content__qr-code {
  width: 140px;
  margin: auto;
  padding: 5px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
}
.shop__con__line__content__qr-code img {
  width: 100%;
}
.shop__con__line__content__btn {
  display: block;
  max-width: 146px;
  margin: 15px auto auto;
}
.shop__con__line__content__btn img {
  width: 100%;
}
.shop__con__instagram {
  display: block;
  width: 30px;
  text-align: center;
  margin: auto;
}
.shop__info {
  background: url("img/sho-info_bg.webp") no-repeat;
  background-position: top;
}
.shop__fx {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
.shop__fx__img {
  width: min(600px, 100%);
}
.shop__fx__img img {
  width: 100%;
}
.shop__fx__content {
  width: min(550px, 100%);
}
.shop__fx__list {
  color: #fff;
}
.shop__fx__list dl {
  display: flex;
  justify-content: flex-start;
  gap: 3%;
  padding: 15px 0;
  border-bottom: 1px solid #707070;
}
.shop__fx__list dl dt {
  width: 30%;
}
.shop__fx__notice {
  margin-top: 10px;
}
.shop__fx__notice p {
  color: #fff;
  text-align: justify;
}
.shop__img-area {
  margin-top: 30px;
}
.shop__img-area img {
  width: 100%;
}
.shop__map-area {
  margin-top: 80px;
}
.shop__map {
  margin-top: 30px;
}

@media screen and (max-width: 1199px) {
  .shop__con__flx {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .shop__logo {
    max-width: 130px;
  }
  .shop__con__title {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
  .shop__con__warn {
    font-size: 1.8rem;
  }
  .shop__con__warn-list {
    font-size: 1.6rem;
    justify-content: center;
    gap: 5%;
    flex-wrap: wrap;
    margin: 10px auto;
    transform: translateX(20px);
    max-width: 330px;
  }
  .shop__con__warn-list li {
    width: 45%;
  }
  .shop__con__number {
    font-size: 4.2rem;
    line-height: 6rem;
    height: 60px;
  }
  .shop__con__btn-reserve {
    font-size: 3.3rem;
    line-height: 6rem;
    height: 60px;
  }
  .shop__con__btn-reserve span {
    max-width: 35px;
  }
  .shop__fx {
    flex-direction: column;
  }
  .shop__fx__img, .shop__fx__content {
    margin: auto;
  }
  .shop__fx__list {
    margin-top: 20px;
  }
  .shop__fx__list dl {
    display: flex;
    justify-content: flex-start;
    gap: 3%;
    padding: 10px 0;
    border-bottom: 1px solid #707070;
  }
  .shop__fx__list dl dt {
    width: 80px;
    min-width: 80px;
  }
  .shop__fx__list dl dd span {
    display: block;
  }
  .shop__map-area {
    margin-top: 50px;
  }
  .shop__map {
    margin-top: 30px;
  }
  .shop__map iframe {
    display: block;
    height: 300px;
  }
}
/*---------------------------------------------------------------------------------
FOOTER
---------------------------------------------------------------------------------*/
.footer {
  margin-top: 50px;
}

/*==========トップへ戻る==========*/
#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  max-width: 78px;
  z-index: 55;
}

#page-top a {
  display: block;
  transition: all 0.3s linear;
}

#page-top a img {
  width: 100%;
}

#page-top a:hover {
  opacity: 0.8;
  transform: translateY(-5px);
}

@media screen and (max-width: 767px) {
  #page-top {
    bottom: 55px;
    max-width: 50px;
  }
}
.copy-right {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 3rem;
  text-align: center;
  color: #a89b65;
}/*# sourceMappingURL=style.css.map */