@charset "UTF-8";
@import url("http://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
/*======================================
  Reset
======================================*/
html *,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

p {
  word-wrap: break-word;
}

ol, ul {
  list-style: none;
}

a {
  color: #827717;
}

a:link {
  /*color: #2580C0;*/
}

a:visited {
  /*color: #2580C0;*/
}

a:hover {
  /*color: #fa0;*/
}

a:active {
  /*color: #fa0;*/
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

input[type="reset"],
input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
}

/*======================================
  Clearfix
======================================*/
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/*======================================
  Layout
======================================*/
body {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
  color: #000;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
}

.body_container {
  position: relative;
}

@media (min-width: 768px) {
  .body_container {
    overflow: hidden;
    min-width: 1280px;
  }
}

.sp_only {
  display: block;
}

@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.pc_only {
  display: none;
}

@media (min-width: 768px) {
  .pc_only {
    display: block;
  }
}

img.sp_only {
  display: inline-block;
}

@media (min-width: 768px) {
  img.sp_only {
    display: none;
  }
}

img.pc_only {
  display: none;
}

@media (min-width: 768px) {
  img.pc_only {
    display: inline-block;
  }
}

.mt0 {
  margin-top: 0 !important;
}

/*======================================
  Header
======================================*/
.l_header {
  z-index: 100;
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .l_header {
    position: static;
  }
}

.l_header_container {
  padding-top: 6px;
  height: 42px;
}

@media (min-width: 768px) {
  .l_header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 0 auto;
    width: 1120px;
    height: 73px;
  }
}

.l_header_container .header_logo {
  display: block;
  margin: 0 auto;
  width: 103px;
  text-align: center;
}

@media (min-width: 768px) {
  .l_header_container .header_logo {
    margin-left: 0;
  }
}

/*======================================
  Navigation
======================================*/
/* Menu
----------------------------*/
.menu_bg {
  display: none;
  z-index: 998;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.5);
}

.menu {
  z-index: 1000;
  position: fixed;
  top: 14px;
  right: 12px;
  transition: all .2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.menu_button {
  width: 20px;
  height: 18px;
}

.menu_button span {
  display: block;
  margin-bottom: 5px;
  width: 20px;
  height: 1px;
  background: #FFF;
  transition: all .2s;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
}

.menu.active .button_bar_top {
  width: 23px;
  -webkit-transform: translate(0, 0) rotate(40deg);
          transform: translate(0, 0) rotate(40deg);
}

.menu.active .button_bar_middle {
  opacity: 0;
}

.menu.active .button_bar_bottom {
  width: 23px;
  -webkit-transform: translate(0, 3px) rotate(-40deg);
          transform: translate(0, 3px) rotate(-40deg);
}

.l_menu {
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  width: 268px;
  padding: 20px 50px 25px 20px;
  background: #827717;
  -webkit-transform: translateX(270px);
          transform: translateX(270px);
  transition-duration: .4s;
}

.l_menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.l_menu_item:not(:first-child) {
  border-top: 1px solid #FFF;
}

.l_menu_item .l_menu_item {
  padding-left: 12px;
}

.l_menu_link {
  display: block;
  position: relative;
  padding: 1px 0 0 18px;
  color: #FFF;
  line-height: 35px;
  font-size: 1.3rem;
  text-decoration: none;
}

.l_menu_link::before {
  display: block;
  position: absolute;
  content: '';
  border-top: 5px solid transparent;
  border-left: 7px solid #FFF;
  border-bottom: 5px solid transparent;
  top: 50%;
  left: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* Navi
----------------------------*/
.l_nav {
  transition-duration: .4s;
}

@media (min-width: 768px) {
  .l_nav_list {
    display: flex;
    width: 100%;
  }
}

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

.l_nav_link {
  color: #FFF;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.2rem;
  line-height: 3;
  text-decoration: none;
}

.l_nav_link:hover {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .top_media-wrapper {
    position: relative;
    margin: 0 auto;
    width: 1120px;
  }
}
.top_media_sns{
  text-align: center;
  margin-top: 25px;
}
.top_media_sns a:first-of-type {
  margin-right: 25px;
  display: inline-block;
}

@media (min-width: 768px) {
  .top_media_sns {
    position: absolute;
    right: 0;
    top:100px;
    z-index: 1;
    margin-top: 0;
  }
  .top_media_sns a:first-of-type {
    margin-right: 25px;
  }
}


/*======================================
  Breadcrumb
======================================*/
.main_content .bread {
  margin-top: 10px;
  padding-left: 5px;
}

@media (min-width: 768px) {
  .main_content .bread {
    margin-top: 0;
    border-bottom: 1px solid #827717;
  }
}

.main_content .bread_item {
  display: inline;
}

@media (min-width: 768px) {
  .main_content .bread_item {
    display: inline-block;
    padding-bottom: 15px;
    font-size: 1.4rem;
    line-height: 25px;
  }
}

.main_content .bread_item a,
.main_content .bread_item span {
  color: #231815;
  text-decoration: none;
}

@media (min-width: 768px) {
  .main_content .bread_item a:hover {
    text-decoration: underline;
  }
}

/*======================================
  Main contents
======================================*/
.l_main {
  margin-top: 62px;
  border-top: 1px solid #827717;
}

@media (min-width: 768px) {
  .l_main {
    position: relative;
    margin-top: 40px;
    background: url(/img/common/bg01.jpg);
    border-width: 2px;
  }
}

@media (min-width: 768px) {
  .l_main .contact_button {
    position: fixed;
    z-index: 10;
    left: 50%;
    width: 1120px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .l_main .contact_button a {
    display: block;
    position: absolute;
    top: 25px;
    right: -80px;
  }
}

.l_main .contact_button a:hover {
  opacity: .7;
}

.l_main_container {
  position: relative;
  padding: 0 20px;
  font-size: 1rem;
  line-height: 2.1;
}
@media (min-width: 768px) {
  .l_main_container {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    margin: 0 auto;
    padding: 0;
    width: 1120px;
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* Main Content
----------------------------*/
@media (min-width: 768px) {
  .main_content {
    padding-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
    width: 900px;
    background: #FFF;
  }
}

.main_content p {
  padding: 0 5px;
}

.main_content .section {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .main_content .section {
    margin-top: 40px;
  }
}

/*======================================
  Sidebar
======================================*/
@media (min-width: 768px) {
  .sidebar {
    margin-top: 25px;
    margin-bottom: 20px;
    width: 200px;
  }
}

@media (min-width: 768px) {
  .sidebar_container {
    background: #FFF;
    border-bottom: 1px solid #CDC9A2;
  }
}

@media (min-width: 768px) {
  .side_headline {
    background: #CDC9A2;
    color: #FFF;
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 28px;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .side_item:not(:first-child) {
    border-top: 1px solid #CDC9A2;
  }
}

@media (min-width: 768px) {
  .side_item.active, .side_item:hover {
    background: #F2F1E8;
  }
}

@media (min-width: 768px) {
  .side_link {
    display: block;
    padding-left: 1em;
    color: #231815;
    font-size: 1.4rem;
    line-height: 45px;
    text-decoration: none;
  }
}

@media (min-width: 768px) {
  .active .side_link,
  .side_item:hover .side_link {
    color: #827717;
  }
}

/*======================================
  Component
======================================*/
/* Headline
----------------------------*/
.main_content h1, .main_content h2, .main_content h3, .main_content h4 {
  font-weight: normal;
}

.main_content h1 {
  margin-top: 20px;
  position: relative;
  margin-bottom: 37px;
  font-size: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .main_content h1 {
    margin-top: 40px;
    margin-bottom: 90px;
    font-size: 4rem;
  }
}

.main_content h1::after {
  display: block;
  position: absolute;
  content: '';
  left: 50%;
  bottom: -13px;
  width: 87px;
  height: 1px;
  background: #827717;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .main_content h1::after {
    width: 174px;
    bottom: -30px;
  }
}

.main_content h2 {
  margin: 10px 0 15px;
  padding: 14px;
  background: #F2F1E8;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .main_content h2 {
    margin: 40px 0 25px;
    padding: 28px;
    font-size: 2.4rem;
  }
}

.main_content h3 {
  margin: 10px 0 15px;
  padding: 10px 15px;
  background: #F1F1F1;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .main_content h3 {
    margin: 40px 0 25px;
    padding: 15px 22px;
    border-left: 4px solid #78450D;
    font-size: 2.4rem;
  }
}

.main_content h4 {
  margin: 10px 0;
  padding: 0 0 7px 4px;
  border-bottom: 1px solid #78450D;
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .main_content h4 {
    margin: 40px 0 20px;
    border-width: 2px;
    font-size: 2rem;
  }
}

/* List
----------------------------*/
.main_content ul {
  padding: 15px 0 15px 2em;
}

@media (min-width: 768px) {
  .main_content ul {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.main_content ul li {
  position: relative;
  line-height: 2;
}

.main_content ul li::before {
  display: block;
  position: absolute;
  content: '';
  top: 7px;
  left: -14px;
  width: 6px;
  height: 6px;
  border: 1px solid #78450D;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .main_content ul li::before {
    top: 12px;
    width: 7px;
    height: 7px;
    border: 2px solid #78450D;
  }
}

.main_content ol {
  padding: 15px 0 15px 2em;
}

@media (min-width: 768px) {
  .main_content ol {
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

.main_content ol li {
  list-style-type: decimal-leading-zero;
  line-height: 2;
}

@media (min-width: 768px) {
  .main_content a:hover {
    text-decoration: none;
  }
}

/* Media
----------------------------*/
.media {
  margin-top: 10px;
}

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

@media (min-width: 768px) {
  .media_container.right {
    flex-direction: row-reverse;
  }
}

@media (min-width: 768px) {
  .media_container.right.media_container .media_image {
    margin-left: 10px;
    margin-right: 0;
  }
}

.media_image {
  margin-bottom: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .media_image {
    margin-right: 10px;
  }
}

.media_image img {
  display: inline-block;
}

@media (min-width: 768px) {
  .media_body {
    flex: 1;
  }
}

/* Box
----------------------------*/
.quote dl {
  padding: 7px 11px;
  border: 7px solid #F2F1E8;
}

@media (min-width: 768px) {
  .quote dl {
    padding: 15px;
    border-width: 15px;
  }
}

.quote dt {
  font-size: .9rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .quote dt {
    font-size: 1.8rem;
  }
}

.quote dd {
  font-size: .8rem;
}

@media (min-width: 768px) {
  .quote dd {
    font-size: 1.6rem;
  }
}

/* Button
----------------------------*/
/* Table
----------------------------*/
.main_content .table_area {
  overflow-x: scroll;
  -ms-overflow-style: none;
  margin: 20px 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .main_content .table_area {
    overflow-x: initial;
    width: 100%;
  }
}

.main_content table {
  overflow-x: scroll;
  margin: 0 auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 100%;
  border-top: 2px solid #827717;
  border-bottom: 2px solid #827717;
  border-collapse: collapse;
}

@media (min-width: 768px) {
  .main_content table {
    width: 100%;
    min-width: auto;
  }
}

.main_content table:first-of-type tr:first-child th, .main_content table:first-of-type tr:first-child td {
  border-top: none;
}

.main_content table th {
  padding: 8px 20px 8px 5px;
  border-top: 2px solid #CDC9A2;
  font-size: 1.1rem;
  font-weight: normal;
  text-align: left;
}

@media (min-width: 768px) {
  .main_content table th {
    width: 200px;
    font-size: 1.7rem;
  }
}

.main_content table th + th {
  padding: 8px 20px;
  width: auto;
}

.main_content table td {
  padding: 8px 20px;
  border-top: 2px solid #CDC9A2;
}

/* Form
----------------------------*/
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  margin-top: 5px;
  padding: 7px 15px;
  width: 100%;
  border: 2px solid #E0E0E0;
}

@media (min-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    margin-top: 0;
    width: 392px;
  }
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-top: 5px;
  padding: 4px 15px;
  width: 200px;
  background: transparent;
  border: 2px solid #E0E0E0;
  border-radius: 0;
}

@media (min-width: 768px) {
  select {
    margin-top: 0;
    width: 230px;
  }
}

.required {
  color: #F00;
}

.form_container {
  margin-top: 20px;
  padding: 0 10px 40px;
}

.form {
  border-top: 2px solid #827717;
}

.form_group {
  position: relative;
  padding: 15px 13px;
}

@media (min-width: 768px) {
  .form_group {
    padding: 10px 15px;
  }
}

.form_group:not(:first-of-type) {
  border-top: 1px solid #CDC9A2;
}

.form_group .input_type {
  display: inline-block;
  position: absolute;
  top: 15px;
  right: 0;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .form_group .input_type {
    top: 10px;
    left: 595px;
    margin-left: 15px;
    font-size: 1.7rem;
  }
}

@media (min-width: 768px) {
  .form_group fieldset {
    padding: 10px 0;
    overflow: hidden;
  }
}

@media (min-width: 768px) {
  .form_group legend {
    float: left;
  }
}

.form_label {
  display: block;
  color: #455A64;
  font-size: 1.1rem;
  font-weight: bold;
  vertical-align: top;
}

@media (min-width: 768px) {
  .form_label {
    display: inline-block;
    width: 180px;
    font-size: 1.7rem;
  }
}

.form_select_wrapper {
  position: relative;
  width: 200px;
}

@media (min-width: 768px) {
  .form_select_wrapper {
    width: 230px;
    display: inline-block;
  }
}

.form_select_wrapper::after {
  display: block;
  position: absolute;
  content: '';
  border-left: 8px solid transparent;
  border-top: 14px solid #90A4AE;
  border-right: 8px solid transparent;
  top: 11px;
  right: 13px;
}

@media (min-width: 768px) {
  .form_select_wrapper::after {
    right: 13px;
  }
}

@media (min-width: 768px) {
  .form_control_textarea {
    vertical-align: top;
  }
}

.form_check {
  margin-top: 10px;
  display: inline-block;
}

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

.form_check:not(:first-of-type) {
  margin-left: 1.5em;
}

.form_radio_input {
  position: relative;
  top: -2px;
  left: 2px;
  margin-right: .5em;
}

.form_check_label {
  font-weight: bold;
}

.form_button_group {
  padding: 15px 0;
  border-top: 2px solid #827717;
  text-align: center;
}

@media (min-width: 768px) {
  .form_button_group {
    margin-top: 30px;
    padding: 28px 0;
  }
}

.form_button_group p {
  color: #455A64;
}

.form_button {
  display: block;
  margin: 11px auto 0;
  width: 120px;
  background: #FFF;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  letter-spacing: 2px;
  line-height: 33px;
}

@media (min-width: 768px) {
  .form_button {
    display: inline-block;
    width: 193px;
    line-height: 53px;
  }
}

.form_button.submit {
  margin-top: 28px;
  border: 1px solid #999;
  color: #000;
}

.form_button.reset {
  background: #B2B2B2;
  color: #FFF;
}

@media (min-width: 768px) {
  .form_button.reset {
    margin-left: 2em;
  }
}

@media (min-width: 768px) {
  .form_button:hover {
    opacity: .7;
  }
}

/* Modal
----------------------------*/
.modal_area {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.9);
}

.modal_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .modal_wrapper {
    width: auto;
  }
}

.modal_body {
  position: relative;
}

.modal_body img {
  width: 100%;
}

@media (min-width: 768px) {
  .modal_body img {
    width: auto;
    max-width: none;
  }
}

@media (min-width: 768px) {
  .modal_open:hover {
    cursor: pointer;
  }
}

.modal_close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-size: 2em;
  cursor: pointer;
}

/* Others
----------------------------*/
.sending_table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.sending_table dl {
  margin-top: 20px;
  width: 100%;
  font-size: 1.4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .sending_table dl {
    flex: 1;
    margin: 2px;
    width: auto;
  }
}

.sending_table dt {
  padding: 5px;
  background: #ECE1B0;
  font-weight: bold;
}

@media (min-width: 768px) {
  .sending_table dt {
    height: 53px;
  }
}

@media (min-width: 768px) {
  .sending_table dt span {
    display: block;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.sending_table dd {
  padding: 5px;
  background: #F6F1DB;
}

.textbox {
  margin-top: 20px;
  padding: 20px;
  background: #F8F8F8;
  border: 2px solid #D27171;
}

.textbox :first-child {
  margin-top: 0;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

@media (min-width: 768px) {
  .flexbox {
    justify-content: center;
  }
}

.flexbox_item {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
}

.flexbox span {
  font-size: 1.2rem;
}

.figure {
  margin: 20px 0;
}

.figure .caption {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .figure .caption {
    text-align: center;
  }
}

.figure .image {
  margin-bottom: 10px;
  text-align: center;
}

.figure .images {
  text-align: center;
}

/* WordPress post content
----------------------------*/
.post_content {
  padding: 0 0 20px;
}

@media (min-width: 768px) {
  .post_content {
    padding-bottom: 40px;
  }
}

.post_content p:not(:first-child) {
  margin-top: 1em;
}

.post_content strong.large {
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .post_content strong.large {
    font-size: 1.8rem;
  }
}

.post_content strong.extra_large {
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .post_content strong.extra_large {
    font-size: 2.7rem;
  }
}

.post_content strong .strong01 {
  color: #F00;
  font-weight: bold;
}

.post_content strong .strong02 {
  color: #00F;
  font-weight: bold;
}

.post_content strong .strong03 {
  color: #000;
  font-weight: bold;
}

.calendar .post_content th {
  border-bottom: 2px solid #827717;
}

.calendar .post_content td {
  vertical-align: top;
}

.calendar_single .post_content table p {
  padding-left: 0;
  padding-right: 0;
}

.post_content .date {
  text-align: right;
}

.post_content .text_right {
  text-align: right;
}

.post_content .remark {
  display: inline-block;
  margin-left: 1em;
  text-indent: -1em;
}

.post_content .remark + .remark {
  margin-top: 0;
}

.post_content .page_link {
  margin-top: 1em;
  padding: 10px;
  border: 1px solid #CDC9A2;
}

.post_content .page_link p {
  margin-top: 0;
}

.post_content .page_link a:hover {
  text-decoration: none;
}

.post_content .category {
  margin-top: 1em;
}

.post_content .image {
  margin: 10px 0;
  text-align: center;
}

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

.post_content .image img {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post_content .image img:not(:first-child) {
    margin-top: 0;
    margin-left: 20px;
  }
}

.post_content .table_area ul {
  padding-top: 0;
  padding-bottom: 0;
}

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

@media (min-width: 768px) {
  .post_content .meals_menu .menu_wrapper > section {
    margin-top: 20px;
    width: 46%;
  }
}

.post_content .meals_menu .headline04 {
  display: inline-block;
  padding: 10px;
  background: #78450D;
  border-bottom: none;
  color: #FFF;
}

@media (min-width: 768px) {
  .post_content .meals_menu .headline04 {
    margin-top: 0;
  }
}

.post_content .meals_menu .headline04.red {
  background: #F00;
}

.post_content .meals_menu .table_area {
  margin-top: 0;
}

@media (min-width: 768px) {
  .post_content .meals_menu .table_area table {
    margin-left: 0;
  }
}

.post_content .meals_menu .table_area th {
  padding-right: 10px;
  width: auto;
}

.post_content .meals_menu .table_area td {
  padding-left: 10px;
  padding-right: 10px;
  text-align: right;
}

@media (min-width: 768px) {
  .post_content .meals_menu .table_area td {
    min-width: 90px;
  }
}

.post_content .access .table_area th {
  width: auto;
}

.post_content .sitemap .table_area th {
  width: auto;
}

.post_content .gallery {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .post_content .gallery {
    margin-bottom: 30px;
  }
}

.post_content .gallery_image {
  margin-top: 2%;
  width: 48%;
  text-align: center;
}

@media (min-width: 768px) {
  .post_content .gallery_image {
    margin-top: 4%;
    width: 32%;
  }
}

.post_content .gallery_image:nth-child(odd) {
  margin-right: 2%;
}

@media (min-width: 768px) {
  .post_content .gallery_image:nth-child(odd) {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .post_content .gallery_image:not(:nth-child(3n)) {
    margin-right: 1%;
  }
}

/*======================================
  Footer
======================================*/
.l_footer {
  background: #333;
}

.l_footer_container {
  padding: 38px 0 15px;
  color: #FFF;
  text-align: center;
}

@media (min-width: 768px) {
  .l_footer_container {
    margin: 0 auto;
    padding: 50px 0 30px;
    width: 1120px;
  }
}

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

@media (min-width: 768px) {
  .l_footer_nav_list {
    display: flex;
    justify-content: space-between;
    padding: 0 95px;
  }
}

@media (min-width: 768px) {
  .l_footer_nav_list:last-child {
    justify-content: center;
  }
}

.l_footer_nav_list:last-child li + li {
  margin-left: 2em;
}

@media (min-width: 768px) {
  .l_footer_nav_link {
    color: #FFF;
    font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
    font-size: 1.4rem;
    line-height: 3;
    letter-spacing: .2px;
    text-decoration: none;
  }
}

.l_footer_nav_link:hover {
  text-decoration: underline;
}

.l_footer_address {
  position: relative;
  margin-top: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: .9rem;
  line-height: 2;
  letter-spacing: 1.8px;
}

@media (min-width: 768px) {
  .l_footer_address {
    margin-top: 50px;
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.l_footer_address::before {
  display: block;
  position: absolute;
  top: -17px;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #FFF;
  content: '';
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .l_footer_address::before {
    top: -35px;
    width: 36px;
  }
}

.googlemap {
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .googlemap {
    height: 400px;
  }
}

.googlemap iframe {
  width: 100%;
  height: 200px;
}

@media (min-width: 768px) {
  .googlemap iframe {
    height: 400px;
  }
}

.copyright {
  display: block;
  padding: 13px 0;
  background: #1A1A1A;
  color: #FFF;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  line-height: 2;
  text-align: center;
}

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

.footer_media_sns {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 20px;
}
.footer_media_sns img:first-child {
  margin-right: 25px;
  margin-top: 20px;
}

/*======================================
  Page
======================================*/
/* calendar */
.calendar .pager_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .calendar .pager_container {
    font-size: 1.8rem;
  }
}

.calendar .pager_container a {
  display: block;
}

@media (min-width: 768px) {
  .calendar table th {
    width: 220px;
  }
}

/* info */
.info_archive.main_content ul li:not(:first-child) {
  margin-top: 1em;
}

/* plan */
.plan .media_image {
  margin-right: 0;
}

@media (min-width: 768px) {
  .plan .media_image {
    margin-right: 2em;
  }
}

.plan .plan_wrapper:not(:first-child) {
  margin-top: 2em;
}

.plan .remark {
  display: block;
}

@media (min-width: 768px) {
  .plan .page_link {
    padding: 15px;
  }
}

/* index
----------------------------*/
.index .l_header {
  background: none;
}

@media (min-width: 768px) {
  .index .l_header {
    z-index: 100;
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
  }
}

@media (min-width: 768px) {
  .index .contact {
    display: table-cell;
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px;
    width: 268px;
    height: 73px;
    background: #FFF;
    text-align: center;
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  .index .contact_mail_button {
    display: inline-block;
    position: relative;
    margin-top: 5px;
    width: 195px;
    border: 1px solid #F4511E;
  }
}

@media (min-width: 768px) {
  .index .contact_mail_button:hover {
    opacity: 0.6;
  }
}

@media (min-width: 768px) {
  .index .contact_mail_button img {
    display: inline-block;
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  .index .l_nav_item {
    margin-left: 0;
    margin-right: 20px;
  }
}

/* Keyvisual
----------------------------*/
.keyvisual_container {
  position: relative;
  overflow: hidden;
}

.keyvisual .logo {
  position: absolute;
  top: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .keyvisual .logo {
    top: 40%;
  }
}

.keyvisual .logo a {
  display: block;
}

.keyvisual .logo img {
  max-width: initial;
}

.scroll_button {
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: 60px;
  color: #FFF;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-decoration: none;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.scroll_button::before {
  display: block;
  position: absolute;
  top: -180px;
  left: calc(50% - 1px);
  width: 1px;
  height: 174px;
  background: #FFF;
  content: '';
}

/* main
----------------------------*/
.index .l_main {
  margin-top: 0;
  border-top: none;
}

@media (min-width: 768px) {
  .index .l_main {
    padding-top: 50px;
    background: url(/img/common/bg01.jpg);
    border-top: none;
  }
}

.index .l_main_container {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 768px) {
  .index .l_main_container {
    display: block;
    width: 100%;
  }
}

/* status
----------------------------*/
@media (min-width: 768px) {
  .status {
    position: relative;
    margin: 0 auto;
    width: 1120px;
  }
}

.status_container {
  position: absolute;
  bottom: -340px;
  left: 50%;
  width: 92%;
  height: 400px;
  background: #FFF;
  border-radius: 8px 8px 0 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition-duration: .4s;
}

@media (min-width: 768px) {
  .status_container {
    left: auto;
    right: 0;
    bottom: -240px;
    width: 497px;
    height: 290px;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.status_container.open {
  bottom: 0;
}

.status_headline {
  padding: 13px 0;
  text-align: center;
  color: #F4511E;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .status_headline {
    font-size: 1.8rem;
  }
}

.status_headline:hover {
  cursor: pointer;
}

.status_headline span {
  position: relative;
}

.status_headline span::before {
  width: 11px;
  height: 11px;
  border-top: 1px solid #F4511E;
  border-right: 1px solid #F4511E;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: block;
  position: absolute;
  top: 50%;
  left: -1.5em;
  content: '';
}

@media (min-width: 768px) {
  .status_headline span::before {
    width: 17px;
    height: 17px;
    border-top: 2px solid #F4511E;
    border-right: 2px solid #F4511E;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 7px;
  }
}

.open .status_headline span::before {
  top: 12px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (min-width: 768px) {
  .open .status_headline span::before {
    top: -3px;
  }
}

.status_wrapper {
  padding: 0 15px;
}

@media (min-width: 768px) {
  .status_wrapper {
    overflow: hidden;
    padding: 0 25px;
  }
}

.status_reservation {
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  background: #E6E6E6;
  border: 1px solid #999;
  text-align: center;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .status_reservation {
    display: block;
    float: left;
    width: 163px;
  }
}

.status_reservation dt {
  padding: 5px;
  width: 45%;
  color: #333;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: .9rem;
  font-weight: bold;
}

@media (min-width: 768px) {
  .status_reservation dt {
    width: auto;
    font-size: 1.2rem;
    line-height: 45px;
  }
}

.status_reservation dd {
  flex: 1;
  padding: 5px;
  background: #FFF;
  border-left: 1px solid #999;
  color: #29ABE2;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 2rem;
}

@media (min-width: 768px) {
  .status_reservation dd {
    padding-top: 16px;
    padding-bottom: 16px;
    border-top: 1px solid #999;
    border-left: none;
    font-size: 2.8rem;
  }
}

.event {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .event {
    float: right;
    margin-top: 0;
    width: 265px;
  }
}

.event_table {
  width: 100%;
  background: #CDC9A2;
  border-spacing: 1px;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.event_table caption {
  padding: 3px 0 2px;
  background: #CDC9A2;
  color: #FFF;
  font-size: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .event_table caption {
    padding-top: 6px;
    padding-bottom: 4px;
  }
}

.event_table tr > :first-of-type {
  background: #FFEAEA;
  color: #F33;
}

.event_table tr > :last-of-type {
  background: #E5F5FA;
  color: #09C;
}

.event_table th,
.event_table td {
  font-size: 1rem;
  background: #FFF;
  text-align: center;
}

.event_table th {
  font-weight: normal;
}

.event_table td {
  height: 31px;
  vertical-align: top;
}

.event_table thead {
  font-weight: normal;
}

.event_link {
  position: relative;
  display: block;
  height: 31px;
  text-decoration: none;
}

.event_link::after {
  display: block;
  position: absolute;
  content: '';
  bottom: 20%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.event_link.iiyu::after {
  background: #855D34;
}

.event_link.woman::after {
  background: #F33;
}

.event_link.child::after {
  background: #0C3;
}

.event_link.bath::after {
  background: #2196F3;
}

.event_link.man::after {
  background: orange;
}

.event_link.dayoff::after {
  background: #F3C;
}

.event_icon {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .event_icon {
    display: block;
    float: left;
    margin-top: 15px;
    width: 161px;
  }
}

.event_icon li {
  position: relative;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .event_icon li {
    float: left;
    margin-top: 3px;
  }
}

.event_icon li:nth-child(1) {
  width: 27%;
  color: #855D34;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(1) {
    width: auto;
  }
}

.event_icon li:nth-child(2) {
  width: 37%;
  color: #F33;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(2) {
    width: auto;
  }
}

.event_icon li:nth-child(3) {
  width: 36%;
  color: #0C3;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(3) {
    width: auto;
  }
}

.event_icon li:nth-child(4) {
  width: 27%;
  color: #2196F3;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(4) {
    width: auto;
  }
}

.event_icon li:nth-child(5) {
  width: 37%;
  color: #F3C;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(5) {
    width: auto;
  }
}

.event_icon li:nth-child(6) {
  width: auto;
  color: orange;
}

@media (min-width: 768px) {
  .event_icon li:nth-child(6) {
    width: auto;
  }
}

@media (min-width: 768px) {
  .event_icon li:nth-child(even) {
    margin-left: 1em;
  }
}

/* info
----------------------------*/
.content_wrapper {
  background: url(/img/common/bg01.jpg);
}

.info {
  background: #FFF;
  border-top: 1px solid #827717;
  border-bottom: 1px solid #827717;
}

.info_container {
  padding: 20px 10px 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .info_container {
    position: relative;
    margin: 0 auto;
    padding: 40px 30px 40px;
    width: 850px;
    font-size: 1.4rem;
  }
}

.info_list {
  font-size: 1.4em;
}

@media (min-width: 768px) {
  .info_list {
    font-size: 1.2em;
  }
}

.info_list_item:not(:first-child) {
  margin-top: 0.5em;
}

@media (min-width: 768px) {
  .info_list_item:not(:first-child) {
    margin-top: 0.5em;
  }
}

.info_list_item :not(:last-of-type) {
  margin-right: 15px;
}

.info_list_item span {
  display: block;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .info_list_item span {
    display: inline-block;
  }
}

.info_list_item dl {
  display: flex;
}

.info_genre {
  margin-bottom: 20px;
  padding-right: 15px;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .info_genre {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 2rem;
  }
}

.info_category {
  margin-left: 1em;
}

@media (min-width: 768px) {
  .info_category {
    margin-left: 0;
  }
}

.info_category a {
  color: #F4511E;
  text-decoration: none;
}

.info_category a:hover {
  text-decoration: underline;
}

.info_title {
  margin-left: 1em;
}

@media (min-width: 768px) {
  .info_title {
    display: inline;
    margin-left: 2em;
  }
}

.info_title a {
  color: #231815;
  text-decoration: none;
}

.info_title a:hover {
  text-decoration: none;
  color:#F84B07;
}

.info_list_button {
  margin-top: 30px;
  line-height: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .info_list_button {
    position: absolute;
    top: 28px;
    right: 40px;
    margin-top: 0;
  }
}

.info_list_button a {
  display: inline-block;
  position: relative;
  color: #F4511E;
  font-size: 1rem;
  text-decoration: none;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .info_list_button a {
    font-size: 1.4rem;
  }
}

.info_list_button a::before, .info_list_button a::after {
  display: block;
  position: absolute;
  content: '';
  top: 50%;
  width: 0;
  height: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media (min-width: 768px) {
  .info_list_button a::before, .info_list_button a::after {
    display: block;
    position: absolute;
    content: '';
    width: 8;
    height: 8;
  }
}

.info_list_button a::before {
  border-top: 5px solid transparent;
  border-left: 3px solid #F4511E;
  border-bottom: 5px solid transparent;
  right: -7px;
}

@media (min-width: 768px) {
  .info_list_button a::before {
    border-top: 8px solid transparent;
    border-left: 5px solid #F4511E;
    border-bottom: 8px solid transparent;
    right: -14px;
  }
}

.info_list_button a::after {
  border-top: 5px solid transparent;
  border-left: 3px solid #FFF;
  border-bottom: 5px solid transparent;
  right: -6px;
}

@media (min-width: 768px) {
  .info_list_button a::after {
    border-top: 8px solid transparent;
    border-left: 5px solid #FFF;
    border-bottom: 8px solid transparent;
    right: -13px;
  }
}

.info_list_button a:hover {
  text-decoration: underline;
}

/* lead
----------------------------*/
.lead {
  position: relative;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .lead {
    margin: 0 auto;
    padding-bottom: 40px;
    max-width: 1280px;
  }
}

.lead::before, .lead::after {
  display: block;
  position: absolute;
  content: '';
}

.lead::before {
  top: 9px;
  right: 0;
  width: 78px;
  height: 80px;
  background: url(/img/index/bg01_a_sp.jpg) no-repeat;
  background-size: 78px 80px;
}

@media (min-width: 768px) {
  .lead::before {
    top: 40px;
    right: -20px;
    width: 383px;
    height: 243px;
    background: url(/img/index/bg01_a.jpg) no-repeat;
    background-size: 383px 243px;
  }
}

.lead::after {
  left: 0;
  bottom: 20px;
  width: 195px;
  height: 88px;
  background: url(/img/index/bg01_b_sp.jpg) no-repeat;
  background-size: 195px 88px;
}

@media (min-width: 768px) {
  .lead::after {
    left: -30px;
    bottom: 40px;
    width: 399px;
    height: 242px;
    background: url(/img/index/bg01_b.jpg) no-repeat;
    background-size: 399px 242px;
  }
}

.lead_text {
  z-index: 1;
  position: relative;
  margin: 0 auto;
  padding: 38px 0;
  width: 246px;
  text-align: center;
}

@media (min-width: 768px) {
  .lead_text {
    padding: 97px 0 60px;
    width: 545px;
  }
}

/* intro
----------------------------*/
.intro {
  background: #FFF;
}

.intro_slide_area {
  margin: 0 auto;
  padding: 20px 0 25px;
  width: 240px;
}

@media (min-width: 768px) {
  .intro_slide_area {
    padding-top: 76px;
    width: 1120px;
  }
}

.intro_slide .slick-prev,
.intro_slide .slick-next {
  width: 14px;
  height: 14px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

@media (min-width: 768px) {
  .intro_slide .slick-prev,
  .intro_slide .slick-next {
    width: 28px;
    height: 28px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.intro_slide .slick-prev::before,
.intro_slide .slick-next::before {
  display: none;
}

.intro_slide .slick-prev {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

@media (min-width: 768px) {
  .intro_slide .slick-prev {
    left: -70px;
  }
}

.intro_slide .slick-next {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  .intro_slide .slick-next {
    right: -70px;
  }
}

.intro_slide_item {
  text-align: center;
}

@media (min-width: 768px) {
  .intro_slide_item.slick-slide {
    display: flex;
  }
}

@media (min-width: 768px) {
  .intro_body {
    width: 100%;
  }
}

.intro_title {
  margin: 20px 0;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .intro_title {
    font-size: 2.4rem;
  }
}

.intro_text {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: .9rem;
  letter-spacing: 2px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .intro_text {
    font-size: 1.8rem;
  }
}

.intro_link_button {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 15px;
  border: 1px solid #999;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: .7rem;
  letter-spacing: 2px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .intro_link_button {
    padding: 12px 27px 9px;
    font-size: 1.4rem;
  }
}

.intro_link_button:hover {
  text-decoration: underline;
}

/* facility
----------------------------*/
@media (min-width: 768px) {
  .facility {
    padding-top: 50px;
    background: #FFF;
  }
}

.facility_container {
  padding: 30px 25px 35px;
}

@media (min-width: 768px) {
  .facility_container {
    margin: 0 auto;
    padding: 66px 0;
    width: 1120px;
  }
}

.facility_headline {
  margin-bottom: 24px;
  color: #603813;
  font-size: 1.5rem;
  letter-spacing: 2px;
  text-align: center;
}

@media (min-width: 768px) {
  .facility_headline {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}

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

.facility_list :first-child {
  margin-top: 0;
}

.facility_item {
  position: relative;
  margin-top: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .facility_item {
    margin-top: 0;
    width: 320px;
  }
}

.facility_title {
  margin: 27px 0 18px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .facility_title {
    margin: 40px 0 20px;
    font-size: 2.7rem;
  }
}

.facility_body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: left;
}

@media (min-width: 768px) {
  .facility_body {
    padding: 0 15px;
    font-size: 1.4rem;
  }
}

.facility_link_button {
  display: block;
  position: relative;
  margin: 40px auto 0;
  padding: 8px 0;
  width: 95px;
  border: 1px solid #999;
  color: #000;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .facility_link_button {
    padding: 11px 0;
    width: 136px;
    font-size: 1.4rem;
  }
}

.facility_link_button:hover {
  text-decoration: underline;
}

.facility_link_button::before {
  display: block;
  position: absolute;
  top: -22px;
  left: 50%;
  width: 25px;
  height: 1px;
  background: #999;
  content: '';
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .facility_link_button::before {
    width: 36px;
  }
}

/* news
----------------------------*/
.news {
  background: url(/img/common/bg02.jpg);
}

.news_container {
  padding: 37px 27px;
}

@media (min-width: 768px) {
  .news_container {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 55px 0 60px 100px;
    width: 1120px;
  }
}

.news_headline {
  margin-bottom: 24px;
  color: #FFF;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .news_headline {
    margin-bottom: 42px;
    font-size: 2.4rem;
  }
}

.news_col:not(:first-child) {
  margin-top: 27px;
}

@media (min-width: 768px) {
  .news_col:not(:first-child) {
    width: 373px;
  }
}

.news_list {
  color: #FFF;
}

.news_list :first-child {
  margin-top: 0;
}

.news_item {
  margin-top: 15px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1.1rem;
  letter-spacing: 1.2px;
}

@media (min-width: 768px) {
  .news_item {
    font-size: 1.4rem;
  }
}

.news_item dl {
  display: flex;
}

@media (min-width: 768px) {
  .news_item dl {
    display: initial;
  }
}

@media (min-width: 768px) {
  .news_item dt {
    display: inline-block;
  }
}

.news_item dd {
  padding-left: 8px;
}

@media (min-width: 768px) {
  .news_item dd {
    display: inline-block;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .news_item dd p {
    padding-left: 15px;
    display: inline-block;
  }
}

.news_category a {
  color: #FFF;
  text-decoration: none;
}

.news_category a:hover {
  text-decoration: underline;
}

.news_link {
  color: #FFF;
}

.news_link:hover {
  text-decoration: none;
}

.news_list_button {
  display: block;
  margin: 23px auto 0;
  padding: 10px 0;
  width: 91px;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: .9rem;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 768px) {
  .news_list_button {
    margin-top: 35px;
    width: 136px;
    font-size: 1.4rem;
  }
}

.news_list_button:hover {
  text-decoration: underline;
}

.news .contact_area {
  padding: 16px 25px;
  border: 1px solid #FFF;
  text-align: center;
}

.news .contact_area img.sp_only {
  display: inline-block;
}

@media (min-width: 768px) {
  .news .contact_area img.sp_only {
    display: none;
  }
}

@media (min-width: 768px) {
  .news .contact_area img.pc_only {
    display: inline-block;
  }
}

.news .contact_tel {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #FFF;
}

.news .contact_link_button {
  display: block;
  padding: 20px 0;
  background: #FFF;
}

.news .contact_link_button:hover {
  opacity: .7;
}

.news .contact_link_button img {
  vertical-align: middle;
}

.news .banner_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news .banner_link {
  margin-top: 20px;
  width: 48%;
}

.news .banner_link:hover {
  opacity: .7;
}

.news .banner_link:last-child {
  -webkit-transform: translateX(52%);
          transform: translateX(52%);
}

.news .banner_link img {
  width: 100%;
}

/* mobile
----------------------------*/
.mobile {
  background-image:url(../../img/common/bg_mobile_sp.jpg);
  background-size: cover;
  background-position: center;
  color: #fff;
}

@media (min-width: 768px) {
  .mobile {
    background-image:url(../../img/common/bg_mobile.jpg);
    background-size: cover;
  
  }
}

.mobile_container {
  padding: 37px 27px;
  
}

@media (min-width: 768px) {
  .mobile_container {
    margin: 0 auto;
    padding: 100px 0 86px;
    width: 1120px;
    overflow: hidden;
  }
}

.mobile_wrapper {
  padding: 16px 25px;
}
@media (min-width: 768px) {
  .mobile_wrapper {
    padding: 50px 100px;
  }
}

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

}

.mobile_headline {
  margin-bottom: 20px;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-align: center;
}

@media (min-width: 768px) {
  .mobile_headline {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
}

.mobile_text {
  margin-bottom: 20px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

@media (min-width: 768px) {
  .mobile_text {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}
.mobile_text_wrapper{
  position: relative;
  text-align: center;
  margin-bottom: 5px;
}

.mobile_text_wrapper::before,
.mobile_text_wrapper::after{
  position: absolute;
  display: inline-block;
  content: "";
  background:#fff;
  width: 2px;
  height: 30px;
  margin: 0 1em;
  margin-top: -1em;
  vertical-align: middle;
}
.mobile_text_wrapper::before {
  transform: rotate(-35deg);
  top: 20px;
  left: 0;
}
 
.mobile_text_wrapper::after {
  transform: rotate(35deg);
  top: 20px;
  right: 0;

}

@media (min-width: 768px) {
  .mobile_text_wrapper::before {
    top: 30px;
    left: 15px;
  }
   
  .mobile_text_wrapper::after {
    top: 30px;  
    right: 15px;
  }
}

.mobile_sns_line{
  margin-bottom: 20px;
  text-align: center;
}

.mobile_sns_insta{
  text-align: center;
}

.mobile_link_button {
  display: block;
  padding: 6px 0;
  width: 100%;
  color: #FFF;
  font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
  font-size: .7rem;
  text-decoration: none;
  background-color: #F84B07;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .mobile_link_button {
    padding: 12px 0;
    width: 350px;
    font-size: 1.4rem;
  }
}

.mobile_link_button:hover {
  text-decoration: underline;
}

.mobile_link_banner:hover {
  opacity: .7;
}

.mobile_link_banner img.sp_only {
  display: inline-block;
}

@media (min-width: 768px) {
  .mobile_link_banner img.sp_only {
    display: none;
  }
}

@media (min-width: 768px) {
  .mobile_link_banner img.pc_only {
    display: inline-block;
  }
}

.mobile_wrapper{
  border: 1px solid #fff;
  width: 100%;
}

@media (min-width: 768px) {
  .mobile_wrapper{
    width: 1020px;
    margin: 0 auto;
  }
}

.mobile_wrapper:first-of-type{
  margin-bottom: 30px;
}


/*# sourceMappingURL=style.css.map */



/* 20191129 add */

.keyvisual .keyvisual_container .opening-hours {
  position: absolute;
  left: 50%;
  width: 85%;
  color: #FFF;
  padding: 5px;
  font-size: 1.3rem;
  bottom: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border:1px solid;
  text-align: center;
  line-height: 2;
  background-color:rgba(130,119,23,0.8);
}

@media (min-width: 768px) {
  .keyvisual .keyvisual_container .opening-hours {
    width:auto;
    bottom: 80px;
    font-size: 1.7rem;
    padding: 20px;
  }
}
.scroll_button::before {
  top: -100px;
  height: 100px;
}


