@charset "utf-8";

/* CSS Document */

body {
  overflow-x: hidden;
}

html, body {
  /*font-family:"SF Pro JP","SF Pro Display","SF Pro Icons","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ","Meiryo","ＭＳ Ｐゴシック","Helvetica Neue","Helvetica","Arial",sans-serif;*/
  font-family: Georgia, "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 14px;
  color: #000000;
}

.mincho {
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: normal;
}

.gothic {
  font-family: "SF Pro JP", "SF Pro Display", "SF Pro Icons", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}


/* 表示アニメーション設定 */

body {
  -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
  animation: fadeIn 1.5s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

/* 追従ボタン設定　*/

@media (max-width: 768px) {
  .reservation img {
    width: 10vw;
  }
}

/* フォントここから */

.h1 {
  letter-spacing: -0.05em;
}


/* フォントここまで */

/*
a img:hover {
  opacity: 0.6;
  transition: 0.6s;
}
*/

a img {
  transform: scale(1);
  transition: .3s ease-in-out;
}
a img:hover {
  transform: scale(1.025);
}

a img.invalid {
  transform: none;
  transition: none;
}
a img.invalid:hover {
  transform: none;
}

#furisode a img:hover {
  opacity: 1;
  transition: none;
}

.nav {}

nav {
  padding: 1% 2%;
  z-index: 150;
  text-align: center;
  background: rgba(51, 51, 51, 0.9);
  font-size: 1.5vw;
  letter-spacing: 0.2rem;
}

nav a:hover {
  text-decoration: none;
}

.fixed-nav {
  padding: 1% 2%;
  z-index: 150;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
}

.navbtn {
  width: 150px;
  height: 38px;
  border-radius: 19px;
}

.nav>.row {
  width: 980px;
}

.row {
  max-width: 980px;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

div.pagetop {
  right: 10px;
  z-index: 200;
}

div.reservation {
  right: 0;
  z-index: 200;
}

div.reservation img:hover {
  opacity: 1;
}


/*** コンテナ設定 ***/

.container {
  max-width: 720px;
/*
  background: -moz-linear-gradient(left,  #360000 0%, #a90001 50%, #360000 100%);
  background: -webkit-linear-gradient(left,  #360000 0%,#a90001 50%,#360000 100%);
  background: linear-gradient(to right,  #360000 0%,#a90001 50%,#360000 100%);
*/
  background-color: black;
}

.row-eq-height {
  display: -webkit-flex;
  /* Safari */
  display: flex;
  flex-wrap: wrap;
}

.container-810 {
  max-width: 810px;
}


/*** 点滅 ***/

.blinking {
  -webkit-animation: blink 0.9s ease-in-out infinite alternate;
  -moz-animation: blink 0.9s ease-in-out infinite alternate;
  animation: blink 0.9s ease-in-out infinite alternate;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes blink {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}

/*** reflection ***/
.reflection {
  position: relative;
  overflow: hidden;
}

.reflection::after {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
  transform: rotate(45deg);
}

@keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@-webkit-keyframes reflect {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/*** ぽよぽよ ***/
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}


/*** テーブル ***/

.table.shop th, .table.shop td {
  vertical-align: bottom;
  border-top: none;
}

@media (min-width: 992px) {
  .kv {
    position: relative;
    margin: 0 auto;
    width: auto;
    height: 600px;
  }
  .kv img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
  }
  .youtube {
    margin: 0 auto;
    max-width: 980px;
    max-height: 600px;
  }
  .youtube iframe {
    width: 100%;
    height: 600px;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 4% 2% 8%;
    font-size: 4vw;
  }
  .youtube {
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
  .youtube iframe {
    width: 100%;
    height: 200px;
  }
}


/**LP用追加**/

h2 {
  /*font-size: 2vw;
  padding: 1em 0;*/
}

ul.att {
  padding-left: 2.5em;
  text-indent: -2.5em;
  margin-bottom: 0;
}

ul.att li {
  padding-bottom: 1em;
}

ul.att-list {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 0;
}

ul.att-list li {
  padding-bottom: 0;
}

ul.att-2 {
  padding-left: 1.3em;
  text-indent: -1.3em;
  margin-bottom: 0;
}

ul.att-2 li {
  /*padding-bottom: 1em;*/
}

@media (max-width: 768px) {
  h2 {
    /*font-size: 5vw;*/
  }

  h4 {
    font-size: 3vw;
  }
  .notice {
    font-size: 2vw;
  }
  .text-btn {
    font-size: 2.5vw;
  }
  table td div.col-md-6 {
    padding: 0;
  }
}

.list {
  background-image: url("https://furisode-ichikura.jp/2023/05furisodeno1-makuhari/img/bg-list.jpg");
  background-size: cover;
  background-position: top center;
}


/*#place {
  background-image: url("https://furisode-ichikura.jp/2023/05furisodeno1-makuhari/img/bg-paper.jpg");
  background-repeat: repeat;
  background-position: top center;
}*/

table {
  display: table;
  table-layout: fixed;
}

table th {
  display: table-cell;
  width: 20%;
  background-color: #333;
  color: #fff;
}

table td {
  display: table-cell;
  text-align: left;
}

table td div.h5 {
  margin-bottom: 0;
}

.box-white {
  background: #fff;
  box-sizing: border-box;
  margin: auto;
  max-width: 960px;
  padding: 2.4%;
}

.box-yellow {
  background: #fff;
  border: 0.6vw solid #e6b422;
  box-sizing: border-box;
  margin: auto;
  max-width: 960px;
  padding: 2.4%;
}

.bg-gray {
  background-color: #f2f2f2;
}

.bg-red {
  background-color: #e2041b;
}

.font-red {
  color: #92173d;
}

ul.ul-kaijyo {
  padding-inline-start: 0;
  list-style-type: none;
}

.ul-kaijyo li {
  text-indent: -5em;
  padding-left: 5em;
  padding-top: 0.5em;
}

.kaijyo-img, .kaijyo-map {
  padding: 5px;
}

.fadein {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1500ms;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  font-size: 20px;
  color: #fff;
  /*margin-top: 50px;*/
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  /*background: #e74c3c;*/
  /*padding: 10px;*/
  height: 180px;
  width: 180px;
  /*border-radius: 100px;*/
  line-height: 100px;
}

@media (max-width: 768px) {
  .bounce {
    height: 80px;
    width: 80px;
  }
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}


/* 追従ボタン設定　*/

.fixed-btn {
  position: fixed;
  bottom: 80px;
  right: 0px;
  z-index: 100;
}

@media (max-width: 768px) {
  .fixed-btn img {
    width: 10vw;
  }
}

.form_container{
  width: 100vw;
  background-color: #fff;
  padding-bottom: 80px;
  padding-top: 20px;
}

footer.py-2{
  width: 100%;
  /*background-color: #fff;*/
}

.card-title{
  font-size: 1.15rem;
}

/* マージン設定設定　*/
.mb-s {
  margin-bottom: 2.5%;
}

.mb-m {
  margin-bottom: 5%;
}

.mb-l {
  margin-bottom: 10%;
}

/* 限定デザイン動画 */
.thumnail{
  margin:0 auto 5em;
  width:80%;
  max-width:570px;
}
.thumnail a img{
  box-shadow:0px 2px 4px rgba(0,0,0,3);
  border-radius:.5em;
  width:100%;
}
.thumnail a:hover img{
  box-shadow:0px 8px 16px rgba(0,0,0,1);
  transform: scale(1.05, 1.05);
  -webkit-transform: scale(1.05, 1.05);
  -moz-transform: scale(1.05, 1.05);
  -ms-transform: scale(1.05, 1.05);
  -o-transform: scale(1.05, 1.05);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* 店舗詳細 */
#place_info{
  margin-top:-5em;
  padding-top:5em;
}

/* pc_none/sp_none */
@media (min-width: 767px) {
  .pc_none {
    display:none;
  }
}
@media (max-width: 768px) {
  .sp_none {
    display:none;
  }
}

.slick-slider {
  margin: 0 auto;
}
.slick-slide img {
  object-fit: cover;
  height: auto;
  width: 100%;
}

/* スマホ用固定CTA */
.spcta {
  background: #B89648;
  background: linear-gradient(90deg, rgba(184, 150, 72, 1) 0%, rgba(241, 236, 172, 1) 50%, rgba(181, 145, 71, 1) 100%);
  color: #5e0000;
  font-weight: bold;
}

.linkbox {
    position: relative;
}
.linkbox a {
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
}

/*-- YouTubeショート埋め込み --*/
.youtube_short{
 width: 70%; /* 伸縮する横幅 */
 max-width: 400px; /* 最大の横幅 */
 margin: auto; /* 画面の中央に配置 */
}
.youtube_short iframe{
 aspect-ratio: 9 / 16;
 width: 100%;
 height: 100%;
}