@charset "UTF-8";
/*--------------------------------------
Reset CSS
--------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

/* 追加reset */
html {
  box-sizing: border-box;
}

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

a {
  color: inherit;
}

/*--------------------------------------
Common
--------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "M PLUS 1p", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", Verdana, sans-serif;
  letter-spacing: 0.08em;
  color: #333;
  word-break: break-all;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: auto;
  display: block;
  transition: 0.3s;
  min-height: 1px;
}

a:hover img {
  opacity: 0.8;
}

a {
  transition: 0.3s color, 0.3s background;
}

.containerSS,
.containerS,
.containerL,
.header_container {
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.containerSS {
  max-width: 810px;
}

.containerS {
  max-width: 960px;
}

.containerL, .header_container {
  max-width: 1160px;
}

.mtS {
  margin-top: 10px;
}

.mtM {
  margin-top: 20px;
}

.mtL {
  margin-top: 40px;
}

.mbS {
  margin-bottom: 10px;
}

.mbM {
  margin-bottom: 20px;
}

.mbL {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .mtS {
    margin-top: 20px;
  }

  .mtM {
    margin-top: 40px;
  }

  .mtL {
    margin-top: 80px;
  }

  .mbS {
    margin-bottom: 20px;
  }

  .mbM {
    margin-bottom: 40px;
  }

  .mbL {
    margin-bottom: 80px;
  }
}
@media (min-width: 481px) {
  .hide_md {
    display: none;
  }
}
@media (max-width: 767px) {
  .hide_lgmax {
    display: none;
  }
}
.is-hide {
  display: none;
}

#loader-bg {
  background: #FEF7F9;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#loader {
  position: absolute;
  width: 200px;
  height: 200px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

.loading {
  display: block;
  white-space: nowrap;
  text-align: center;
}

.loading span {
  display: inline-block;
  vertical-align: middle;
  color: #EB688F;
}

.loading span:nth-of-type(1) {
  -webkit-animation: animation 2s ease 0s infinite;
  animation: animation 2s ease 0s infinite;
}

.loading span:nth-of-type(2) {
  -webkit-animation: animation 2s ease 0.1s infinite;
  animation: animation 2s ease 0.1s infinite;
}

.loading span:nth-of-type(3) {
  -webkit-animation: animation 2s ease 0.2s infinite;
  animation: animation 2s ease 0.2s infinite;
}

.loading span:nth-of-type(4) {
  -webkit-animation: animation 2s ease 0.3s infinite;
  animation: animation 2s ease 0.3s infinite;
}

.loading span:nth-of-type(5) {
  -webkit-animation: animation 2s ease 0.4s infinite;
  animation: animation 2s ease 0.4s infinite;
}

.loading span:nth-of-type(6) {
  -webkit-animation: animation 2s ease 0.5s infinite;
  animation: animation 2s ease 0.5s infinite;
}

.loading span:nth-of-type(7) {
  -webkit-animation: animation 2s ease 0.6s infinite;
  animation: animation 2s ease 0.6s infinite;
}

.loading span:nth-of-type(8) {
  -webkit-animation: animation 2s ease 0.7s infinite;
  animation: animation 2s ease 0.6s infinite;
}

.loading span:nth-of-type(9) {
  -webkit-animation: animation 2s ease 0.8s infinite;
  animation: animation 2s ease 0.6s infinite;
}

.loading span:nth-of-type(10) {
  -webkit-animation: animation 2s ease 0.9s infinite;
  animation: animation 2s ease 0.6s infinite;
}

@-webkit-keyframes animation {
  0% {
    margin-top: 0;
  }
  10% {
    margin-top: -1em;
  }
  20% {
    margin-top: 0;
  }
  30% {
    margin-top: 0;
  }
}
@keyframes animation {
  0% {
    margin-top: 0;
  }
  10% {
    margin-top: -1em;
  }
  20% {
    margin-top: 0;
  }
  30% {
    margin-top: 0;
  }
}
/* ------------- スクロールフェードインDown用 ------------- */
.fadeIn {
  animation-fill-mode: both;
  animation-name: fadeIn;
  visibility: visible !important;
}

.fadeIn:nth-child(1) {
  animation-duration: 2s;
}

.fadeIn:nth-child(2) {
  animation-duration: 2.5s;
}

.fadeIn:nth-child(3) {
  animation-duration: 3s;
}

.fadeIn:nth-child(4) {
  animation-duration: 3.5s;
}

.fadeIn:nth-child(5) {
  animation-duration: 4s;
}

.fadeIn:nth-child(6) {
  animation-duration: 4.5s;
}

.fadeIn:nth-child(7) {
  animation-duration: 5s;
}

.fadeIn:nth-child(8) {
  animation-duration: 5.5s;
}

.fadeIn:nth-child(9) {
  animation-duration: 6s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ------------- スクロールフェードインDown用 END ------------- */
/*--------------------------------------
Header
--------------------------------------*/
#header {
  z-index: 999;
  position: relative;
}

.header_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .header_container {
    justify-content: space-between;
  }
}

.header_logo {
  width: 120px;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .header_logo {
    width: 150px;
  }
}

.main_navigation a {
  display: block;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header_sitenavi,
.header_siteinfo_tel,
.header_siteinfo_menu {
    display: none;
  }

  .site-header {
    height: 64px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    z-index: 9999;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.2);
  }

  .header_siteinfo_logo {
    width: calc(80% - 30px);
    max-width: 300px;
    margin: 15px 0 10px;
  }

  /* ハンバーガーメニュー */
  @keyframes mmfadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes mmfadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }
  @keyframes mmslideIn {
    from {
      transform: translateX(15%);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes mmslideOut {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateY(0);
      transform: translateX(100%);
    }
  }
  .is-open .modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .micromodal-slide {
    display: none;
    z-index: 999;
    position: relative;
  }

  .micromodal-slide.is-open {
    display: block;
  }

  .micromodal-slide[aria-hidden=false] .modal__overlay {
    animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }

  .micromodal-slide[aria-hidden=false] .modal__container {
    animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  }

  .micromodal-slide[aria-hidden=true] .modal__overlay {
    animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }

  .micromodal-slide[aria-hidden=true] .modal__container {
    animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  }

  .micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
  }

  .modal__container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    max-width: 500px;
    overflow: scroll;
    background-color: #FEF7F9;
  }

  .modal__content,
.main_navigation {
    height: 100%;
  }

  .main_navigation {
    color: #333;
    padding-top: 64px;
  }
  .main_navigation .main_navigation_li a {
    display: block;
    padding: 20px;
  }
  .main_navigation .main_navigation_li:not(:first-child) {
    border-top: solid 1px #fff;
  }

  .modal__btn,
.modal__close {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0px;
    border: none;
    border-radius: 0;
    background-color: #EB688F;
    padding: 0 20px;
    z-index: 99;
  }
  .modal__btn span,
.modal__close span {
    display: block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: relative;
  }
  .modal__btn span::before, .modal__btn span::after,
.modal__close span::before,
.modal__close span::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: absolute;
    left: 0;
  }
  .modal__btn span::before,
.modal__close span::before {
    top: -8px;
  }
  .modal__btn span::after,
.modal__close span::after {
    bottom: -8px;
  }

  .modal__btn span {
    display: block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: relative;
  }
  .modal__btn span::before, .modal__btn span::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: absolute;
    left: 0;
  }
  .modal__btn span::before {
    top: -8px;
  }
  .modal__btn span::after {
    bottom: -8px;
  }

  .modal__close::before, .modal__close::after {
    content: "";
    display: inline-block;
    height: 2px;
    width: 24px;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .modal__close::before {
    transform: rotate(45deg);
  }
  .modal__close::after {
    transform: rotate(135deg);
  }

  .header_pushup {
    height: 64px;
  }
}
@media (min-width: 768px) {
  .modal__btn,
.modal__close {
    display: none;
  }

  .main_navigation ul {
    display: table;
    border-collapse: collapse;
  }
  .main_navigation li {
    display: table-cell;
    border-left: 1px dashed #EB688F;
    border-right: 1px dashed #EB688F;
  }

  .main_navigation_li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
  }

  .main_navigation_li a::after {
    color: #EB688F;
    display: inline-block;
    font-size: 1.4rem;
  }

  .main_navigation_li.-top {
    display: none;
  }

  .main_navigation_li.-about a::after {
    content: "about";
  }

  .main_navigation_li.-menu a::after {
    content: "menu";
  }

  .main_navigation_li.-reserve a::after {
    content: "reserve";
  }
}
/*--------------------------------------
TOP
--------------------------------------*/
.main_visual_inner {
  background-image: url(/images/top_main.jpg);
  background-size: cover;
  background-position: 55% center;
}

.main_visual_copy {
  padding: 50px 0;
}
.main_visual_copy img {
  width: 65%;
  max-width: 450px;
}

.main_visual_feature {
  padding: 0 30px;
  margin-top: 20px;
}
.main_visual_feature li {
  display: block;
  border: 1px solid #EB688F;
  border-radius: 100px;
  padding: 0.5em;
  text-align: center;
  color: #EB688F;
  font-weight: bold;
}
.main_visual_feature li + li {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .main_visual_inner,
.main_visual_feature {
    background-image: none;
    max-width: 1060px;
    padding: 0 30px;
    margin: 0 auto;
  }

  .main_visual {
    background-image: url(/images/top_main.jpg);
    background-size: cover;
    background-position: center;
    padding: 50px 0 80px;
    position: relative;
  }
  .main_visual::before {
    content: "";
    display: inline-block;
    background-image: url(/images/top_main_bottom.png);
    background-size: 100% 100%;
    background-position: bottom center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: -2px;
    left: 0;
    filter: drop-shadow(0px -2px 0px #FFF);
  }

  .main_visual_copy {
    padding: 0;
  }

  .main_visual_feature {
    margin-top: 20px;
  }
  .main_visual_feature li {
    display: inline-block;
    padding: 0.5em 2em;
    background-color: rgba(255, 255, 255, 0.8);
  }
  .main_visual_feature li + li {
    margin-left: 10px;
  }
}
.top_about {
  margin-top: 20px;
  background-color: #FEF7F9;
  padding: 1px 0 170px;
}
.top_about .containerSS {
  position: relative;
}
.top_about .containerSS::before {
  content: "";
  display: inline-block;
  width: 185px;
  height: 150px;
  background-image: url(/images/top01.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -180px;
  right: 20px;
}

.top_about_title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin: 3em 0 1em;
  color: #72686e;
}

.top_about_list {
  margin-top: 40px;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}
.top_about_list li {
  color: #72686e;
  font-weight: bold;
  padding-left: 1.5em;
  position: relative;
  margin-top: 0.5em;
}
.top_about_list li::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/images/icon_check.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0.25em;
  left: 0;
}

.top_about_text {
  margin-top: 20px;
}

@media (min-width: 481px) {
  .top_about_title {
    font-size: 2.4rem;
  }
}
@media (min-width: 768px) {
  .top_about {
    margin-top: 0;
  }

  .top_about_title {
    font-size: 2.8rem;
  }

  .top_about_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top_about_list::before {
    content: "";
    display: inline-block;
    order: 1;
  }
  .top_about_list::before,
.top_about_list li {
    flex-basis: calc(45% - 20px * 2);
    margin: 10px 20px 0;
  }

  .top_about_text {
    text-align: center;
  }
}
.top_menu {
  margin-top: 20px;
  overflow: hidden;
}

.menu_container {
  margin: -20px -20px 0;
}

.menu_content {
  margin: 40px 20px 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.menu_content .menu_content_title {
  order: 2;
}
.menu_content .menu_content_image {
  order: 1;
}
.menu_content .menu_content_text {
  order: 3;
}

.menu_content_title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  color: #72686e;
}

.menu_content_text {
  margin-top: 5px;
}

.menu_container + .btn {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .menu_container {
    display: flex;
    flex-wrap: wrap;
  }

  .menu_content {
    flex-basis: calc(33.333% - 20px * 2);
  }
}
.top_access {
  background-color: #FFFCED;
  padding: 0 0 60px;
  margin-top: 80px;
  overflow: hidden;
}

.top_access_box_title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.top_access_container {
  margin: 0 -20px 0;
}

.top_access_box {
  margin: 20px 20px 0;
}

@media (min-width: 768px) {
  .top_access_container {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
  }

  .top_access_box {
    flex-basis: calc(50% - 20px * 2);
    margin: 40px 20px 0;
  }
}
/*--------------------------------------
Page
--------------------------------------*/
.page_title {
  background-color: #FEF7F9;
  padding: 2em 30px;
  color: #72686e;
  font-size: 2.6rem;
  text-align: center;
}

.page_content {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page_title {
    font-size: 3.2rem;
  }
}
.about_tsutsumishiki {
  margin-top: 40px;
  border: 1px solid #EB688F;
  border-radius: 10px;
  padding: 20px;
}

.about_tsutsumishiki_title {
  font-size: 2rem;
  font-weight: bold;
  color: #EB688F;
}

.about_tsutsumishiki_container {
  margin: 0 -20px 0;
}

.about_tsutsumishiki_text,
.about_tsutsumishiki_image {
  margin: 10px 20px 0;
}

@media (min-width: 768px) {
  .about_tsutsumishiki {
    padding: 30px;
  }

  .about_tsutsumishiki_container {
    display: flex;
  }

  .about_tsutsumishiki_text {
    flex-basis: calc(66.666% - 20px * 2);
  }

  .about_tsutsumishiki_image {
    flex-basis: calc(33.333% - 20px * 2);
  }
}
.director {
  background-color: #FFFCED;
  padding: 0 0 60px;
  margin-top: 80px;
  overflow: hidden;
}

.director_container {
  margin: -20px -20px 0;
}

.director_image,
.director_textbox {
  margin: 20px 20px 0;
}

.director_text + .director_text {
  margin-top: 1em;
}

.director_name {
  margin-top: 1em;
  text-align: right;
}

.director_career,
.menu_list {
  margin-top: 40px;
  overflow: scroll;
  -webkit-text-size-adjust: 100%;
}
.director_career table,
.menu_list table {
  border-collapse: collapse;
  width: 100%;
}
.director_career th, .director_career td,
.menu_list th,
.menu_list td {
  padding: 0.5em 1em;
  vertical-align: middle;
  border: 2px solid #FFFCED;
}
.director_career th,
.menu_list th {
  background-color: #FFB031;
  color: #fff;
  white-space: nowrap;
}
.director_career td,
.menu_list td {
  background-color: #fff;
}
.director_career .br-css,
.menu_list .br-css {
  color: #f79b0a;
  display: block;
}

@media (min-width: 768px) {
  .director_container {
    display: flex;
    flex-wrap: wrap;
  }

  .director_image {
    flex-basis: calc(33.333% - 20px * 2);
  }

  .director_textbox {
    flex-basis: calc(66.666% - 20px * 2);
  }
}
.menu {
  background-color: #FFFCED;
  padding: 0 0 60px;
  overflow: hidden;
  margin-top: 80px;
}

.menu_list_comment {
  text-align: center;
  margin-top: 0.5em;
}

.menu_list_item {
  white-space: nowrap;
}

.menu_list_fee {
  white-space: nowrap;
  text-align: center;
}

.menu_list_memo {
  background-color: #fff;
  border: 1px solid #FFB031;
  border-radius: 10px;
  padding: 20px;
}
.menu_list_memo p {
  margin-top: 1em;
}
.menu_list_memo strong {
  color: #FFB031;
}

.menu_list_memo_title {
  background-color: #FFB031;
  color: #fff;
  margin: -20px -20px 1em;
  border-radius: 10px 10px 0 0;
  padding: 10px;
  font-size: 1.8rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .menu_list {
    white-space: nowrap;
  }
}
@media (min-width: 481px) {
  .menu_list_comment {
    display: none;
  }
}
/*--------------------------------------
Parts
--------------------------------------*/
.heading01 {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  color: #72686e;
  margin: 60px 0 30px;
  padding-bottom: 1.25em;
  position: relative;
}
.heading01::before {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1em;
  background-image: url(/images/heading01.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left 45%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .heading01 {
    font-size: 3.2rem;
  }
}
.text_marker {
  color: #EB688F;
  font-weight: bold;
}

.btn a {
  display: block;
  text-decoration: none;
  padding: 1em 2em;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
  max-width: 320px;
  margin-right: auto;
  margin-left: auto;
  transition: 0.3s color, 0.3s background-color;
}

.btn.-primary a {
  background-color: #EB688F;
  color: #fff;
}
.btn.-primary a:hover {
  background-color: #d84a75;
}

.btn.-sub a {
  background-color: #FFB031;
  color: #fff;
}
.btn.-sub a:hover {
  background-color: #f79b0a;
}

.btn.-tel a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn.-tel a::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url(/images/icon_tel.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 0.5em;
}

.btn + .btn {
  margin-top: 10px;
}

/*--------------------------------------
Footer
--------------------------------------*/
.footer {
  background-color: #FEF7F9;
  padding: 40px 0;
}

.footer_info_logo {
  width: 120px;
  margin: 0 auto;
}

.footer_info_text {
  margin-top: 20px;
  text-align: center;
}

.footer_info_link {
  margin-top: 40px;
}
.footer_info_link .btn + .btn {
  margin-top: 10px;
}

.footer_calendar {
  margin-top: 40px;
}
.footer_calendar .calendar {
  width: 100%;
  height: 400px;
}

.footer_calendar_title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #72686e;
  text-align: center;
}

.copyright {
  color: #EB688F;
  text-align: center;
  padding: 0.5em 1em;
}

@media (min-width: 768px) {
  .footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer_info {
    flex-basis: 40%;
  }

  .footer_calendar {
    flex-basis: 55%;
  }

  .footer_info_logo {
    width: 150px;
    margin-left: 0;
  }

  .footer_info_text {
    text-align: left;
  }

  .footer_info_link .btn a {
    margin-left: 0;
  }

  .footer_calendar {
    margin-top: 0;
  }
}