@charset "utf-8";
/* CSS Document */
/***********************************************************************
全ページ共通
************************************************************************/
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}
h2 {
  font-family: "Libre Baskerville", serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
  text-transform: capitalize;
}
h3 {
  font-family: "Libre Baskerville", serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
p {
  margin-bottom: 20px;
}
section {
  padding: 40px 0;
}
.none {
  display: none;
}
.small {
  font-size: 12px;
}
/*~~~ロード画面アニメーション~~~*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #3c3c3c;
  text-align: center;
  color: #fff;
}
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#splash_logo img {
  width: 200px;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*~～~リンクボタンデザイン～~~*/
.button {
  display: inline-block;
  font-size: 12px;
  height: 30px;
  border-bottom: 0.5px solid #593C2B;
  position: relative;
}
.button::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("../images/icon_arrow.gif") no-repeat center/contain;
  margin-right: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 960px) {
  h2 {
    font-size: 32px;
    margin-bottom: 80px;
  }
  h3 {
    font-size: 24px;
  }
  .PC_none {
    display: none;
  }
  .PC_block {
    display: block;
  }
  .small {
    font-size: 16px;
  }
  .button {
    font-size: 16px;
    height: 40px;
  }
  .button::before {
    width: 16px;
    height: 16px;
  }
}
/*~~~下線ホバーアニメーション~~~*/
.linebottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #593C2B;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.linebottom:hover::after {
  transform: scale(1, 1);
}
/*~~~フェードインアニメーション~~~*/
.fadeInTrigger {
  opacity: 0;
}
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*~~~フェードレフトアニメーション~~~*/
.fadeLeftTrigger {
  opacity: 0;
}
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*~~~フェードライトアニメーション~~~*/
.fadeRightTrigger {
  opacity: 0;
}
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/***********************************************************************
common
************************************************************************/
/*=================================
common共通
====================================*/
#common {
  color: #593C2B;
}
/*=================================
header
====================================*/
header {
  height: 100vh;
  position: relative;
}
header::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background: url(../images/common_FV.jpg) no-repeat center/cover;
  filter: brightness(0.7);
}
.topbelt {
  position: fixed;
  z-index: 99;
  width: 100vw;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(221, 234, 208, .6);
  font-weight: bold;
}
.topbelt h1 img {
  height: 50px;
  padding: 0 20px;
}
.topbelt nav ul {
  display: flex;
  justify-content: space-around;
  width: 160px;
  height: 40px;
  border: 0.5px solid #593C2B;
}
.topbelt nav ul li {
  display: flex;
  flex-grow: 1;
  align-items: center;
  position: relative;
  text-transform: uppercase;
}
.topbelt nav ul li:last-child::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  bottom: 0;
  transform: translate(0, -50%);
  width: 0.5px;
  height: 24px;
  background-color: #593C2B;
}
.topbelt nav a {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.topbelt p {
  padding: 0 20px;
  margin: 0;
}
.topbelt p a {
  position: relative;
}
.copy {
  color: #F5F3EB;
  white-space: nowrap;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#common .copy::after {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background: url("../images/shibalogo_common_FV.png") no-repeat center/contain;
}
/*～～～navホバーアニメーション～～～*/
.topbelt nav a {
  position: relative;
}
.topbelt nav a::after {
  content: '';
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: #593C2B;
  transition: all .5s;
  opacity: 0;
}
.topbelt nav a:hover::after {
  width: 100%;
  opacity: 1
}
.topbelt nav a:hover {
  color: #DDEAD0;
}
/*~~~スクロールバーアニメーション~~~*/
.scroll {
  position: fixed;
  z-index: -1;
  left: 50%;
  bottom: 0;
  height: 100px;
}
.scroll span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #F5F3EB;
  font-size: 12px;
}
.scroll::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100px;
  background: #F5F3EB;
  animation: pathmove 2s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 100px;
    opacity: 0;
  }
}
@media screen and (min-width: 960px) {
  header::before {
    background: url("../images/common_FV_PC.jpg") no-repeat center/cover;
  }
  .topbelt {
    font-size: 16px;
  }
  .topbelt h1 img {
    padding: 0 40px;
  }
  .topbelt p {
    padding: 0 40px;
    margin: 0;
  }
}
/*=================================
about_sec
====================================*/
.about_sec {
  background-color: #DDEAD0;
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
  padding-bottom: 0;
}
.about_sec p {
  width: 300px;
  margin: 0 auto 20px;
}
.linkblock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.linkblock_bar picture {
  order: 2;
}
.linkblock_left {
  order: 1;
}
.linkblock img {
  width: 240px;
  height: 200px;
  object-fit: cover;
}
.linkblock h3 {
  font-size: 32px;
  text-transform: capitalize;
  line-height: 1;
}
.linkblock_cafe img {
  border-radius: 0 5px 5px 0;
}
.linkblock_bar img {
  border-radius: 5px 0 0 5px;
}
.linkblock_text {
  width: 105px;
  margin-left: auto;
  margin-right: auto;
}
.linkblock_title {
  font-weight: bold;
}
.linkblock_text p {
  margin: 0;
}
.gallery {
  width: 100%;
  height: 200px;
  margin-top: 40px;
}
.gallery-item01 {
  background: url(../images/common_gallery01.jpg);
}
.gallery-item02 {
  background: url(../images/common_gallery02.jpg);
}
.gallery-item03 {
  background: url(../images/common_gallery03.jpg);
}
.gallery-item {
  width: 100%;
  height: 200px;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .about_sec {
    padding-top: 160px;
  }
  .about_sec p {
    width: 80%;
    max-width: 700px;
  }
  .linkblock_cafe {
    margin-top: 160px;
  }
  .linkblock_bar {
    margin-top: 80px;
  }
  .linkblock img {
    width: 50vw;
    max-width: 960px;
    height: auto;
  }
  .linkblock_cafe img {
    border-radius: 0 10px 10px 0;
  }
  .linkblock_bar img {
    border-radius: 10px 0 0 10px;
  }
  .linkblock_text {
    display: inline-block;
    width: auto;
    max-width: 500px;
    margin: 0 auto;
  }
  .linkblock_title {
    display: flex;
    margin-bottom: 40px;
    width: 300px;
  }
  .linkblock_title h3 {
    font-size: 48px;
  }
  .linkblock_title p {
    display: flex;
    align-items: flex-end;
    margin-left: 40px;
    font-size: 20px;
  }
  .linkblock_text > p {
    width: 100%;
  }
  .linkblock_text a {
    height: 40px;
    font-size: 16px;
    margin-top: 40px;
  }
  .linkblock_text a::after {
    width: 16px;
    height: 16px;
  }
  .gallery {
    height: 700px;
    margin-top: 80px;
  }
  .gallery-item01 {
    background: url(../images/common_gallery01_PC.jpg);
    background-position: center top;
  }
  .gallery-item02 {
    background: url(../images/common_gallery02_PC.jpg);
    background-position: center top;
  }
  .gallery-item03 {
    background: url("../images/common_gallery03_PC.jpg");
    background-position: center top;
  }
  .gallery-item {
    width: 100%;
    height: 700px;
  }
}
/*=================================
instagram_sec
====================================*/
.instagram_sec {
  background-color: #DDEAD0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
.instagram_sec h2 {
  margin-bottom: 20px;
}
.instagram_name {
  margin-bottom: 20px;
  position: relative;
}
.instagram_name::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../images/icon_instagram.gif") no-repeat center/contain;
  margin-right: 10px;
  vertical-align: middle;
}
.postlist {
  width: 300px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.postlist img {
  width: 100px;
}
.instagram_sec a:nth-child(5) {
  height: 30px;
  border-bottom: 0.5px solid #593C2B;
}
.pattern {
  width: 100%;
  height: 16px;
  background-image: url("../images/common_instagram_pattern.png");
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
  margin: 40px 0;
}
.zoomInText {
  position: relative;
}
.zoomInText span.mask {
  position: relative;
  display: block;
  overflow: hidden;
}
.zoomInText:hover span.mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.zoomInText img {
  transform: scale(1);
  filter: blur(0);
  transition: .5s ease-in-out;
}
.zoomInText:hover img {
  transform: scale(1.1);
  filter: blur(2px);
}
.zoomInText span.cap {
  opacity: 0;
  transition: .7s ease-in-out;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #F5F3EB;
}
.zoomInText:hover span.cap {
  opacity: 1;
}
@media screen and (min-width: 960px) {
  .instagram_sec h2 {
    margin-bottom: 40px;
  }
  .instagram_sec a {
    font-size: 16px;
    margin-bottom: 80px;
  }
  .instagram_sec a:nth-child(3)::before {
    width: 20px;
    height: 20px;
  }
  .postlist {
    width: 720px;
  }
  .postlist img {
    width: 240px;
  }
  .instagram_sec a:nth-child(5) {
    height: 40px;
  }
  .instagram_sec a:nth-child(5)::after {
    width: 16px;
    height: 16px;
  }
  .pattern {
    height: 24px;
    margin-bottom: 80px;
  }
}
/*==================================
information_sec
====================================*/
.information_sec {
  background-color: #DDEAD0;
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
}
.information_sec iframe {
  width: 100%;
  height: 200px;
}
.information_sec > a {
  display: block;
  width: 100px;
  margin: 20px auto;
}
.information_sec img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 40px auto 0;
}
.information_sec div {
  width: 300px;
  margin: 0 auto;
}
.information_sec h3 {
  font-size: 24px;
  margin: 40px 0 20px;
}
.information_sec h3::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.access h3::before {
  background: url("../images/icon_mappin_common.gif") no-repeat center bottom/contain;
}
.lasttrain h3::before {
  background: url("../images/icon_train_common.gif") no-repeat center bottom/contain;
}
.lasttrain span {
  font-weight: bold;
}
.open h3::before {
  background: url("../images/icon_clock_common.gif") no-repeat center bottom/contain;
}
.open p::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
  background: url("../images/icon_sun_common.gif") no-repeat center center/contain;
}
.open p:nth-child(2) {
  margin-bottom: 0;
}
.open :last-child::before {
  background: url("../images/icon_moon_common.gif") no-repeat center center/contain;
}
.contact h3::before {
  display: none;
}
.contact p::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
  background: url("../images/icon_tell_common.gif") no-repeat center bottom/contain;
}
.contact h3 {
  margin: 0;
}
.contact {
  position: relative;
  width: 300px;
  height: 100px;
  text-align: center;
  margin-top: 40px;
}
.contact::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: #593C2B;
  box-shadow: 0 90px 0 #593C2B;
}
.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5px;
  width: 0.5px;
  height: 100%;
  background: #593C2B;
  box-shadow: 290px 0 0 #593C2B;
}
.contact_inner {
  position: relative;
  padding: 20px;
  width: 300px;
  height: 100px;
  text-align: center;
  line-height: 50px;
}
.contact_inner::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 0.5px;
  background: #593C2B;
  box-shadow: 0 84px 0 #593C2B;
}
.contact_inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8px;
  width: 0.5px;
  height: 100%;
  background: #593C2B;
  box-shadow: 284px 0 0 #593C2B;
}
@media screen and (min-width: 960px) {
  .information_sec {
    padding-top: 80px;
    padding-bottom: 140px;
  }
  .information_sec iframe {
    height: 400px;
  }
  .information_sec > a {
    width: 130px;
    font-size: 16px;
  }
  .information_sec img {
    width: 100px;
    height: 100px;
    margin: 80px auto;
  }
  .information_sec div {
    width: 540px;
  }
  .information_sec h3 {
    margin: 80px 0 40px;
  }
  .lasttrain p:nth-child(2) {
    margin-bottom: 0;
  }
  .contact h3, p {
    margin: 0;
  }
  .contact {
    width: 450px !important;
    height: 150px;
    top: 80px;
  }
  .contact::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #593C2B;
    box-shadow: 0 130px 0 #593C2B;
  }
  .contact::after {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 0.5px;
    height: 100%;
    background: #593C2B;
    box-shadow: 430px 0 0 #593C2B;
  }
  .contact_inner {
    width: 450px !important;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .contact_inner::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 0.5px;
    background: #593C2B;
    box-shadow: 0 120px 0 #593C2B;
  }
  .contact_inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15px;
    width: 0.5px;
    height: 100%;
    background: #593C2B;
    box-shadow: 420px 0 0 #593C2B;
  }
}
/*=================================
footer
====================================*/
footer {
  background-color: #DDEAD0;
}
footer > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider {
  margin-bottom: 40px;
}
.slider img {
  width: 100%;
}
footer > div img {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}
footer nav ul {
  display: flex;
  justify-content: space-around;
  width: 160px;
  height: 60px;
  margin-bottom: 40px;
}
footer nav ul li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
footer nav a {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 100%;
}
footer nav a::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 16px;
  display: block;
  width: 16px;
  height: 16px;
  background: url("../images/icon_sun_common.gif") no-repeat center/contain;
}
footer nav li:last-child a::before {
  background: url("../images/icon_moon_common.gif") no-repeat center/contain;
  left: 10px;
}
@media screen and (min-width: 960px) {
  .slider {
    margin-bottom: 80px;
  }
  footer > div img {
    width: 100px;
    height: 100px;
    margin: 0 auto 80px;
  }
  footer nav ul {
    width: 200px;
    height: 100px;
    margin-bottom: 80px;
  }
  footer nav ul li {
    font-size: 20px;
    padding-bottom: 16px;
  }
  footer nav a::before {
    top: 16px;
    left: 16px;
    width: 24px;
    height: 24px;
  }
  footer nav li:last-child a::before {
    background: url("../images/icon_moon_common.gif") no-repeat center/contain;
    left: 10px;
  }
}
/*****************************************************************************
下層ページ共通
*****************************************************************************/
#sub .copy {
  height: auto;
  top: 40%;
  left: 75%;
}
#sub .copy span {
  font-size: 48px;
  text-transform: capitalize;
  line-height: 1;
}
@media screen and (min-width: 960px) {
  #sub .copy {
    height: auto;
    font-size: 32px;
  }
  #sub .copy span {
    font-size: 72px;
  }
}
/*=================================
intro_sec
====================================*/
.intro_sec {
  background-image: url("../images/bg-pattern.png");
  background-repeat: repeat;
}
.intro_sec p {
  display: block;
  width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .intro_sec {
    padding: 160px 0;
  }
  .intro_sec p {
    width: 440px;
    margin-bottom: 20px;
  }
}
/*=================================
features_sec
====================================*/
.features_sec h3 {
  margin-bottom: 20px;
}
.features_rayout {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}
.features_text p {
  width: 300px;
}
.features_sec img {
  width: 100%;
  max-width: 375px;
}
@media screen and (min-width: 960px) {
  .features_sec h3 {
    margin-bottom: 40px;
  }
  .features_rayout {
    flex-direction: row;
    justify-content: center;
  }
  .features_sec .features_rayout:nth-child(2) {
    padding: 80px 0;
  }
  .features_sec .features_rayout:last-child {
    padding: 0 0 80px;
  }
  .features_rayout > div, .features_rayout > img {
    margin: 0 40px;
  }
  .features_text p {
    width: 400px;
  }
  .flex_left {
    order: 1;
  }
  .flex_right {
    order: 2;
  }
}
/*=================================
menu_sec
====================================*/
.menu_slider li {
  margin-left: 10px;
  margin-bottom: 40px;
}
.menu_slider img {
  width: 100%;
  border-radius: 3px;
}
.menu_sec h3 {
  width: 300px;
  margin: 0 auto;
  text-transform: uppercase;
  color: #6A91B3;
}
.menu_list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.menu_list li {
  width: 300px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}
.menu_list li p {
  margin: 0;
}
.menu_list li p .small {
  margin-left: 20px;
}
.menu_sec > p:last-child {
  text-align: center;
}
@media screen and (min-width: 960px) {
  .menu_sec {
    font-size: 20px;
  }
  .menu_slider li {
    margin-bottom: 80px;
  }
  .menu_sec h3 {
    width: 400px;
    margin-bottom: 20px;
  }
  .menu_list li {
    width: 400px;
    padding: 30px 0;
  }
  .menu_layout {
    margin: 80px 0;
    display: flex;
    justify-content: center;
  }
  .menu_layout > div {
    margin: 0 20px;
  }
}
/*****************************************************************************
cafe
*****************************************************************************/
/*=================================
cafe共通
====================================*/
.cafe {
  color: #1C1C1C;
  background-color: #F5F3EB;
}
.cafe .button {
  border-bottom: 0.5px solid #1C1C1C;
}
.cafe .button::before {
  background: url("../images/icon_arrow_cafe.gif") no-repeat center/contain;
}
.cafe .linebottom::after {
  background: #1C1C1C;
}
/*=================================
header(cafe)
====================================*/
.cafe header::before {
  background: url("../images/cafe_FV_PC.jpg") no-repeat center/cover;
}
.cafe .topbelt {
  background-color: rgba(245, 243, 235, .6);
}
.cafe .topbelt nav ul {
  border: 0.5px solid #1C1C1C;
}
.cafe .topbelt nav ul li:last-child::before {
  background-color: #1C1C1C;
}
/*navホバーアニメーション*/
.cafe .topbelt nav a::after {
  background: #1C1C1C;
}
.cafe .topbelt nav a:hover {
  color: #F5F3EB;
}
/*=================================
intro_sec(cafe)
====================================*/
.cafe .intro_sec {
  background-color: #F5F3EB;
}
/*=================================
features_sec(cafe)
====================================*/
.cafe .features_sec div {
  background-color: #F5F3EB;
}
/*=================================
menu_sec(cafe)
====================================*/
.cafe .menu_sec {
  background-color: #F5F3EB;
}
.cafe .menu_list li {
  border-bottom: 0.5px solid #1C1C1C;
}
/*=================================
information_sec(cafe)
====================================*/
.cafe .information_sec {
  background-color: #F5F3EB;
}
.cafe .access h3::before {
  background: url("../images/icon_mappin_cafe.gif") no-repeat center bottom/contain;
}
.cafe .lasttrain h3::before {
  background: url("../images/icon_train_cafe.gif") no-repeat center bottom/contain;
}
.cafe .open h3::before {
  background: url("../images/icon_clock_cafe.gif") no-repeat center bottom/contain;
}
.cafe .open p::before {
  background: url("../images/icon_sun_cafe.gif") no-repeat center center/contain;
}
.cafe .open :last-child::before {
  background: url("../images/icon_moon_cafe.gif") no-repeat center center/contain;
}
.cafe .contact p::before {
  background: url("../images/icon_tell_cafe.gif") no-repeat center bottom/contain;
}
.cafe .contact::before {
  background: #1C1C1C;
  box-shadow: 0 90px 0 #1C1C1C;
}
.cafe .contact::after {
  background: #1C1C1C;
  box-shadow: 290px 0 0 #1C1C1C;
}
.cafe .contact_inner::before {
  background: #1C1C1C;
  box-shadow: 0 84px 0 #1C1C1C;
}
.cafe .contact_inner::after {
  background: #1C1C1C;
  box-shadow: 284px 0 0 #1C1C1C;
}
@media screen and (min-width: 960px) {
  .cafe .contact::before {
    box-shadow: 0 130px 0 #1C1C1C;
  }
  .cafe .contact::after {
    box-shadow: 430px 0 0 #1C1C1C;
  }
  .cafe .contact_inner::before {
    box-shadow: 0 120px 0 #1C1C1C;
  }
  .cafe .contact_inner::after {
    box-shadow: 420px 0 0 #1C1C1C;
  }
}
/*=================================
footer(cafe)
====================================*/
.cafe footer {
  background-color: #F5F3EB;
}
.cafe footer nav a::before {
  left: 20px;
  background: url("../images/icon_home_cafe.gif") no-repeat center/contain;
}
.cafe footer nav li:last-child a::before {
  background: url("../images/icon_moon_cafe.gif") no-repeat center/contain;
}
/*****************************************************************************
bar
*****************************************************************************/
/*=================================
bar共通
====================================*/
.bar {
  color: #F5F3EB;
  background-color: #1C1C1C;
}
.bar .button {
  border-bottom: 0.5px solid #F5F3EB;
}
.bar .button::before {
  background: url("../images/icon_arrow_bar.gif") no-repeat center/contain;
}
.bar .linebottom::after {
  background: #F5F3EB;
}
/*=================================
header(bar)
====================================*/
.bar header::before {
  background: url("../images/bar_FV_PC.jpg") no-repeat center/cover;
}
.bar .topbelt {
  background-color: rgba(28, 28, 28, .6);
}
.bar .topbelt nav ul {
  border: 0.5px solid #F5F3EB;
}
.bar .topbelt nav ul li:last-child::before {
  background-color: #F5F3EB;
}
/*navホバーアニメーション*/
.bar .topbelt nav a::after {
  background: #F5F3EB;
}
.bar .topbelt nav a:hover {
  color: #1C1C1C;
}
/*=================================
intro_sec(bar)
====================================*/
.bar .intro_sec {
  background-color: #1c1c1c;
}
/*=================================
features_sec(bar)
====================================*/
.bar .features_sec div {
  background-color: #1c1c1c;
}
/*=================================
menu_sec(bar)
====================================*/
.bar .menu_sec {
  background-color: #1c1c1c;
}
.bar .menu_list li {
  border-bottom: 0.5px solid #F5F3EB;
}
.menu_sec h3 span {
  text-transform: lowercase;
}
.charge li {
  justify-content: center;
}
/*=================================
information_sec(bar)
====================================*/
.bar .information_sec {
  background-color: #1c1c1c;
}
.bar .access h3::before {
  background: url("../images/icon_mappin_bar.gif") no-repeat center bottom/contain;
}
.bar .lasttrain h3::before {
  background: url("../images/icon_train_bar.gif") no-repeat center bottom/contain;
}
.bar .open h3::before {
  background: url("../images/icon_clock_bar.gif") no-repeat center bottom/contain;
}
.bar .open p::before {
  background: url("../images/icon_sun_bar.gif") no-repeat center center/contain;
}
.bar .open :last-child::before {
  background: url("../images/icon_moon_bar.gif") no-repeat center center/contain;
}
.bar .contact p::before {
  background: url("../images/icon_tell_bar.gif") no-repeat center bottom/contain;
}
.bar .contact::before {
  background: #F5F3EB;
  box-shadow: 0 90px 0 #F5F3EB;
}
.bar .contact::after {
  background: #F5F3EB;
  box-shadow: 290px 0 0 #F5F3EB;
}
.bar .contact_inner::before {
  background: #F5F3EB;
  box-shadow: 0 84px 0 #F5F3EB;
}
.bar .contact_inner::after {
  background: #F5F3EB;
  box-shadow: 284px 0 0#F5F3EB;
}
@media screen and (min-width: 960px) {
  .bar .contact::before {
    box-shadow: 0 130px 0 #F5F3EB;
  }
  .bar .contact::after {
    box-shadow: 430px 0 0 #F5F3EB;
  }
  .bar .contact_inner::before {
    box-shadow: 0 120px 0 #F5F3EB;
  }
  .bar .contact_inner::after {
    box-shadow: 420px 0 0 #F5F3EB;
  }
}
/*=================================
footer(bar)
====================================*/
.bar footer {
  background-color: #1c1c1c;
}
.bar footer nav a::before {
  left: 20px;
  background: url("../images/icon_home_bar.gif") no-repeat center/contain;
}
.bar footer nav ul li:last-child a::before {
  left: 14px;
  background: url("../images/icon_sun_bar.gif") no-repeat center/contain;
}
@media screen and (min-width: 960px) {
  .bar footer nav a::before {
    left: 24px;
  }
  .bar footer nav ul li:last-child a::before {
    left: 18px;
  }
}