@charset "UTF-8";
/* color
=========================================== */
/* =============================================
color END */
/* break
===========================================

default
tab：520 @media (min-width: 520px) {...}
pc：960 @media (min-width: 960px) {...}
max：1280 @media (min-width: 1280px) {...}

*/
/* =============================================
break END */
/* common
============================================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  background-color: #f9f6f4;
  font-size: 1.6rem;
}

main {
  display: block;
  overflow-x: hidden;
  width: 100%;
  letter-spacing: 1.6;
  color: #000;
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
}
main img {
  width: 100%;
}
main p {
  color: #000;
  font-size: 1.6rem;
}

img {
  width: 100%;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

a {
  transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.7;
}

.inner {
  width: 100%;
  padding: 4.6875%;
}

.flex {
  display: flex;
  flex-direction: column;
}

@media (min-width: 960px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
  .flex {
    flex-direction: row;
  }
  .inner {
    max-width: 920px;
    margin: 0 auto;
    padding: 0;
  }
}
/* =============================================
common END */
/* common layout
============================================= */
.txt_vertical {
  writing-mode: vertical-rl;
}

.title_style01 {
  text-align: center;
  font-family: "Shippori Mincho", serif;
}
.title_style01 span {
  position: relative;
  display: inline-block;
  letter-spacing: 10px;
  color: #fff;
  font-size: 2.1rem;
}
.title_style01 span::before {
  content: "";
  position: absolute;
  right: -5%;
  bottom: -20%;
  width: 125%;
  height: 1px;
  /*アニメーションの指定*/
  transition: all 0.6s;
  transition-delay: 0.2s;
  transform: scale(0, 1);
  transform-origin: right top;
  background-color: #494949;
}
.title_style01 span::after {
  content: "";
  position: absolute;
  bottom: -70%;
  left: -10%;
  width: 1px;
  height: 170%;
  /*アニメーションの指定*/
  transition: all 2s;
  transition-delay: 0.6s;
  transform: scale(1, 0);
  transform-origin: right top;
  background-color: #494949;
}
.title_style01.active::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}
.title_style01.color_black span {
  color: #000;
}
.title_style01.color_black span::before {
  background-color: #c0c0c0;
}
.title_style01.color_black span::after {
  background-color: #c0c0c0;
}

.title_style01.is-inview01 span::before {
  transform: scale(1, 1);
}
.title_style01.is-inview01 span:after {
  transform: scale(1, 1);
}
.title_style01.is-inview02 span::before {
  transform: scale(1, 1);
}
.title_style01.is-inview02 span:after {
  transform: scale(1, 1);
}
.title_style01.is-inview03 span::before {
  transform: scale(1, 1);
}
.title_style01.is-inview03 span:after {
  transform: scale(1, 1);
}
.title_style01.is-inview04 span::before {
  transform: scale(1, 1);
}
.title_style01.is-inview04 span:after {
  transform: scale(1, 1);
}

.title_style02 {
  letter-spacing: 10px;
  font-size: 1.8rem;
  line-height: 1.7;
}
.title_style02 span {
  display: block;
  margin-top: 58px;
}

.ml_space_none {
  margin-left: -0.3em;
}

.under_line {
  border-bottom: 1px solid #000;
}

@media (min-width: 960px) {
  .title_style01 span {
    letter-spacing: 15px;
    font-size: 3rem;
  }
  .title_style02 {
    font-size: 3rem;
  }
}
/* =============================================
 common layout END */
/* loding
============================================= */
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  z-index: 99;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  z-index: 99;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 100%;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* =============================================
 loding END */
/* fadeIn
============================================= */
.fadeIn {
  transition: opacity 1s;
  opacity: 0 !important;
}

.fadeIn02 {
  transition: opacity 1s;
  transition-delay: 0.3s;
  opacity: 0 !important;
}

.fadeIn03 {
  transition: opacity 1s;
  transition-delay: 0.6s;
  opacity: 0 !important;
}

.fadeIn04 {
  transition: opacity 1s;
  transition-delay: 0.9s;
  opacity: 0 !important;
}

.active {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}

.fadeInLeft {
  transition: ease-in-out 0.8s;
  transform: translate(-200px, 0);
  opacity: 0;
}

.fadeInRight {
  transition: ease-in-out 0.8s;
  transform: translate(200px, 0);
  opacity: 0;
}

.fadeInUp {
  transition: 0.8s;
  transition-delay: 0.2s;
  transform: translate(0, 40px);
  opacity: 0;
}

/* =============================================
 fadeIn END */
/* swiper
============================================= */
.swiper {
  margin-top: 4.6875%;
}
.swiper .swiper-slide {
  padding: 0 4.6875%;
}
.swiper .swiper-pagination {
  position: relative;
}
.swiper .swiper-pagination-clickable .swiper-pagination-bullet {
  width: 10%;
  height: 3px;
  border-radius: initial;
  background-color: #c1c1c1;
}
.swiper .swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #b0b0b0;
}

/* =============================================
 swiper END */
/* nav scroll animation
============================================= */
.is-in header {
  transition: 1s;
  background-color: rgba(255, 255, 255, 0.9);
}
.is-in header .reserve_btn {
  color: #fff;
  border: 1px solid #231815;
  background-color: #231815;
}
.is-in header .reserve_btn span::after {
  background-image: url(../img/icon_arrow_w.svg);
}
.is-in header .reserve_btn:hover {
  color: #231815;
  border: 1px solid #231815;
  background-color: #fff;
}
.is-in header .reserve_btn:hover span::after {
  background-image: url(../img/icon_arrow.svg);
}

.is-in02 header .reserve_btn {
  color: #fff;
  border: 1px solid #fff;
  background-color: #231815;
}
.is-in02 header .reserve_btn span::after {
  background-image: url(../img/icon_arrow_w.svg);
}

/* =============================================
 nav scroll animation END */
/* header
============================================= */
header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 50px;
  transition: 1s;
  background-color: #fff;
}
header nav {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
header .logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 40%;
  height: 100%;
  margin: 0 auto;
}
header .reserve_btn {
  position: absolute;
  z-index: 1;
  top: calc(50% - 17px);
  right: 10px;
  padding: 5px 10px;
  letter-spacing: 3px;
  opacity: 1;
  border: 1px solid #231815;
  font-size: 1.4rem;
}
header .reserve_btn span {
  font-family: "Shippori Mincho", serif;
}
header .reserve_btn:hover {
  color: #fff;
  background-color: #231815;
}
header .reserve_btn:hover span::after {
  background-image: url(../img/icon_arrow_w.svg);
}

@media (min-width: 960px) {
  header {
    height: 60px;
  }
  header .logo {
    width: 200px;
  }
  header .reserve_btn {
    top: calc(50% - 21px);
    right: 9px;
    width: 135px;
    padding: 10px;
    text-align: center;
    letter-spacing: 10px;
  }
  header .reserve_btn span {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .reserve_btn span::after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    margin-left: 2px;
    background-image: url(../img/icon_arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}
/* =============================================
 header END */
/* mv
============================================= */
#mv {
  position: relative;
  height: 56.25%;
  padding-top: 50px;
}
#mv .scroll_down {
  position: absolute;
  bottom: -30px;
  left: 50%;
  overflow: hidden;
  width: 1px;
  height: 60px;
  background: #b7b7b7;
}
#mv .scroll_down::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 80px;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  background: #5d5d5d;
}

@-webkit-keyframes pathmove {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes pathmove {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.video {
  position: relative;
  width: 100%;
  padding-top: 420px;
  pointer-events: none;
}
.video iframe {
  position: absolute;
  top: 0;
  right: -60%;
  width: 200%;
  height: 100%;
}

@media (min-width: 960px) {
  #mv {
    padding-top: 60px;
    background-color: #000;
  }
  .video {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 56.25%;
  }
  .video iframe {
    right: 0;
    width: 100%;
  }
}
@media (min-width: 1601px) {
  .video {
    padding-top: 46.25%;
  }
}
/* =============================================
 mv END */
/* キャッチ
============================================= */
#catch {
  margin: 80px 0 50px;
}
#catch .flex_left_wrap {
  order: 2;
  margin-top: 30px;
}
#catch .flex_left_wrap .flex {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
#catch .flex_left_wrap .flex li:first-child {
  width: 100%;
}
#catch .flex_left_wrap .flex li:first-child img {
  width: 160%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: calc(50% - 32vw) 0;
     object-position: calc(50% - 32vw) 0;
}
#catch .flex_left_wrap .flex li:nth-child(2) {
  width: calc(31.25% - 20px);
  margin-left: 20px;
}
#catch .flex_left_wrap .flex li:nth-child(3) {
  width: calc(62.5% - 20px);
  margin-right: 20px;
  margin-left: 0;
}
#catch .flex_left_wrap .flex li + li {
  margin-top: 20px;
}
#catch .flex_right_wrap {
  order: 1;
  margin: 0 auto;
  padding: 0 12.5%;
}
#catch .flex_right_wrap .title_style02 {
  padding-left: 40px;
}
#catch .flex_right_wrap p {
  letter-spacing: 3px;
  line-height: 2;
}

@media (min-width: 960px) {
  #catch {
    margin: 100px 0;
  }
  #catch .flex .flex_left_wrap {
    order: 1;
    max-width: 885px;
    margin-top: 0;
  }
  #catch .flex .flex_left_wrap li:first-child img {
    width: 100%;
    height: auto;
    -o-object-position: 0;
       object-position: 0;
  }
  #catch .flex .flex_left_wrap .flex {
    justify-content: left;
    width: 100%;
  }
  #catch .flex .flex_left_wrap .flex li:first-child {
    max-width: 885px;
    max-height: 385px;
  }
  #catch .flex .flex_left_wrap .flex li:nth-child(2) {
    width: 25%;
    max-width: 220px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    max-height: 308px;
  }
  #catch .flex .flex_left_wrap .flex li:nth-child(3) {
    width: 50%;
    max-width: 475px;
    max-height: 385px;
  }
  #catch .flex .flex_left_wrap .flex li + li {
    margin-left: 20px;
  }
  #catch .flex .flex_left_wrap .flex li img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #catch .flex .flex_right_wrap {
    order: 2;
    margin: 0;
    margin-left: auto;
    padding: 0 200px 0 100px;
    font-family: "Shippori Mincho", serif;
  }
  #catch .flex .flex_right_wrap .title_style02 {
    padding-left: 12.7%;
    word-break: keep-all;
  }
  #catch .flex .flex_right_wrap .title_style02 span {
    margin-top: 70px;
  }
  #catch .flex .flex_right_wrap p {
    font-size: 1.8rem;
    line-height: 2;
  }
}
/* =============================================
キャッチ END */
/* おしながき
============================================= */
#menu {
  position: relative;
  padding: 80px 0 10%;
}
#menu .inner {
  position: relative;
  padding: 0 10%;
}
#menu p {
  color: #fff;
}
#menu .title_style01 span {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 2.1rem;
}
#menu .title_style01 + .content_title_block {
  margin-top: 50px;
}
#menu span {
  color: #999;
  font-size: 1.1rem;
}
#menu span.type {
  font-size: 1.3rem;
}
#menu .menu_sub_title01 {
  margin: 50px 0 30px;
  font-size: 2.1rem;
}
#menu .menu_sub_title01 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
}
#menu .menu_sub_title01 span.ml_space_none {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  font-size: 1.6rem;
}
#menu .menu_content_wrap small {
  font-size: 80%;
}
#menu .menu_content_wrap span {
  display: block;
  letter-spacing: 2px;
  color: #fff;
  font-size: 1.6rem;
}
#menu .menu_content_wrap span.type {
  display: inline;
  color: #fff;
  font-size: 1.3rem;
}
#menu .menu_content_wrap span.tax {
  display: inline;
  color: #bfbfbf;
  font-size: 12px;
  font-weight: 100;
}
#menu .menu_content_wrap span.note_txt {
  letter-spacing: 0;
  color: #fff;
  background-color: #131313;
  font-size: 1.1rem;
}
#menu .menu_content_wrap p:nth-child(even) {
  margin-top: 10px;
  margin-bottom: 40px;
  padding-top: 10px;
  color: #999;
  border-top: 1px solid #999;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
}
#menu .menu_content_wrap p:last-child {
  margin-bottom: 0;
}
#menu .article_bg_black {
  margin-top: 30px;
  padding: 10px;
  background-color: #131313;
  font-family: "Noto Sans JP", sans-serif;
}
#menu .article_bg_black .article_title {
  margin-bottom: 5px;
  color: #fff;
  font-size: 1.2rem;
}
#menu .article_bg_black .article_title span {
  color: #fff;
  font-family: "Shippori Mincho", serif;
}
#menu .article_bg_black p {
  color: #999;
  font-size: 1.1rem;
}

.frame_border {
  position: relative;
}
.frame_border::before {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  left: 0;
  height: 1px;
  border-top: 1px solid rgba(242, 239, 234, 0.3);
}
.frame_border::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 1px;
  border-left: 1px solid rgba(242, 239, 234, 0.3);
}
.frame_border .frame_border_inner {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.frame_border .frame_border_inner::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  height: 1px;
  border-bottom: 1px solid rgba(242, 239, 234, 0.3);
}
.frame_border .frame_border_inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 1px;
  border-right: 1px solid rgba(242, 239, 234, 0.3);
}

.bg_black01 {
  background-image: url(../img/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.content_title_block {
  width: 50%;
  margin: 0 auto;
  padding-right: 10px;
}

@media (min-width: 960px) {
  #menu {
    padding: 100px 0;
  }
  #menu .inner {
    padding: 0;
  }
  #menu .flex .flex_left_wrap {
    order: 2;
  }
  #menu .flex .flex_right_wrap {
    order: 1;
  }
  #menu .title_style01 + .content_title_block {
    width: 23%;
    margin-top: 70px;
  }
  #menu .title_style01 span {
    font-size: 3rem;
  }
  #menu .menu_sub_title01 {
    margin: 100px 0 90px;
    font-size: 3rem;
  }
  #menu .menu_sub_title01 span {
    display: inline;
    letter-spacing: 3px;
    font-size: 1.6rem;
  }
  #menu .menu_sub_title01 span.ml_space_none {
    letter-spacing: 3px;
    font-size: 2.8rem;
  }
  #menu .menu_content_wrap p {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    font-size: 2.5rem;
  }
  #menu .menu_content_wrap p span {
    display: inline;
    font-size: 2rem;
  }
  #menu .menu_content_wrap p span.type {
    font-size: 2rem;
  }
  #menu .menu_content_wrap p span.price {
    margin-left: auto;
    letter-spacing: 5px;
    font-size: 2.2rem;
  }
  #menu .menu_content_wrap p span.note_txt {
    flex: 1 1 100%;
    text-align: right;
    letter-spacing: 0;
    color: #999;
    background-color: transparent;
    font-size: 1.5rem;
  }
  #menu .menu_content_wrap p:nth-child(even) {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-top: 20px;
    font-size: 1.6rem;
  }
  #menu .article_bg_black {
    padding: 30px;
  }
  #menu .article_bg_black p {
    font-size: 1.4rem;
  }
  #menu .article_bg_black .article_title {
    font-size: 1.5rem;
  }
  #menu .article_bg_black .article_title span {
    font-size: 1.5rem;
  }
}
/* =============================================
おしながき END */
/* 店内のご案内
============================================= */
#guide {
  padding: 50px 0;
}
#guide .title_style01 + p {
  margin-top: 50px;
}
#guide .guide_img_wrap ul li:nth-child(2) {
  order: 3;
}
#guide .guide_img_wrap ul li:nth-child(3) {
  order: 2;
}
#guide .guide_img_wrap ul li:nth-child(n+2) {
  padding: 0 4.6875%;
}
#guide .guide_img_wrap ul li + li {
  margin-top: 10px;
}
#guide .guide_img_wrap ul li span {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 320px;
}
#guide .guide_img_wrap ul li span img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 960px) {
  #guide {
    padding: 100px 0;
  }
  #guide .title_style01 + p {
    margin-top: 110px;
    text-align: center;
    font-size: 2rem;
  }
  #guide .guide_img_wrap {
    margin-top: 110px;
    margin-left: 100px;
  }
  #guide .guide_img_wrap .flex {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #guide .guide_img_wrap .flex_full01 li {
    width: calc(50% - 15px);
  }
  #guide .guide_img_wrap .flex_full01 li:first-child {
    width: 100%;
  }
  #guide .guide_img_wrap ul li + li {
    margin-top: 20px;
  }
  #guide .guide_img_wrap ul li:nth-child(2) {
    order: 2;
  }
  #guide .guide_img_wrap ul li:nth-child(3) {
    order: 3;
  }
  #guide .guide_img_wrap ul li:nth-child(n+2) {
    padding: 0;
  }
  #guide .guide_img_wrap ul li:nth-child(n+2) img {
    height: 100%;
    background-color: #fff;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #guide .guide_img_wrap ul li span {
    height: 570px;
  }
}
/* =============================================
店内のご案内 END */
/* ご挨拶
============================================= */
#message {
  padding: 80px 4.6875% 4.6875%;
}
#message.bg_black02 {
  background-image: url(../img/bg02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#message .flex_left_wrap {
  margin: 50px auto 20px;
  padding: 0 4.6875%;
}
#message .flex_left_wrap p {
  letter-spacing: 3px;
  color: #fff;
  font-size: 1.6rem;
}
#message .flex_left_wrap p + p {
  margin-right: 30px;
  font-size: 1.3rem;
}
#message .flex_left_wrap p + p span {
  font-size: 1.6rem;
}
#message .flex_right_wrap {
  padding: 0;
}
#message .title_style01 span::before {
  right: -40%;
  width: 200%;
}
#message .title_style01 span::after {
  left: -40%;
}

@media (min-width: 960px) {
  #message {
    padding: 100px 0 180px;
  }
  #message .message_contents_wrap {
    margin-top: 120px;
  }
  #message .message_contents_wrap p + p span {
    font-size: 2rem;
  }
  #message .flex_right_wrap {
    width: 50%;
    max-width: 800px;
    padding: 0;
  }
  #message .flex_left_wrap {
    margin-top: 0;
    margin-right: 100px;
    padding: 0;
  }
  #message .flex_left_wrap p {
    letter-spacing: 5px;
    font-size: 2rem;
  }
  #message .flex_left_wrap p span {
    font-size: 2.5rem;
  }
  #message .flex_left_wrap p + p {
    margin-right: 50px;
  }
}
/* =============================================
ご挨拶 END */
/* ご予約・アクセス
============================================= */
#access {
  padding: 50px 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}
#access .title_style01 span::before {
  right: -5%;
  bottom: -15%;
  width: 116%;
}
#access .title_style01 span::after {
  bottom: -55%;
  left: -5%;
}
#access .phone_wrap {
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
}
#access .phone_wrap a {
  display: block;
  padding: 20px;
  background-color: #000;
}
#access .phone_wrap p {
  text-align: center;
  letter-spacing: 3px;
  color: #bdab4e;
  font-size: 1.5rem;
}
#access .phone_wrap p span {
  display: block;
  letter-spacing: 8px;
  color: #fff;
  font-size: 2.4rem;
}
#access .phone_wrap p span::before {
  content: "";
  display: inline-block;
  height: 18px;
  margin-right: 10px;
  padding-right: 18px;
  background-image: url(../img/icon_tel.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
#access .information_wrap {
  padding: 10px 0 70px;
  text-align: center;
}
#access .information_wrap .flex {
  align-items: baseline;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
#access .information_wrap .information_title {
  margin-top: 15px;
}
#access .information_wrap ul li {
  text-align: left;
  font-feature-settings: "palt";
}
#access .information_wrap ul li:nth-child(even) {
  width: 68%;
}
#access .information_wrap ul li:nth-child(odd) {
  width: 32%;
}
#access .article_reservation_wrap {
  font-size: 1.2rem;
}
#access .article_reservation_wrap div + div {
  margin-top: 50px;
}
#access .article_reservation_wrap .article_reservation_title {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
#access .article_reservation_wrap p {
  font-size: 1.2rem;
}
#access .sns_wrap {
  margin-top: 50px;
  padding-top: 30px;
  letter-spacing: 5px;
  border-top: 1px solid #473e39;
}
#access .sns_wrap a {
  width: calc(25% - 45px);
}
#access .sns_wrap p {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  font-size: 1.4rem;
}
#access .sns_wrap .flex {
  flex-direction: row;
  justify-content: center;
  margin-top: 10px;
}
#access .sns_wrap .flex a {
  display: block;
  width: 40px;
}
#access .sns_wrap .flex a + a {
  margin-left: 25px;
}
#access .sns_wrap .sns_btn {
  position: relative;
  display: block;
  width: 280px;
  height: 60px;
  cursor: pointer;
  border-radius: 12px;
}
#access .sns_wrap .sns_btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: auto;
  transition: 0.4s ease-in-out;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #fff;
}
#access .sns_wrap .sns_btn:hover img:nth-of-type(2) {
  opacity: 0;
}

@media (min-width: 960px) {
  #access {
    padding: 140px 0 80px;
  }
  #access .phone_wrap {
    margin-top: 120px;
  }
  #access .phone_wrap p {
    letter-spacing: 5px;
    color: #bdab4e;
    font-size: 2rem;
  }
  #access .phone_wrap p span {
    letter-spacing: 10px;
    color: #fff;
    font-size: 3rem;
  }
  #access .phone_wrap p span::before {
    height: 20px;
    padding-right: 20px;
  }
  #access .information_wrap {
    padding: 50px 0 90px;
  }
  #access .information_wrap ul {
    font-size: 1.7rem;
  }
  #access .information_wrap ul.flex {
    flex-wrap: wrap;
    width: 660px;
    margin: 0 auto;
    text-align: left;
    letter-spacing: 2px;
  }
  #access .information_wrap ul li:nth-child(odd) {
    width: 120px;
    margin-top: 0;
  }
  #access .information_wrap ul li:nth-child(even) {
    width: calc(100% - 140px);
    margin-left: 20px;
  }
  #access .article_reservation_wrap p {
    font-size: 1.4rem;
  }
  #access .article_reservation_wrap .article_reservation_title {
    font-size: 1.5rem;
  }
  #access .sns_wrap {
    margin-top: 80px;
    padding-top: 80px;
  }
  #access .sns_wrap p {
    font-size: 2rem;
  }
  #access .sns_wrap .flex a {
    width: calc(10% - 30px);
  }
  #access .sns_wrap .sns_btn {
    height: 70px;
  }
}
/* =============================================
ご予約・アクセス END */
/* footer
============================================= */
footer {
  background-color: #000;
}
footer p.copy {
  padding: 20px 10px;
  text-align: center;
  font-size: 1rem;
}
footer p.copy span {
  letter-spacing: 1px;
  color: #fff;
}

/* =============================================
fotter END */