@charset "utf-8";
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 {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

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

body {
  font-family: Avenir, Helvetica, Arial, Verdana, "游ゴシック", Yu Gothic, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  font-size: 14px;
  color: #38381d;
  width: 100%;
}

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

ol, ul {
  list-style: none;
}

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

input, select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

.f_right {
  float: right;
}

.f_left {
  float: left;
}

.bold {
  font-weight: bold;
}

.block_ph {
  display: block;
}

.w100 {
  width: 100%;
}

.clearfix:after {
  content: '';
  clear: both;
  display: block;
}

.center_ph {
  display: block;
  margin: auto;
}

a {
  background: transparent;
  margin: 0;
  padding: 0;
  text-decoration: none;
  vertical-align: baseline;
}

a.alph {
  display: block;
  transition: all 0.4s linear;
}

a.alph:hover {
  opacity: 0.6;
}

/* アニメーション用 */

.movey {
  -webkit-transform: translate(0, 30px);
  transform: translate(0, 30px);
  transition: all 0.8s ease-out;
}

.movey_on {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition-delay: 0.3s;
}

.movexl {
  -webkit-transform: translate(-30px, 0);
  transform: translate(-30px, 0);
  transition: all 0.8s ease-out;
}

.movexl_on {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.movexr {
  -webkit-transform: translate(30px, 0);
  transform: translate(30px, 0);
  transition: all 0.8s ease-out;
}

.movexr_on {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  transition-delay: 0.6s;
}

.fade {
  transition: all 2s ease-out;
}

/* ===================================
    ローディング画面
------------------------------------*/

.top_page {
  overflow-y: scroll;
}

#loader_wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 120;
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  text-align: center;
  color: #fff;
  z-index: 121;
}

/* ===================================
    ヘッダー
------------------------------------*/

/* スライダー部分 */

#photo_area {
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  background: -moz-linear-gradient(top, rgba(60, 40, 0, 0.7) 0%, rgba(60, 40, 0, 0) 30%, rgba(60, 40, 0, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(60, 40, 0, 0.7) 0%, rgba(60, 40, 0, 0) 30%, rgba(60, 40, 0, 0) 100%);
  background: linear-gradient(to bottom, rgba(60, 40, 0, 0.7) 0%, rgba(60, 40, 0, 0) 30%, rgba(60, 40, 0, 0) 100%);
  overflow: hidden;
}

header {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.top_nav_area {
  position: absolute;
  top: 0;
  left: 50%;
  width: 980px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

nav {
  padding: 82px 20px 0;
}

.left_nav {
  float: left;
}

.right_nav {
  float: right;
}

.left_nav li, .right_nav li {
  float: left;
}

.left_nav li a {
  margin-right: 70px;
}

.right_nav li a {
  margin-left: 70px;
}

nav a {
  padding: 0 0 8px;
  color: #fff;
  position: relative;
  display: inline-block;
  transition: .3s;
}

nav a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 2px;
  background: #879f61;
  transition: .3s;
}

nav a:hover:after {
  width: 100%;
}

.logo_top01 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 20px 0 0;
}

.top_bottom_area {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9)
}

.news_ticker {
  float: left;
  width: calc(100% - 345px);
  position: relative;
  padding: 5px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.news_ticker h2 {
  line-height: 40px;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
}

.news_ticker ul {
  margin-left: 40px;
  width: calc(100% - 190px);
  height: 40px;
  position: relative;
}

.news_ticker ul li {
  line-height: 40px;
  font-size: 1rem;
}

.news_ticker ul li a {
  color: #38381d;
}

.news_ticker ul li a:hover {
  color: #879f61;
}

.top_btn_area {
  float: right;
}

.top_btn_area2 {
  position: absolute;
  top: 0;
  right: 0;
}

.top_btn_area li, .top_btn_area2 li {
  float: left;
}

.top_btn_area .fair_btn a, .top_btn_area2 .fair_btn a {
  display: block;
  padding: 18px 42px;
  background: #97ae71 url(../img/arrow01.png) 15px center no-repeat;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.15em;
  transition: all 0.3s linear;
}

.top_btn_area .fair_btn a:hover, .top_btn_area2 .fair_btn a:hover {
  background: #879f61 url(../img/arrow01.png) 15px center no-repeat;
}

.sns_area a {
  display: block;
  padding: 16px 12px;
}

li.sns_area:not(:nth-child(3)) {
  background: #fff url(../img/sns_line.jpg) right center no-repeat;
}

li.sns_area:nth-child(3) {
  background: #fff;
}

/* トップページスクロール後ヘッダー */

.top_header_after {
  position: fixed;
  top: -100px;
  left: 0;
  width: 100%;
  height: 92px;
  background: #fff;
  z-index: 999;
}

.top_header_after .top_btn_area {
  position: absolute;
  top: 0;
  right: 0;
}

.top_header_after_inr {
  position: relative;
  width: 980px;
  margin: auto;
}

.top_header_after_inr li a {
  color: #38381d;
  font-size: 13px;
  transition: all 0.3s linear;
}

.top_header_after_inr li a:hover {
  color: #879f61;
}

.top_header_after_inr ul {
  padding: 60px 20px 0;
}

.logo_top02 {
  position: absolute;
  top: 9px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 78px;
}

/* 下層ページヘッダー */

.under_page {
  margin-top: 100px;
}

.top_header {
  margin-top: -100px;
  width: 100%;
  background: #fff;
  z-index: 50;
}

.top_header_inr {
  position: relative;
  width: 980px;
  margin: auto;
}

.header_nav {
  display: table;
  table-layout: fixed;
  width: 980px;
  padding: 105px 0 0;
  text-align: center;
}

.header_nav li {
  display: table-cell;
}

.header_nav li a {
  display: block;
  padding: 20px 0;
  color: #38381d;
  font-size: 13px;
}

.header_nav li a:hover {
  color: #879f61;
}

.header_nav li.ttl a {
  font-size: 14px;
  font-weight: 700;
  color: #97ae71;
  font-family: 'Open Sans', sans-serif;
  background: #f2f3eb;
  transition: all 0.3s linear;
}

.header_nav li.ttl a:hover {
  background: #eaecde;
}

.header_nav li.other_ttl a {
  font-weight: bold;
  color: #97ae71;
}

.logo_top03 {
  position: absolute;
  top: 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 78px;
}

.fixed {
  position: fixed;
  top: 0;
  margin-top: 0;
  transition: all 0.3s linear;
}

.fixed .header_nav {
  padding: 40px 0 0;
}

.fixed .logo_top03 {
  top: 8px;
  width: 46px;
}

/* ===================================
    コンテンツ
------------------------------------*/

main {
  width: 100%;
}

.main_visual {
  position: relative;
  width: 100%;
  height: 280px;
  background: #f6f6f6;
  overflow: hidden;
}

.main_big_visual {
  position: relative;
  width: 100%;
  height: 465px;
  background: #f6f6f6;
  overflow: hidden;
}

.main_visual img, .main_big_visual img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.content_inner {
  width: 100%;
    max-width: 980px;
  margin: auto;
}

.title01 {
  margin: 6px 0 38px;
  font-size: 18px;
  color: #707161;
}

.title01 span {
  position: relative;
  display: block;
  padding: 10px 0 0 55px;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.15em
}

.title01 span:after {
  position: absolute;
  top: 16px;
  left: 0;
  width: 38px;
  height: 1px;
  display: block;
  content: "";
  background: #d5d9c6;
}

.title02 {
  position: relative;
  margin: 50px 0;
  height: 20px;
  overflow: hidden;
}

.title02 span {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 600px;
  background: #fff;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-align: center;
  font-weight: 600;
}

.title02:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background: #d5d9c6;
}

.title03 {
  position: relative;
  width: 110px;
  margin: 85px auto 15px;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.2em;
}

.title03:before {
  position: absolute;
  left: -38px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.title03:after {
  position: absolute;
  right: -38px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.title04 {
  font-size: 20px;
  color: #707161;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: 'Open Sans', sans-serif;
}

.title05 {
  display: inline-block;
  position: relative;
  margin: 13px auto;
  padding: 0 5px;
  color: #879f61;
  font-size: 12px;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.15em;
}

.title05:before {
  position: absolute;
  left: -38px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.title05:after {
  position: absolute;
  right: -38px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.title06 {
  margin: 30px 0;
  font-size: 18px;
  color: #707161;
  line-height: 1.4em;
  text-align: center;
}

.bnr_area {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 140px;
  text-align: center;
}

.bnr_area img {
  margin: 10px 0;
    width: 100%;
}

/* ===================================
    トップページ
------------------------------------*/

/* イントロダクション */

.intro_wrap {
  width: 980px;
  margin: 0 auto;
  padding: 140px 56px 100px;
}

.intro_txt {
  float: right;
  width: 550px;
}

.intro_txt p {
  line-height: 2em;
}

/* ウェディング＆レストランリンク */

.wed_res_link_area {
  position: relative;
  width: 100%;
  padding: 40px;
}

.wed_pharea {
  float: left;
  width: 50%;
}

.res_pharea {
  float: right;
  margin-top: 126px;
  width: 50%;
}

.wed_pharea img, .res_pharea img {
  margin-bottom: 16px;
  width: 100%;
}

.wed_res_link_area .logo_pharea {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* フェアRSS */

.fair_wrap {
  margin: 60px 0 140px;
  width: 100%;
}

.fair_area {
  width: 100%;
  max-width: 980px;
  margin: auto;
}

.fair_area li {
  float: left;
  width: 22.9%;
  margin-right: 2.8%;
}

.fair_area li:last-child {
  margin-right: 0;
}

.fair_ph {
  width: 100%;
  padding-top: 100%;
}

.fair_area li a {
  color: #707161;
}

.fair_area h3 {
  margin: 6px 0;
  line-height: 1.4em;
}

.fair_area p {
  font-size: 13px;
  line-height: 1.6em;
}

.fair_area_btn {
  margin: 38px 0 0;
  padding: 13px 0;
  background: #f7f8f6;
}

.wed_topbtn_area {
  margin: 38px 0 0;
  padding: 13px 0;
}

.fair_area_btn a, .wed_topbtn_area a {
  display: block;
  width: 140px;
  margin: auto;
  padding: 12px 0;
  background: #fff;
  border: 1px solid #bdc9aa;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.2em;
  transition: all 0.3s linear;
}

.fair_area_btn a:hover, .wed_topbtn_area a:hover {
  background: #97ae71;
  border: 1px solid #97ae71;
  color: #fff;
}

/* グループ店舗一覧 */

.groups_wrap {
  margin: 100px 0;
}

.groups_area {
  width: 100%;
  max-width: 980px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}

.groups_area li {
  margin-right: 21px;
  margin-bottom: 10px;
}

.groups_area li img {
  width: 224px;
}

.groups_area li:last-child {
  margin-right: 0;
}

.groups_area h3 {
  margin: 10px 0 0;
  text-align: center;
  color: #38381d;
  font-weight: normal;
}

.groups_area h3 span {
  display: block;
  margin-bottom: 5px;
  color: #879f61;
  font-size: 12px;
}

.groups_area p {
  margin-top: 5px;
  text-align: center;
  color: #707161;
  font-size: 12px;
}

/* ===================================
    ボンジュールフランス
------------------------------------*/

.bonjour_wrap {
  position: relative;
  margin: 40px 40px 113px;
  padding: 70px 100px;
  border: 1px solid #d5d9c6;
}

.accordion_ph {
  max-height: 422px;
  overflow: hidden;
}
.accordion_ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event_txt img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
}

@media screen and (max-width:1259px) {
  .bonjour_wrap {
    margin: 0;
    padding: 70px 0;
    border-top: 1px solid #d5d9c6;
    border-bottom: 1px solid #d5d9c6;
    border-left: none;
    border-right: none;
  }
}

.bonjour_img {
  width: 980px;
  margin: auto;
}

.bonjour_wrap h2 {
  position: relative;
  margin: 50px 0;
  padding: 6px 0 29px;
  font-weight: normal;
  color: #707161;
  text-align: center;
}

.bonjour_wrap h2 span {
  margin: 0 0 6px;
  display: block;
  color: #879f61;
  font-size: 20px;
  letter-spacing: 0.2em;
}

.bonjour_wrap h2:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  content: "";
  width: 34px;
  height: 1px;
  background: #d5d9c6;
}

.bonjour_area, .bonjour_area2 {
  width: 980px;
  margin: auto;
}

.bonjour_area li {
  float: left;
  width: 224px;
  margin-right: 28px;
  padding: 16px 0;
}

.bonjour_area li:nth-child(4n) {
  margin-right: 0;
}

.bonjour_area2 li {
  float: left;
  width: 308px;
  margin-right: 28px;
  padding: 23px 0;
}

.bonjour_area2 li:nth-child(3n) {
  margin-right: 0;
}

.bonjour_area li h3 {
  margin: 6px 0;
  color: #707161;
  line-height: 1.4em;
  height: 39px;
  overflow: hidden;
}

.bonjour_area li p.txt {
  color: #707161;
  font-size: 13px;
  line-height: 1.6em;
  height: 63px;
  overflow: hidden;
}

.bonjour_area li p.date {
  margin: 6px 0 0;
  color: #b1b2a9;
  font-size: 12px;
}

.bonjour_area li p.blog_source, .bonjour_area2 li p.blog_source {
  margin: 6px 0 0;
  height: 30px;
  color: #b1b2a9;
  font-size: 12px;
  line-height: 1.2em;
  text-decoration: underline;
}

.bonjour_area .bonjour_ph {
  width: 224px;
  height: 150px;
  overflow: hidden;
}

.bonjour_area2 li h3 {
  margin: 14px 0;
  color: #707161;
  line-height: 1.4em;
  height: 39px;
  overflow: hidden;
}

.bonjour_area2 li p.txt {
  height: 125px;
  color: #707161;
  font-size: 13px;
  line-height: 1.6em;
  overflow: hidden;
}

.bonjour_area2 li p.date {
  margin: 16px 0 0;
  color: #b1b2a9;
  font-size: 12px;
}

.bonjour_area2 .bonjour_ph {
  width: 308px;
  height: 216px;
  overflow: hidden;
}

.bonjour_area li a, .bonjour_area2 li a {
  transition: all 0.3s linear;
}

.bonjour_area li a:hover, .bonjour_area2 li a:hover {
  opacity: 0.6;
}

.bonjour_btn {
  position: absolute;
  left: 50%;
  bottom: -42px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 84px;
  height: 84px;
  border: 1px solid #d5d9c6;
  border-radius: 50%;
  text-align: center;
  color: #879f61;
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  padding-top: 36px;
  background: #fff;
  letter-spacing: 0.15em;
  transition: all 0.3s linear;
}

.bonjour_btn:hover {
  color: #9fb47e;
}

/* ===================================
    レストラン
------------------------------------*/

.res_intro {
  width: 520px;
  margin: 65px auto;
  line-height: 1.9em;
}

.res_inr {
  padding: 80px 82px 6px;
}

.chef_txt {
  margin: 50px 0 0;
  width: 360px;
  text-align: center;
}

.chef_txt h4 {
  margin: 0 0 34px;
  font-size: 16px;
}

.chef_txt h4 span {
  font-size: 14px;
}

.chef_txt p {
  text-align: left;
  line-height: 1.9em;
}

.menu_link {
  padding: 100px 82px 0;
}

.menu_link_txt {
  padding-top: 80px;
  width: 408px;
  text-align: center;
  color: #879f61;
}

.menu_link_txt span {
  display: block;
  margin-bottom: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
}

.menu_wrap {
  margin: 70px 0 140px;
  text-align: center;
}

.menu_wrap .menu_title {
  margin: 8px 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 25px;
  font-weight: 700;
  font-style: italic;
  color: #707161;
}

.menu_wrap .main_title {
  margin: 8px 0;
  font-size: 22px;
  color: #707161;
  line-height: 1.4;
}

.menu_wrap .main_title span {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  color: #879f61;
  font-weight: normal;
}

.menu_wrap h5 {
  width: 1000px;
  margin: 0 auto 20px;
  padding: 90px 0 15px;
  border-bottom: 1px solid #879f61;
  font-size: 20px;
  font-weight: bold;
  color: #707161;
}

.menu_wrap .jp_txt {
  margin: 13px 0 25px;
  color: #879f61;
}

.menu_wrap dt {
  margin: 50px 0 8px;
  font-size: 16px;
  font-weight: bold;
  color: #879f61;
}

.menu_wrap dd {
  line-height: 1.8em;
}

.menu_res_txt {
  display: inline-block;
  padding: 3px 10px;
  background: #879f61;
  color: #fff;
}

.menu_txt {
  margin: 30px 0;
  line-height: 1.8em;
}

.menu_txt2 {
  margin: 30px auto;
  width: 540px;
  text-align: left;
  font-size: 12px;
  line-height: 1.8em;
}

.menu_img {
  display: block;
  margin: 30px auto 0;
}

.menu_calender {
  margin: 10px 0;
}

.menu_btn {
  display: block;
  width: 360px;
  margin: 40px auto 0;
  padding: 20px 0;
  background: #fff;
  font-weight: bold;
  color: #879f61;
  text-align: center;
  transition: all 0.3s linear;
  border: 1px solid #97ae71;
}

.menu_btn:hover {
  color: #fff;
  background: #97ae71;
}

.menu_detail {
  width: 1000px;
  margin: auto;
}

.menu_detail dl {
  display: inline-block;
  vertical-align: top;
  width: 300px;
}

.menu_detail dl.drink {
  width: 200px;
}

.menu_detail dl span {
  font-size: 12px;
}

.party_contact {
  width: 700px;
  margin: 20px auto;
  padding: 30px;
  background: #f7f8f6;
}

.menu_tel {
  margin: 10px 0 20px;
  font-size: 26px;
  font-weight: bold;
  color: #879f61;
    display: block;
}

.menu_btn2 {
  display: block;
  width: 260px;
  margin: 10px auto;
  padding: 13px;
  background: #fff;
  font-weight: bold;
  color: #879f61;
  text-align: center;
  transition: all 0.3s linear;
  border: 1px solid #97ae71;
}

.menu_btn2:hover {
  color: #fff;
  background: #97ae71;
}


/* ===================================
    ウェディング
------------------------------------*/

.wed_slide {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
}

.wed_intro_txt {
  margin: 49px 0;
  text-align: center;
  line-height: 2em;
}

.wed_txt {
    width: 100%;
  max-width: 560px;
  margin: 50px auto;
  line-height: 2em;
}

.wed_3slink_b {
  margin: 90px 0 152px;
}

.wed_3slink_b li {
  float: left;
  margin-right: 25px;
}

.wed_3slink_b li:nth-child(2) {
  margin-top: 42px;
}

.wed_3slink_b li:last-child {
  margin-right: 0;
}

.wed_3slink_s {
    width: 100%;
  max-width: 768px;
  margin: 140px auto 0;
}

.wed_3slink_s li {
  float: left;
  width: 230px;
  margin: 0 13px;
  text-align: center;
}

/* インスタフィード */

.insta_list {
  width: 100%;
    max-width: 980px;
  margin: 0 auto -28px;
}

.instagram_subtitle {
  margin: 60px 0 30px;
  color: #707161;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: 'Open Sans', sans-serif;
}

.insta_list li {
  float: left;
  margin: 0 28px 28px 0;
}

.insta_list li:nth-child(4n) {
  margin: 0 0 28px 0;
}

.insta_list li a {
  display: block;
  width: 224px;
  height: 224px;
  overflow: hidden;
}

/* スペシャリスト */

.spcialist_txt {
  width: 618px;
}

.spcialist_txt h4 {
  margin: 8px 0 25px;
  ;
  color: #6b6b62;
  font-size: 13px;
  font-weight: normal;
}

.spcialist_txt h4 span {
  display: inline-block;
  margin-right: 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
  color: #879f61;
}

.specialist_degree {
  color: #879f61;
}

.specialist_detail {
  line-height: 1.8em;
}

.spcialist_link {
  display: block;
  margin: 12px 0 0;
  text-align: right;
}

/* よくある質問 */

.faq_area {
  padding: 70px 44px;
  border: 1px solid #e5e5e5;
}

.faq_area dt {
  padding: 5px 0 5px 33px;
  color: #879f61;
  font-weight: bold;
  font-size: 15px;
  background: url(../img/wedding/q_mark.png) left center no-repeat;
}

.faq_area dd {
  margin: 0 0 43px;
  padding: 10px 63px 43px;
  border-bottom: 1px dotted #c1c1c1;
  line-height: 2em;
}

.faq_area dd:last-child {
  margin: 0;
  padding: 10px 63px 0;
  border-bottom: none;
}

.faq_area dd a {
  color: #1c57b0;
  text-decoration: underline;
}

/* 空間 */

.w_space_area {
  margin-bottom: 130px;
}

.w_space_area img {
  display: block;
  margin: 0 auto 18px;
}

.w_space_area h3 {
  margin: 30px 0;
  text-align: center;
  color: #879f61;
  font-weight: normal;
}

.w_space_area h3 span {
  display: block;
  margin-bottom: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  font-style: italic;
}

/* 人財 */

.staff_wrap {
  margin: 124px 0;
  border-top: 1px solid #e5e5e5;
}

/* 時間 */

.stylelist_area {
  margin: 0 0 200px;
}

.stylelist_area li {
  float: left;
  margin-right: 7px;
  margin-bottom: 7px;
}

.stylelist_area li:nth-child(3n) {
  margin-right: 0;
}

.stylelist_area li a {
  position: relative;
  display: block;
  width: 322px;
  height: 215px;
  overflow: hidden;
}

.stylelist_caption {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: rgba(75, 65, 55, 0.4);
  transition: all 0.5s linear;
  opacity: 0;
}

.stylelist_area li a:hover .stylelist_caption {
  opacity: 1;
}

.stylelist_caption_inner {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

.stlelist_title {
  font-size: 18px;
}

.stlelist_title_sub {
  display: inline-block;
  position: relative;
  margin: 7px auto 16px;
  padding: 0 5px;
  font-size: 13px;
  text-align: center;
}

.stlelist_title_sub:before {
  position: absolute;
  left: -16px;
  top: 50%;
  content: '';
  width: 16px;
  height: 1px;
  background: #d5d9c6;
}

.stlelist_title_sub:after {
  position: absolute;
  right: -16px;
  top: 50%;
  content: '';
  width: 16px;
  height: 1px;
  background: #d5d9c6;
}

.stlelist_name {
  font-size: 11px;
}

.style_detail_area {
  text-align: center;
  margin: 20px auto;
}

.style_detail_area h3 {
  margin: 10px 0;
  color: #707161;
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.style_detail_subtitle {
  margin: 0 0 15px;
}

.style_slider_nev {
  margin: 5px 0 170px;
}

.style_slider_nev li {
  width: 192px;
  margin-right: 5px;
}

.style_slider_nev li img {
  width: 100%;
}

/* ムービー */

.movies {
  width: 100%;
  margin: 30px auto;
  max-width: 980px;
}

.movies ul {
  margin: 0 0 30px;
}

.movies h3 {
  margin: 25px 0;
  text-align: center;
  font-size: 16px;
  color: #707161;
  line-height: 1.5em;
}

.movies ul li {
  float: left;
    margin-bottom: 10px;
  margin-right: 28px;
  text-align: center;
}
.movies ul li a {
    display: block;
    width: 308px;
    height:180px;
    padding: 0 0 28px;
    overflow: hidden;
}
.movies ul li h4 {
    height: 0;
}
.movies ul li h4 span {
    display: block;
}

.movies ul li:nth-child(3n) {
  margin-right: 0;
}

.movies ul li img {
  display: block;
  width: 100%;
}

/* モーダルウィンドウ用 */

#mdOverlay {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 1500;
  background: #000;
  display: none;
}

#mdWindow {
  margin-top: -252px;
  margin-left: -448px;
  top: 50%;
  left: 50%;
  width: 896px;
  height: 504px;
  position: fixed;
  z-index: 1501;
  background: #fff;
  display: none;
}

#mdWindow>.mdClose {
  top: -15px;
  right: -15px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
  background: #757575;
  border-radius: 30px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
  box-shadow: 0 0 3px 0 #000;
}

.btnArea {
  text-align: center;
  margin: 20px 0;
}

#modalInclude {
  display: none;
}

#contWrap {
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

#contWrap h2 {
  margin-bottom: 20px;
  padding: 20px 0;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  border-bottom: #333 1px dotted;
}

#contWrap img {
  height: 300px;
}

/* ===================================
    フォトプラン
------------------------------------*/
.photo_plan_wrap h3 {
  font-size: 20px;
  color: #707161;
  line-height: 1.8;
  text-align: center;
}

.photo_plan_wrap h3 span {
  font-size: 24px;
}

.photo_plan_wrap h4 {
  width: 800px;
  margin: 70px auto 0;
  padding: 40px 0 0;
  font-size: 18px;
  color: #707161;
  text-align: center;
}

.photo_plan_wrap dl {
  width: 560px;
  margin: 40px auto 20px;
}

.photo_plan_wrap dt {
  padding: 15px 0;
  clear: left;
  float: left;
  width: 40%;
  border-bottom: 1px dotted #ccc;
}

.photo_plan_wrap dd {
  padding: 15px 0;
  margin: 0 0 0 40%;
  border-bottom: 1px dotted #ccc;
  text-align: right;
}

/* ===================================
    コンセプト
------------------------------------*/

.concept_wrap h3 {
  margin: 70px 0 40px;
  font-size: 23px;
  text-align: center;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.concept_wrap p {
  line-height: 2em;
}

.concept_intro {
  text-align: center;
  width: 100%;
}

.concept_s {
  position: relative;
  margin: 70px 0;
  height: 484px;
}

.concept_stxt01 {
  position: absolute;
  top: 90px;
  right: 0;
  width: 591px;
  height: 394px;
  border: 1px solid #dfdfdf;
  padding: 100px 40px 0 240px;
}

.concept_stxt02 {
  position: absolute;
  top: 90px;
  left: 0;
  width: 591px;
  height: 394px;
  border: 1px solid #dfdfdf;
  padding: 100px 240px 0 40px;
}

.concept_stitle01 {
  padding-bottom: 8px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.3em;
  border-bottom: 1px solid #879f61;
}

.concept_stitle02 {
  margin: 74px 0 43px;
  font-size: 24px;
  font-weight: normal;
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.3em;
  text-align: center;
}

.concept_txt {
  width: 700px;
  margin: auto;
}

/* ===================================
    アクセス
------------------------------------*/

.access_txt {
  text-align: center;
  line-height: 2em;
}

.access_txt dt {
  margin: 42px 0 0;
  font-weight: bold;
}

iframe.map {
  margin: 60px 0;
  width: 100%;
  height: 580px;
}
iframe {
  max-width: 100%;
}

/* ===================================
    提携企業
------------------------------------*/

.partner_area {
  width: 816px;
  margin: auto;
}

.partner_txt {
  text-align: center;
  line-height: 2em;
}

.partner_area h3 {
  margin: 97px 0 23px;
  text-align: center;
  color: #879f61;
  font-size: 20px;
}

.partner_list {
  border: 1px solid #d5d9c6;
}

.partner_list li {
  padding: 23px 72px;
  border-bottom: 1px solid #d5d9c6;
  background: url(../img/partner/partner_mark.jpg) 10px center no-repeat;
}

.partner_list li:last-child {
  border-bottom: none;
}

.special_area {
  position: relative;
  background: #f2f3eb;
}

.special_txt_wrap {
  width: 408px;
}

.special_txt {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 408px;
  text-align: center;
}

.special_txt h4 {
  margin-bottom: 26px;
  padding-bottom: 26px;
  color: #879f61;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  background: url(../img/partner/border.jpg) center bottom no-repeat;
}

.special_txt p {
  margin: 5px 0;
  line-height: 1.4em;
}

.special_txt p span {
  font-size: 13px;
}

.partner_area .note {
  margin: 25px 0;
  font-size: 13px;
  line-height: 1.6em;
}

.partner_btn {
  margin: 25px auto;
  padding: 18px 0;
  width: 260px;
  display: block;
  text-align: center;
  color: #879f61;
  font-weight: bold;
  border: 1px solid #97ae71;
  transition: all 0.3s linear;
}

.partner_btn:hover {
  color: #fff;
  background: #97ae71
}

/* ===================================
    プライバシーポリシー
------------------------------------*/

.privacy_wrap {
  padding: 0 141px;
}

.privacy_wrap h3 {
  margin: 54px 0 40px;
  text-align: center;
  color: #879f61;
  font-size: 20px;
}

.privacy_wrap h4 {
  margin: 38px 0 13px;
  padding: 7px;
  font-size: 20px;
  font-size: 15px;
  color: #879f61;
  background: #f2f3eb;
}

.privacy_wrap p {
  line-height: 1.8em;
}

/* ===================================
    館内案内
------------------------------------*/

.space_wrap {
  text-align: center;
}

.space_wrap h3 {
  margin: 80px 0 0;
  color: #707161;
  font-size: 18px;
}

.space_wrap img {
  display: block;
  margin: 20px 0;
}

.space_wrap li {
  float: left;
  width: 470px;
}

.space_wrap li:not(:nth-child(2n)) {
  margin-right: 40px;
}

.space_txt1 {
  width: 577px;
  margin: auto;
  line-height: 2em;
  text-align: left;
}

.space_txt2 {
  line-height: 2em;
  text-align: left;
}

/* ===================================
    イベント
------------------------------------*/

.event_area {
  margin: 22px auto;
    max-width: 960px;
}

.event_subtitle_wrap {
  text-align: center;
}

.event_subtitle {
  display: inline-block;
  position: relative;
  margin: 20px auto 0;
  padding: 0 5px;
  color: #879f61;
  font-size: 12px;
  text-align: center;
  line-height: 1.4em;
}

.event_subtitle span {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.event_subtitle:before {
  position: absolute;
  left: -46px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.event_subtitle:after {
  position: absolute;
  right: -46px;
  top: 50%;
  content: '';
  width: 38px;
  height: 1px;
  background: #d5d9c6;
}

.event_date {
   text-align: center;
}
.ac_dt {
    margin-top: 50px;
}
.ac_dt:first-of-type {
    margin-top: 0;
}

.event_txt {
  margin: 20px 0;
  text-align: center;
  line-height: 2em;
  word-break: break-all;
}

.event_txt_under {
  margin: 20px auto 80px;
  text-align: center;
  line-height: 2em;
}

.event_txt_under2 {
  width: 460px;
  margin: 20px auto 80px;
  line-height: 2em;
}

.event_detail {
  width: 460px;
  margin: 45px auto;
  border-top: 1px solid #d5d9c6;
  border-bottom: 1px solid #d5d9c6;
}

.event_detail dl {
  margin: 20px 0;
  line-height: 1.4em;
}

.event_detail dt {
  margin-top: 10px;
  float: left;
  clear: left;
  width: 80px;
  font-weight: bold;
}

.event_detail dd {
  margin-top: 10px;
  float: left;
  width: 380px;
}

.event_detail p {
  line-height: 1.6em;
  margin: 20px 0;
}

.event_btn {
  display: block;
  width: 260px;
  margin: auto;
  padding: 13px;
  background: #97ae71;
  font-weight: bold;
  color: #fff;
  text-align: center;
  transition: all 0.3s linear;
  border: 1px solid #97ae71;
}

.event_btn:hover {
  color: #879f61;
  background: #fff;
}

.event_txt_end {
  margin: 20px 0;
  text-align: center;
  line-height: 2em;
  color: #879f61;
}

/* ===================================
    問い合わせ
------------------------------------*/

.res_contact_area {
  margin: 190px auto 60px;
  padding: 0 0 60px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #ebece6;
}

.wed_contact_area {
  margin: 80px auto 60px;
  padding: 0 0 60px;
  text-align: center;
  font-size: 13px;
  border-bottom: 1px solid #ebece6;
}

.res_contact_area h3, .wed_contact_area h3 {
  margin: 8px 0;
  color: #879f61;
  font-size: 16px;
}

.res_contact_area p, .wed_contact_area p {
  line-height: 1.8em;
}

.inquiry_btn {
  display: block;
  margin: 16px auto;
  padding: 13px 0;
  width: 300px;
  background: #97ae71;
  color: #fff;
  font-weight: bold;
}

.res_contact_area .tel, .wed_contact_area .tel {
  margin-top: 10px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1em;
}

.res_contact_area .tel span, .wed_contact_area .tel span {
  font-size: 24px;
}

.wed_btn_area {
  margin: 20px 0 40px;
  text-align: center;
}

.wed_btn_area li {
  display: inline-block;
}

.wed_btn_area li a {
  display: block;
  margin: 0 3px;
  padding: 13px 0;
  width: 146px;
  background: #97ae71;
  color: #fff;
  font-weight: bold;
}

.faq_btn {
  display: block;
  margin: 16px auto;
  padding: 13px 0;
  width: 200px;
  background: #fff;
  font-weight: bold;
  color: #879f61;
  border: 1px solid #97ae71;
}

/* ===================================
    フッター
------------------------------------*/

/* トップへ戻るボタン */

#topback {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #97ae71;
  border-radius: 20px;
  transition: all 0.3s linear;
}

#topback:hover {
  background: #879f61;
}

.footer_inr01 {
  width: 980px;
  margin: 64px auto 44px;
}

.footer_nav {
  margin: 0 0 72px;
  text-align: center;
}

.footer_nav li {
  margin: 0 24px;
  display: inline-block;
}

.footer_nav li a {
  position: relative;
  padding: 0 17px;
  color: #38381d;
}

.footer_nav li a:after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  content: '';
  margin-top: -4px;
  border-top: solid 1px #8d8d81;
  border-right: solid 1px #8d8d81;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer_logo {
  text-align: center;
  font-size: 13px;
  color: #707161;
}

.footer_logo p span {
  padding: 12px 0 6px;
  display: block;
  font-weight: bold;
  font-size: 14px;
}

.footer_inr02 {
  padding: 26px 0 0;
  background: #f2f3eb;
}

.footer_otherlogo {
  margin-bottom: 15px;
  text-align: center;
  font-size: 0;
}

.footer_otherlogo li {
  display: inline-block;
  margin-right: 15px;
}

.footer_otherlogo li:last-child {
  margin-right: 0;
}

small {
  display: block;
  margin-top: 27px;
  padding: 15px 0;
  text-align: center;
  font-size: 11px;
  color: #707161;
  border-top: 1px solid #d5d9c6;
}

/* ADDED BY THOMAS */

#wrap {
    overflow: hidden;
}

.mobile {
    display: none;
}
.top_photo01 {
    background-image: url(../img/top/photo01.jpg);
    background-size: 100%;
    width: 224px;
    height: 518px;
}

.contact_tel_btn {
    margin: 15px auto;
    padding: 13px 0;
    width: 230px;
    background: #97ae71 url(../img/contact_tel_mark.png) 10% center no-repeat;
    background-size: 16px 22px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    display: block;
    transition: all 0.3s linear;
}
.contact_tel_btn:hover {
    background: #879f61 url(../img/contact_tel_mark.png) 10% center no-repeat;
    background-size: 16px 22px;
}

.contact_inquiry_btn {
    margin: 15px auto;
    padding: 8px 0;
    width: 230px;
    border: 1px solid #97ae71;
    font-size: 14px;
    color: #879f61;
    line-height: 1.2;
    display: block;
    transition: all 0.3s linear;
}
.contact_inquiry_btn:hover {
    background: #879f61;
    color: #fff; 
}

.accordion_title .ac_btn {
    display: none;
}
.w100 {
    max-width: 980px
}
.restaurant_img_wrap .w100 {
    max-width: none
}
.space_txt {
    margin: 20px;
    line-height: 2em;
}
.accordion_detail dl {
    width: 300px;
    display: inline-block;
    vertical-align: top;
} 
.accordion_detail dd {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}
dd.fixed_height {
    height: 350px;
}
.price_tag {
    display: block;
    margin-top: auto;
}

.special_title {
  margin-bottom: 5px;
  color: #879f61;
  font-size: 12px;
  font-weight: normal;
}

.special_title span {
  display: block;
  margin-bottom: 4px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.special_title_sub {
  font-size: 11px;
  color: #707161;
  line-height: 1.2em;
}

#mwedBlogPartsArea {
    max-width: 100vw;
}

.overlay_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
div.close {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
div.close:before,div.close:after {
  display: block;
  width: 100%;
  height: 2px;
  content: '';
  background: #000;
}
div.close:before {
  transform: rotateZ(45deg);
  margin-top: 15px;
}
div.close:after {
  transform: rotateZ(-45deg);
  margin-top: -2px;
}
.overlay_content {
  position: relative;
  width: 100vw;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  padding: 50px;
  margin: auto;
  background-color: #fff;
  text-align: center;
  border: solid;
  border-image: linear-gradient(to right, #c6de9f 0%,#97ae71 100%);
  border-image-slice: 1;
  border-width: 5px;  
  line-height: 1.5em;
}
.overlay_content h1 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
}
.overlay_content p {
  text-align: left;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
}
.overlay_content a {
  color: #000;
  text-decoration: underline;
}
.overlay_content .CTA, #mdWindow .CTA {
  padding: 8px 35px;
  margin-bottom: 20px;
  display: inline-block;
  background: #97ae71;
  color: #fff;
  border: solid 1px #97ae71;
  transition: ease-out 0.3s;
  text-decoration: none;
}
#mdWindow .CTA {
  margin-top: 30px;
  line-height: 1.5em;
}
.overlay_content a:hover {
  text-decoration: none;
}
.overlay_content .CTA:hover, #mdWindow .CTA:hover {
  background-color: #fff;
  color: #97ae71;
}
.overlay_logo {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
.overlay_logo img {
  width: 40px;
  display: inline-block;
  margin: 0 5px;
}
.overlay_content iframe {
  width: 100%;
  max-width: 496px;
  margin: 0 auto 25px;
  height: 40vw;
  max-height: 279px;
}

.wed_intro_txt iframe {
  max-width: 100%;
  margin: auto;
  max-height: 65vw;
}

.title_bg {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  padding: 0 30px;
  font-size: 1.15em;
  line-height: 2.5em;
  color: #fff;
  background: #97ae71;
  border-radius: 5px;
}
.title_bg + p, .qa + p {
  padding-top: 25px;
  margin-top: 0;
  text-align: left;
}
.illustration {
  padding: 25px;
  border: solid 1px #97ae71;
  margin: 80px auto 0;
  border-radius: 5px;
  max-width: 960px;
}
.illustration img {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 20px auto;
}
.illustration p {
  text-align: left;
}
.hightlight {
  color: #97ae71;
  display: inline;
}
.qa {
  font-weight: bold;
  color: #000;
  line-height: 1.5em;
  max-width: 980px;
  margin: 40px auto 0;
  padding: 15px 0;
}
.notice {
  line-height: 2em;;
}

.announce {
  display: block;
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.5);
  padding: 10px 0;
  line-height: 1.5em;
  color: #000;
  z-index: 100;
}
.announce h3::after {
  content: '';
  position: absolute;
  right: -70px;
  top: 1em;
  width: 20px;
  height: 20px;
  border-right: solid 2px #97ae71;
  border-top: solid 2px #97ae71;
  transform: rotate(45deg);
}
.announce h3 {
  display: inline-block;
  position: relative;
  font-size: 1.5em;
}
.cta-wrap {
  text-align: center;
  margin: 8em 0 4em;
}
.cta {
  display: inline-block;
  padding: 1em 5em;
  background-color: transparent;
  border: solid 1px #97ae71 ;
  color: #97ae71;
  transition: ease-out 0.4s;
}
.cta:hover {
  background-color: #97ae71;
  color: #fff;
}

.banner-wrap {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  max-width: 800px;
  min-width: 300px;
  background-color: #ffffffcc;
  padding: 2.5rem 1rem;
  display: flex;
  flex-direction: column;
  z-index: 101;
  align-items: center;
  box-shadow: 4px -4px 4px 0px #00000022;
  transition: transform 0.25s ease-out;
}
.banner-link {
  color: #000;
}
.close {
  margin-top: 1rem;
  text-decoration: underline;
  font-size: 0.8rem;
  padding: 0.5em 0.5em 0 0.5em;
  cursor: pointer;
}

@media screen and (min-width: 860px) {
    .ac_dd, .faq_area dd, .accordion_detail {
        display: block !important;
    }
    .one-fourth {
        width: 200px;
    }
    .specialist_wrap img {
        float: left;
        width: auto;
    }
    .staff_area.large .accordion_title, .special_detail {
        float: right;
        max-width: 618px;
    }
    .accordion_title, .staff_detail {
        max-width: 470px;
        float: right;
    }
    .staff_area .accordion_title {
        max-width: 470px;
    }
    .accordion_title {
        max-width: 618px;
        width: 100%;
    }
    .event_area .accordion_title, .menu_ac_wrap .accordion_title {
        max-width: none;
        float: none;
    }
    .staff_area .accordion_title {
        overflow: hidden;
    }
    .special_detail {
        line-height: 1.8em;
        margin-top: 25px;
    }
    .spcialist_link img {
        display: inline-block;
        float: none;
    }
    .special_back {
      margin: 24px 0;
      padding: 44px;
      border: 1px solid #e5e5e5;
    }
    .staff_accordion {
        max-width: 980px;
        margin: auto;
    }
    .staff_accordion .w100 {
        width: auto;
    }
    .staff_area .accordion_ph, .staff_area:nth-child(even) .staff_detail {
        float: left;
    }
    .staff_area:nth-child(even) .accordion_ph {
        float: right;
    }
    .staff_area:nth-child(even) .accordion_title, .staff_area:nth-child(even) .special_detail {
        float: left;
    }
    .staff_title {
        font-size: 18px;
        color: #707161;
        position: relative;
        border: none;
    }
    .white_bg {
        background: #fff;
        display: inline-block;
        padding: 0 20px 0 0;
    }
    .staff_title:before {
      position: absolute;
      content: '';
      left: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 470px;
      height: 1px;
      background: #d5d9c6;
        z-index: -1;
    }
    .staff_area.large .staff_title:before {
        display: none;
        border: solid 1px #d5d9c6;
    }
    .staff_detail > div {
        line-height: 2em;
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        height: 316px;
    }
    .staff_area {
      padding: 48px 0;
      border-bottom: 1px solid #e5e5e5;
      overflow: hidden;
    }

    .staff_area_inner {
      width: 980px;
      margin: auto;
    }

    .staff_title {
      width: 620px;
        padding: 14px 0;
        margin: 0 0 23px;
    }

    .large .staff_title {
      font-size: 20px;
      color: #879f61;
      border-bottom: 1px solid #d5d9c6;
    }

    .large .staff_title span {
      font-size: 15px;
      font-weight: normal;
    }

    .special_detail {
      line-height: 2em;
    }

    .staff_subph {
      position: absolute;
      width: 470px;
      right: 0;
      bottom: 0;
    }
    .event_wrap {
        margin: 22px 0;
        padding: 50px 40px 74px;
        border: 1px solid #e5e5e5;
    }
    .event_area h4 {
      margin: 20px 0 36px;
      font-size: 20px;
      text-align: center;
      color: #707161;
      line-height: 1.4;
    }

    .event_area h4 span {
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
      color: #879f61;
    }
}

/* MOBILE VERSION */


@media screen and (max-width: 860px) {
    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
      margin: 0;
      padding: 0;
      background: transparent;
      border: 0;
      outline: 0;
      font-size: 1em;
    }

    html {
      box-sizing: border-box;
    }

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

    body {
      font-family: Avenir, Helvetica, Arial, Verdana, "游ゴシック", Yu Gothic, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
      line-height: 1;
      font-size: 13px;
      color: #38381d;
    }

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

    ul {
      list-style: none;
    }

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

    img {
      font-size: 0;
      line-height: 0;
      vertical-align: top;
        max-width: 100%;
    }

    .f_right {
      float: right;
    }

    .f_left {
      float: left;
    }

    .bold {
      font-weight: bold;
    }

    .block_ph {
      display: block;
    }

    .w100 {
      width: 100%;
    }

    .center_ph {
      display: block;
      margin: auto;
    }

    .t_center {
      text-align: center;
    }

    .clearfix:after {
      content: '';
      clear: both;
      display: block;
    }

    a {
      margin: 0;
      padding: 0;
      display: block;
      text-decoration: none;
    }

    a.under {
      text-decoration: underline;
    }

    a:link {}

    a:visited {}

    a:hover {}

    a:active {}

    /* ===================================
        ヘッダー
    ------------------------------------*/

    /* トップページヘッダー */

    #photo_area {
      width: 100%;
      position: relative;
      height: 75vh;
    }

    .top_logo_area {
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 33%;
      padding-bottom: 60px;
      z-index: 100;
    }

    /* 下層ヘッダー */

    .header_logo_under {
      display: block;
      margin: auto;
      padding: 7px 0;
      width: 58px;
    }

    .header_title {
      padding: 6px 0;
      width: 100%;
      background: #f2f3eb;
      border-top: 1px solid #d6deca;
      color: #879f61;
      font-family: 'Open Sans', sans-serif;
      font-size: 12px;
      text-align: center;
      font-weight: 600;
    }

    /* ===================================
        コンテンツ
    ------------------------------------*/

    .title01 {
      margin: 6px 0;
      font-size: 14px;
      color: #707161;
    }

    .title01 span {
      position: relative;
      display: block;
      padding: 5px 0 0 45px;
      color: #879f61;
      font-family: 'Open Sans', sans-serif;
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 0.15em
    }

    .title01 span:after {
      position: absolute;
      top: 10px;
      left: 0;
      width: 38px;
      height: 1px;
      display: block;
      content: "";
      background: #d5d9c6;
    }

    .title02 {
      position: relative;
      margin: 25px 0;
      height: 20px;
      overflow: hidden;
    }

    .title02 span {
      display: block;
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 60%;
      background: #fff;
      color: #879f61;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      letter-spacing: 0.1em;
      text-align: center;
      font-weight: 600;
    }

    .title02:before {
      position: absolute;
      top: 9px;
      left: 0;
      display: block;
      content: "";
      width: 100%;
      height: 1px;
      background: #d5d9c6;
    }

    .title03 {
      display: block;
      position: relative;
      margin: 7px auto;
      padding: 0 5px;
      color: #879f61;
      font-size: 12px;
      text-align: center;
      font-weight: normal;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 0.15em;
    }

    .title03:before {
      position: absolute;
      left: -38px;
      top: 50%;
      content: '';
      width: 38px;
      height: 1px;
      background: #d5d9c6;
    }

    .title03:after {
      position: absolute;
      right: -38px;
      top: 50%;
      content: '';
      width: 38px;
      height: 1px;
      background: #d5d9c6;
    }

    .title04 {
      margin: 0 0 34px;
      font-size: 16px;
      color: #707161;
      text-align: center;
      letter-spacing: 0.15em;
      font-family: 'Open Sans', sans-serif;
    }

    .title05 {
      display: inline-block;
      position: relative;
      margin: 7px auto;
      padding: 0 5px;
      color: #879f61;
      font-size: 11px;
      text-align: center;
      font-weight: normal;
      letter-spacing: 0.15em;
    }

    .title05:before {
      position: absolute;
      left: -38px;
      top: 50%;
      content: '';
      width: 38px;
      height: 1px;
      background: #d5d9c6;
    }

    .title05:after {
      position: absolute;
      right: -38px;
      top: 50%;
      content: '';
      width: 38px;
      height: 1px;
      background: #d5d9c6;
    }

    .title06 {
      margin: 47px 0 22px;
      text-align: center;
      font-size: 14px;
      color: #707161;
      line-height: 1.4em;
    }

    .content_wrap_m10 {
      margin: 2.6%;
      width: 94.8%;
    }

    .content_wrap_m20 {
      margin: 5.3%;
      width: 89.4%;
    }

    .main_txt {
      line-height: 2.0em;
    }

    .bnr_area {
      display: block;
      margin: 10px 0;
      padding: 0 10px;
    }


    /* ===================================
        アコーディオン共通（FAQ以外）
    ------------------------------------*/

    .accordion {
      border-bottom: 1px solid #e5e5e5;
    }

    .accordion dt {
      width: 100%;
      display: table;
      padding: 3% 1.3%;
      border-top: 1px solid #e5e5e5;
      background: url(../img/restaurant/menu/mark_down.png) 98% center no-repeat;
      background-size: 16px 11px;
    }

    .accordion dt.active {
      background: url(../img/restaurant/menu/mark_up.png) 98% center no-repeat;
      background-size: 16px 11px;
    }

    .accordion_ph {
      display: table-cell;
      width: 26%;
    }

    .accordion_title {
      display: table-cell;
      width: 74%;
      padding-left: 12px;
      vertical-align: middle;
    }

    .accordion dd {
      padding: 5.3%;
      background: #f7f8f6;
    }

    /* ===================================
        トップページ
    ------------------------------------*/

    /* ニュース一覧 */
    
    .news_area h2 {
      padding: 0 1em;
      color: #879f61;
      font-family: 'Open Sans', sans-serif;
      text-align: center;
      font-weight: 600;
      font-size: 16px;
    }

    .news_area ul {
      border-top: 1px solid #e5e5e5;
    }

    .news_area ul li {
      position: relative;
      padding: 15px 11% 15px 5.3%;
      border-bottom: 1px solid #e5e5e5;
      color: #38381d;
      line-height: 1.4;
    }

    .news_area li span {
      display: block;
      color: #879f61;
      font-size: 10px;
      font-weight: bold;
    }

    .news_area li span.title {
      font-size: 13px;
      margin-bottom: 4px;
    }

    .news_area li a:after {
      position: absolute;
      top: 50%;
      right: 5%;
      width: 10px;
      height: 10px;
      content: '';
      margin-top: -4px;
      border-top: solid 1px #aeaeae;
      border-right: solid 1px #aeaeae;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    .news_area li p {
      position: relative;
      padding: 15px 5.3%;
      border-bottom: 1px solid #e5e5e5;
      color: #38381d;
      line-height: 1.4;
    }

    .news_area li p span {
      display: block;
      margin-bottom: 4px;
      color: #879f61;
      font-weight: bold;
    }

    .intro_title {
      margin: 30px 0 25px;
    }

    .wedding_link {
      float: left;
      width: 50%;
    }

    .restaurant_link {
      float: right;
      width: 50%;
      margin: 20px 0 0;
      text-align: right;
    }

    /* フェア一覧 */

    .fair_area {
      margin: 86px 0 60px;
    }

    .fair_area_inner {
      padding: 2.6% 2.6% 13px;
      background: #f7f8f6;
    }

    .fair_list {
      padding: 5.3%;
      background: #fff;
    }

    .fair_list li {
      float: left;
      width: 48%;
      margin-right: 4%;
      margin-bottom: 4%;
    }

    .fair_list li:nth-child(2n) {
      margin-right: 0;
    }

    .fair_list li a {
      display: block;
      position: relative;
      width: 100%;
      height: auto;
    }

    .fair_ph {
      padding: 100% 0 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .fair_list li h3 {
      margin: 5px 0;
      font-size: 12px;
      color: #707161;
      line-height: 1.4em;
    }

    .fair_list li p {
      font-size: 12px;
      color: #707161;
      line-height: 1.4em;
    }

    .more_btn {
      display: block;
      margin: 13px auto 0;
      padding: 10px 0;
      width: 140px;
      background: #fff;
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      color: #879f61;
      text-align: center;
      letter-spacing: 0.1em;
      border: 1px solid #bdc9aa;
    }

    /* 他店舗一覧 */

    .groups_wrap {
      margin: 60px 0 46px;
    }

    .groups_wrap ul {
      padding: 0 2.6%;
    }

    .groups_wrap li {
      float: left;
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 20px;
      text-align: center;
    }

    .groups_wrap li:nth-child(2n) {
      margin-right: 0;
    }

    .groups_wrap li img {
      width: 100%;
    }

    .groups_wrap li h3 {
      margin: 5px 0;
      font-weight: normal;
      color: #38381d;
      font-size: 12px;
    }

    .groups_wrap li h3 span {
      margin: 0 0 3px;
      display: block;
      color: #97ae71;
      font-size: 10px;
    }

    .groups_wrap li p {
      color: #38381d;
      font-size: 10px;
    }

    /* フランス */

    .france_link {
      padding: 2.6%;
      background: #fff;
      border: solid 1px #d5d9c6;
      margin: 20px 2.6%;
    }

    .france_link_inner {
      padding: 2.6%;
      background: #fff;
      border: 1px solid #d5d9c6;
      text-align: center;
    }

    .france_link_inner h2 {
      margin: 10px 0 5px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 15px;
      color: #879f61;
      letter-spacing: 0.1em;
    }

    .france_link_inner p {
      color: #707161;
      font-size: 10px;
    }

    /* ===================================
        フランス
    ------------------------------------*/

    .bonjour_area {
      margin: 0 5.3% 86px;
    }

    .bonjour_area li {
      margin: 27px 0;
    }

    .bonjour_ph {
      width: 100%;
      height: 215px;
    }

    .bonjour_area .date {
      margin: 14px 0 0;
      color: #b1b2a9;
      font-size: 10px;
    }

    .bonjour_area h3 {
      margin: 8px 0;
      color: #707161;
      line-height: 1.4em;
    }

    .bonjour_area .txt {
      color: #707161;
      line-height: 2.0em;
    }

    .bonjour_area .blog_source {
      margin: 8px 0 0;
      color: #b1b2a9;
      font-size: 10px;
      line-height: 1.2em;
      text-decoration: underline;
    }

    /* ===================================
        レストラン
    ------------------------------------*/

    .res_intro {
      margin: 46px 5.3%;
    }

    .chef_area {
      padding: 2.6%;
      background: #f7f8f6;
    }

    .chef_area_inner {
      padding: 30px;
      background: #fff;
      text-align: center;
    }

    .chef_area_inner:first-child {
      margin-bottom: 2.6%;
    }

    .chef_area h5 {
      color: #707161;
    }

    .chef_ph {
      margin: 0 auto 10px;
      display: block;
      width: 160px;
    }

    .chef_txt {
      margin-top: 20px;
      text-align: left;
      line-height: 2.0em;
    }

    .menulink_area {
      position: relative;
    }

    .menulink_ph {
      display: block;
      width: 50%;
    }

    .menulink_txt {
      width: 50%;
      text-align: center;
      color: #879f61;
      line-height: 1.4em;
    }

    .menulink_txt_inner {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 50%;
    }

    .menulink_txt h4 {
      margin: 10px 0 5px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      font-size: 16px;
      font-style: italic;
    }

    /* ===================================
        メニュー
    ------------------------------------*/
    .menu_wrap {
      margin: 0 0 80px;
    }

    .menu_title {
      margin:  15px 0;
      color: #879f61;
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      font-size: 18px;
      font-style: italic;
      text-align: center;
      line-height: 1.2;
    }

    .menu_title_sub {
      font-size: 11px;
      color: #707161;
      line-height: 1.2;
      text-align: center;
    }

    .menu_title02 {
      text-align: center;
      line-height: 1.2;
      color: #707161;
      font-size: 18px;
    }

    .menu_title02 span {
      font-size: 12px;
      font-weight: normal;
      color: #879f61;
    }

    .menu_res_txt {
      display: inline-block;
      margin: 4px 0 0;
      padding: 2px 10px;
      background: #879f61;
      color: #fff;
    }

    .menu_txt {
      padding: 15px;
      line-height: 1.8;
    }

    .menu_wrap dl {
      padding: 0 10px;
      text-align: center;
      line-height: 1.8;
    }

    .menu_wrap dt {
      margin: 30px 0 5px;
      color: #879f61;
      font-weight: bold;
      font-size: 15px;
    }

    .menu_wrap dd span {
      font-size: 12px;
    }

    .jp_txt {
      color: #879f61;
    }

    .menu_wrap dl.party_other {
      text-align: left;
    }

    .menu_wrap p.note {
      padding: 20px 15px;
      font-size: 11px;
      line-height: 1.4;
    }

    .menu_img {
      display: block;
      margin: 20px 0 0;
    }

    .menu_contact {
      margin: 10px 15px;
      padding: 25px 10px 10px;
      text-align: center;
      background: #f7f8f6;
    }

    .menu_btn {
      display: block;
      width: 80%;
      margin: 40px auto;
      padding: 20px 0;
      border: 1px solid #879f61;
      text-align: center;
      color: #879f61;
    }

    .menu_btn2 {
      display: block;
      width: 230px;
      margin: 20px auto;
      padding: 15px 0;
      border: 1px solid #879f61;
      background: #fff;
      text-align: center;
      color: #879f61;
    }

    .menu_wrap .accordion_title {
      position: relative;
      display: block;
      width: 100%;
      padding: 30px 20px;
      border-top: 1px solid #ddd;
      font-size: 14px;
      color: #707161;
    }

    .menu_wrap .ac_btn {
        position: absolute;
        top: 50%;
        right:20px;
        display: block;
        width: 19px;
        transition: all 0.3s ease-out;
      -webkit-transform: translateY(-50%) rotateZ(0deg);
      transform: translateY(-50%) rotateZ(0deg);
    }

    .menu_wrap .accordion_title.open .ac_btn {
      -webkit-transform: translateY(-50%) rotateZ(180deg);
      transform: translateY(-50%) rotateZ(180deg);
    }

    .menu_wrap .accordion_detail {
      padding: 10px 10px 30px;
      background: #f7f8f6;
    }

    .menu_wrap .menu_ac_wrap {
      border-bottom: 1px solid #ddd;
    }


    /* ===================================
        ウェディング
    ------------------------------------*/

    .wed_slide {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .wed_intro {
      margin: 46px 5.3%;
    }

    .wed_txt {
      margin: 22px 0;
      line-height: 2em;
    }

    .wed_bnr {
      display: block;
      margin: 46px 0;
      padding: 0 10px;
    }

    /* 3つのコンセプト（トップ
    ） */

    .wed_3slink_b li {
      width: 32%;
      float: left;
      margin-right: 2%;
    }

    .wed_3slink_b li:last-child {
      margin-right: 0;
    }

    .wed_3slink_b li:nth-child(2) {
      margin-top: 20px;
    }

    /* 3つのコンセプト（下層） */

    .wed_3slink_s {
      margin: 80px 2.6% 88px;
        width: 94.8%;
    }

    .wed_3slink_s li {
      float: left;
      width: 32%;
      margin: 0 2% 0 0;
    }

    .wed_3slink_s li:last-child {
      margin-right: 0;
    }

    .wed_3slink_s li a {
      text-align: center;
      color: #879f61;
      font-size: 11px;
      font-family: 'Open Sans', sans-serif;
      letter-spacing: 0.15em;
    }

    .wed_3slink_s li a img {
      margin-bottom: 5px;
    }

    /* インスタフィード */

    .insta_list {
      margin: 0 2.6%;
      width: 94.8%;
    }

    .instagram_subtitle {
      margin: 30px 0 10px;
      text-align: center;
      color: #707161;
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    .insta_list li {
      float: left;
      width: 32%;
      margin: 0 2% 2% 0;
    }

    .insta_list li:nth-child(3n) {
      margin: 0 0 2% 0;
    }

    .insta_list li a {
      display: block;
      width: 100%;
      height: auto;
    }

    .insta_area {
      margin: 68px 0;
    }

    .inst_ph {
      padding: 100% 0 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    /* スペシャリスト */

    .special_detail {
      line-height: 2em;
    }

    .special_logo {
      display: block;
      margin: 30px 0 10px auto;
      width: 219px;
    }

    /* スタイル */

    .wed_3s_ph {
      display: block;
      margin: auto;
      width: 75px;
    }

    .style_list {
      border-top: 1px solid #e5e5e5;
    }

    .style_list li {
      position: relative;
      padding: 2.6%;
      border-bottom: 1px solid #e5e5e5;
    }

    .stylelist_area li:after {
      position: absolute;
      top: 50%;
      right: 10px;
      width: 8px;
      height: 8px;
      content: '';
      margin-top: -4px;
      border-top: solid 1px #97ae71;
      border-right: solid 1px #97ae71;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    .style_list_ph {
      width: 25%;
    }

    .style_list_txt {
      position: absolute;
      right: 0;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 71%;
    }

    .style_list_txt_inner {}

    .style_list_txt h4 {
      margin-bottom: 4px;
      color: #879f61;
      font-size: 16px;
      font-weight: 700;
      font-family: 'Open Sans', sans-serif;
    }

    .stlelist_title_sub {
      margin-bottom: 6px;
      color: #707161;
      font-size: 12px;
    }

    .stlelist_name {
      color: #879f61;
      font-size: 11px;
    }

    .style_area {
      margin: 0 2.6%;
    }

    .style_title_area {
      margin: 42px 0 10px;
      text-align: center;
    }

    .style_area h4 {
      margin-bottom: 5px;
      color: #707161;
      font-weight: 700;
      font-size: 18px;
      font-family: 'Open Sans', sans-serif;
    }

    .style_title_sub {
      color: #707161;
    }

    .style_area img {
      width: 100%;
    }

    .style_btn {
      margin: 24px auto;
      padding: 16px 0;
      display: block;
      width: 162px;
      text-align: center;
      color: #fff;
      background: #97ae71;
    }

    /* スペース */

    .w_space_area h3 {
      margin: 40px 0 19px;
      text-align: center;
      color: #879f61;
      font-weight: normal;
    }

    .w_space_area h3 span {
      display: block;
      margin-bottom: 6px;
      font-weight: 700;
      font-size: 20px;
      font-family: 'Open Sans', sans-serif;
      font-style: italic;
    }

    /* スタッフ */

    .staff_title {
      font-size: 15px;
      color: #879f61;
      line-height: 1.3em;
    }

    .staff_title span {
      display: block;
      font-size: 12px;
      font-weight: normal;
    }

    .staff_ph_area img {
      width: 48%;
    }

    .staff_detail p {
      margin: 12px 0;
      line-height: 2em;
    }

    /* ムービー */

    .movies {
      margin: 86px 0 0;
    }

    .movies ul {
      width: 100%;
      padding: 0 10px;
    }

    .movies ul li {
        width: 49%;
      float: left;
      margin-right: 2%;
      margin-bottom: 2%;
      text-align: center;
    }
    .movies ul li a {
        height: 27.6vw;
        width: 100%;
    }
    .movies ul li:nth-child(2n) {
      margin-right: 0;
    }

    .movies ul li img {
      display: block;
      width: 100%;
    }

    .report_movie_btn {
      display: block;
      margin: 50px auto 100px;
      padding: 20px 0;
      width: 200px;
      background: #be9750;
      color: #fff;
      text-align: center;
    }

    /* モーダルウィンドウ用 */

    #mdOverlay {
      top: 0;
      left: 0;
      width: 100%;
      position: fixed;
      z-index: 1500;
      background: #000;
      display: none;
    }

    #mdWindow {
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      height: 56.25vw;
        max-height: 90vh;
      padding: 30px 0 0;
    margin: 0;
      position: fixed;
      z-index: 1501;
      background: #fff;
      display: none;
    }

    #mdWindow>.mdClose {
      top: -20px;
      right: 5px;
      width: 30px;
      height: 30px;
      line-height: 30px;
      color: #fff;
      text-align: center;
      font-size: 1.5em;
      background: #757575;
      border-radius: 30px;
      position: absolute;
      z-index: 99;
      cursor: pointer;
      box-shadow: 0 0 3px 0 #000;
    }

    .btnArea {
      text-align: center;
      margin: 20px 0;
    }

    #modalInclude {
      display: none;
    }

    #contWrap {
      margin: 0 auto;
      width: 100%;
      height: 100%;
      box-sizing: border-box;
      overflow-y: auto;
      text-align: center;
    }

    #contWrap iframe, #contWrap video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #000;
    }

    /* よくある質問 */

    .faq_area {
      border-bottom: 1px solid #e5e5e5;
    }

    .faq_area dt {
      position: relative;
      width: 100%;
      padding: 30px 36px;
      border-top: 1px solid #e5e5e5;
      background: url(../img/restaurant/menu/mark_down.png) 98% center no-repeat;
      background-size: 16px 11px;
      line-height: 1.4em;
    }

    .faq_area dt.active {
      background: url(../img/restaurant/menu/mark_up.png) 98% center no-repeat;
      background-size: 16px 11px;
    }

    .faq_area dt:after {
      position: absolute;
      content: '';
      display: block;
      top: 50%;
      left: 10px;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 17px;
      height: 23px;
      background: url(../img/wedding/q_mark.png) center center no-repeat;
      background-size: 17px 23px;
    }

    .faq_area dd {
      padding: 5.3%;
      background: #f7f8f6;
      line-height: 2em;
    }

    .faq_area dd a {
      display: inline;
      color: #3239cd;
      text-decoration: underline;
    }


    /* ===================================
        フォトプラン
    ------------------------------------*/
    .photo_plan_wrap h4 {
      font-size: 16px;
      color: #707161;
      text-align: center;
      line-height: 1.4;
    }

    .photo_plan_wrap h4 span {
      font-size: 18px;
    }

    .photo_plan_wrap h5 {
      margin: 60px 0 0;
      font-size: 15px;
      color: #707161;
      text-align: center;
    }

    .photo_plan_wrap dl {
      margin: 20px 0;
    }

    .photo_plan_wrap dt {
      padding: 15px 0 0;
    }

    .photo_plan_wrap dd {
      padding: 8px 0 15px;
      text-align: right;
      border-bottom: 1px dotted #ccc;
    }

    /* ===================================
        コンセプト
    ------------------------------------*/
    
    .concept_intro {
        width: auto;
        text-align: left;
    }
    
    .concept_intro h3 {
      margin: 37px 0 27px;
      font-size: 15px;
      color: #707161;
      text-align: center;
    }

    .concept_intro p {
      padding-bottom: 35px;
      line-height: 2.0em;
    }

    .concept_detail_wrap {
      padding: 2.6%;
      background: #f7f8f6;
    }

    .concept_detail_inner {
      padding: 20px;
      background: #fff;
      margin-bottom: 2.6%;
    }

    .concept_detail_inner:last-child {
      margin-bottom: 0;
    }

    .concept_detail_inner h3 {
      margin-bottom: 10px;
      position: relative;
      padding: 20px 0;
      text-align: center;
      font-size: 15px;
      color: #707161;
    }

    .concept_detail_inner h3:after {
      position: absolute;
      content: '';
      display: block;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      width: 83px;
      height: 1px;
      background: #879f61;
    }

    .concept_detail_inner p {
      padding: 10px;
      line-height: 2.0em;
    }

    /* ===================================
        アクセス
    ------------------------------------*/

    .access_area {
      text-align: center;
    }

    .access_area dt {
      margin: 60px 0 20px;
      font-weight: bold;
    }

    .access_area dd {
      line-height: 2.0em;
    }

    .access_area dd.note {
      font-size: 11px;
    }

    .access_area iframe {
      margin: 30px 0 60px;
      width: 100%;
      height: 334px;
    }

    /* ===================================
        提携企業
    ------------------------------------*/

    .partner_area h3 {
      margin: 70px 0 12px;
      font-size: 16px;
      color: #879f61;
      text-align: center;
    }

    .partner_txt {
      margin: 2%;
      line-height: 2.0em;
        text-align: left;
    }

    .partner_list {
      border: 1px solid #d5d9c6;
    }

    .partner_list li {
      padding: 17px 17px 17px 50px;
      border-bottom: 1px solid #d5d9c6;
      background: url(../img/partner/partner_mark.jpg) 10px center no-repeat;
      background-size: 26px 26px;
    }

    .partner_list li:last-child {
      border-bottom: none;
    }

    .special_txt {
      padding: 27px;
      background: #f2f3eb;
    }

    .special_txt h4 {
      position: relative;
      margin-bottom: 18px;
      padding-bottom: 18px;
      font-size: 15px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      color: #879f61;
      text-align: center;
    }

    .special_txt h4:after {
      position: absolute;
      left: 50%;
      bottom: 0;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
      content: '';
      display: block;
      width: 30px;
      height: 1px;
      background: #97ae71;
    }

    .special_txt p {
      margin: 5px 0;
      line-height: 1.6em;
    }

    .partner_area .note {
      margin: 17px 10px;
      font-size: 12px;
      line-height: 1.6em;
    }

    .partner_btn {
      display: block;
      width: 280px;
      margin: 35px auto 120px;
      padding: 16px 0;
      text-align: center;
      color: #879f61;
      border: 1px solid #97ae71;
    }

    /* ===================================
        館内案内
    ------------------------------------*/

    .space_area {
      margin: 0 0 98px;
      text-align: center;
    }

    .map_wrap {
      margin: 20px 0 0;
      padding: 2.6%;
      background: #f7f8f6;
    }

    .space_area h3 {
      margin: 40px 0 0;
      font-size: 14px;
      color: #707161;
    }

    .space_area .title05 {
      margin-bottom: 16px;
    }

    .space_txt {
      margin: 16px 0;
      text-align: left;
      line-height: 2.0em;
    }

    /* ===================================
        イベント
    ------------------------------------*/

    .event_subtitle {
      font-size: 11px;
      line-height: 1.3em;
      color: #707161;
    }

    .event_subtitle span {
      font-family: 'Open Sans', sans-serif;
      font-weight: 600;
      font-size: 13px;
    }

    .event_title {
      margin-top: 4px;
      padding-right: 20px;
      color: #879f61;
      line-height: 1.4em;
      font-size: 14px;
      font-weight: normal;
    }

    .event_title span {
      display: block;
      font-size: 12px;
    }

    .event_date {
      margin-top: 4px;
      font-size: 11px;
      color: #91928a;
        text-align: left;
    }

    .event_txt {
      margin: 10px 0;
      line-height: 2.0em;
    }

    .event_detail {
      margin: 30px 0;
      padding: 14px 0;
      border-top: 1px dotted #6c6c6c;
      border-bottom: 1px dotted #6c6c6c;
      line-height: 1.4em;
    }

    .event_detail dl {
      margin: 14px 0;
    }

    .event_detail dt {
      margin: 10px 0 3px;
      font-weight: bold;
        background: none;
    }
    .event_detail dd {
        margin: 0;
        padding: 0;
    }

    .event_detail dt span {
      color: #879f61;
    }

    .event_detail p {
      margin: 14px 0;
    }

    .event_btn {
      margin: 24px auto;
      padding: 16px 0;
      display: block;
      width: 280px;
      text-align: center;
      color: #fff;
      background: #97ae71;
    }

    .event_txt_end {
      margin: 24px 0;
      text-align: center;
      color: #879f61;
    }

    /* ===================================
        プライバシーポリシー
    ------------------------------------*/

    .privacy_wrap h3 {
      margin: 25px 0;
      color: #879f61;
      text-align: center;
      font-size: 13px;
    }

    .privacy_wrap h4 {
      margin: 32px 0 12px;
      padding: 9px 10px;
      background: #f2f3eb;
      color: #879f61;
    }

    .privacy_wrap p {
      line-height: 2em;
    }

    /* ===================================
        問い合わせ
    ------------------------------------*/

    .res_contact_area, .wed_contact_area {
      margin: 46px 0;
      text-align: center;
    }

    .res_contact_area h3, .wed_contact_area h3 {
      margin: 8px 0;
      color: #879f61;
    }

    .res_contact_area p, .wed_contact_area p {
      line-height: 1.4em;
    }

    .res_contact_area .note {
      margin: 16px 0 0;
      font-size: 11px;
    }

    .wed_btn_area {
      margin: 5.3%;
    }

    .wed_btn_area li {
      float: left;
      width: 48%;
      margin-right: 4%;
      margin-bottom: 4%;
    }

    .wed_btn_area li:nth-child(2n) {
      margin-right: 0;
    }

    .wed_btn_area li a {
      padding: 16px 0;
      background: #97ae71;
      color: #fff;
    }

    .faq_btn {
      margin: 28px auto;
      padding: 16px 0;
      width: 162px;
      color: #879f61;
      border: 1px solid #97ae71;
    }

    /* ===================================
        ドロワーメニュー
    ------------------------------------*/

    .drawermenu_logo {
      display: block;
      margin: auto;
      padding: 15px 0;
      width: 58px;
    }

    .drawermenu li a {
      position: relative;
      display: block;
      padding: 20px 10px;
      border-top: 1px solid #e5e5e5;
      color: #38381d;
      background: #f2f3eb;
    }

    .drawermenu li a.imp {
      color: #879f61;
    }

    .drawermenu li ul li a {
      padding: 20px 10px 20px 40px;
      color: #707161;
      border-top: 1px dotted #e5e5e5;
      background: #f7f8f6;
    }

    .drawermenu li a:after {
      position: absolute;
      top: 50%;
      right: 5.3%;
      width: 8px;
      height: 8px;
      content: '';
      margin-top: -4px;
      border-top: solid 1px #aeaeae;
      border-right: solid 1px #aeaeae;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    /* ===================================
        フッター
    ------------------------------------*/

    /* フッターナビ */

    .footer_nav {
      border-top: 1px solid #e5e5e5;
        margin: 0;
    }

    .footer_nav li {
      float: left;
      width: 50%;
      border-right: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5;
      margin: 0;
    }

    .footer_nav li:nth-child(2n) {
      border-right: none;
    }

    .footer_nav li a {
      position: relative;
      display: block;
      padding: 19px 5.3%;
      color: #38381d;
    }

    .footer_nav li a.imp {
      color: #879f61;
    }

    .footer_nav li a.imp2 {
      color: #879f61;
      background: #f2f3eb;
    }

    .footer_nav li a:after {
      position: absolute;
      top: 50%;
      right: 5.3%;
      left: auto;
      width: 8px;
      height: 8px;
      content: '';
      margin-top: -4px;
      border-top: solid 1px #aeaeae;
      border-right: solid 1px #aeaeae;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }

    /* トップへ戻るボタン */

    .topback {
      padding: 17px 0;
      background: #97ae71;
      text-align: center;
      position: static;
        bottom: auto;
        right: auto;
        width: auto;
        height: auto;
        border-radius: 0px;
    }

    .topback img {
      width: 32px;
    }

    /* 店舗情報 */

    .footer_inner1 {
      padding: 48px 0 38px;
      text-align: center;
    }

    .footer_inner1 img {
      width: 88px;
    }

    .footer_inner1 dt {
      margin: 15px 0 5px;
      color: #707161;
    }

    .footer_inner1 dd {
      margin: 5px 0;
      font-size: 11px;
    }

    .footer_inner1 .company {
      margin: 24px 0 0;
      color: #38381d;
      text-decoration: underline;
    }

    /* フッター他店舗リンクより下 */

    .footer_inner2 {
      padding: 21px 0 70px;
      background: #f2f3eb;
    }

    .footer_inner2 ul {
      padding: 0 2.6%;
    }

    .footer_inner2 li {
      float: left;
      width: 48.7%;
      margin-right: 2.6%;
      margin-bottom: 2.6%;
    }

    .footer_inner2 li:nth-child(2n) {
      margin-right: 0;
    }

    .footer_inner2 li img {
      width: 100%;
    }

    small {
      display: block;
      margin-top: 20px;
      padding: 10px 0;
      border-top: 1px solid #d5d9c6;
      text-align: center;
      color: #707161;
      font-size: 10px;
    }

    /* フッター固定ボタン */

    .footer_btn {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.8);
      z-index: 100;
    }

    .footer_btn li {
      float: left;
      position: relative;
      text-align: center;
      height: 60px;
    }

    .footer_btn_sns1, .footer_btn_menu {
      background: url(../img/footer/line.jpg) right center no-repeat;
    }

    .footer_btn_tel, .footer_btn_menu, .footer_btn_sns1, .footer_btn_sns2 {
      width: 16%;
    }

    .footer_btn_fair {
      width: 36%;
    }

    .footer_btn_tel, .footer_btn_fair {
      background: #97ae71;
    }

    .footer_btn li a {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .footer_btn li img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 22px;
    }

    .footer_btn_menu button {
      width: 100%;
      height: 100%;
      border: none;
      cursor: pointer;
      background: none;
    }

    button {
      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
      -webkit-box-shadow: none;
      box-shadow: none;
      outline: none;
    }

    .footer_btn_fair p {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700;
      color: #fff;
    }
    
    /* ADDED BY THOMAS */ 
    
    .sm-slider, .sm-slider:after {
        min-width: 0 !important;
        height: 75vh !important;
    }
    
    .top_nav_area nav, .top_btn_area, .top_header_after, .wed_res_link_area .logo_pharea, .bonjour_area, .bonjour_btn, .footer_inr01, .footer_inr02, .header_nav, .top_btn_area2 {
        display: none;
    }
    .top_nav_area {
        width: 100%;
        height: 100%;
    }
    .logo_top01 {
        top: 37.5vh;
        transform: translate(-50%, -50%);
    }
    .mobile {
        display: block;
    }
    .desktop {
        display: none !important;
    }
    
    .top_bottom_area {
        position: static;
        background: none;
    }
    .news_ticker {
        float: none;
        width: 100%;
        padding: 0;
        overflow: auto;
        display: block;
    }
    .news_ticker .f_left {
        float: none;
    }
    .news_ticker ul {
        width: 100%;
        margin: 0;
        height: auto;
    }
    .news_ticker ul li{
        position: static;
        height: auto;
        display: list-item;
    }
    
    .intro_wrap {
        width: auto;
        padding: 0;
        margin: 5.3%;
    }
    .top_photo01.f_left {
        float: none;
        width: 100%;
        height: 51.5vw;
        background-size: cover;
    }
    .intro_txt {
        width: auto;
    }
    .wed_res_link_area {
        padding: 0;
        margin: 2.6%;
        width: 94.8%;
    }
    .bonjour_img {
        width: 100%;
        max-width: 980px;
    }
    .bonjour_wrap h2 {
        margin: 10px 0 5px;
        padding-bottom: 0;
    }
    .bonjour_wrap h2 span {
        font-size: 15px;
        letter-spacing: 0.1em;
        font-weight: 700;
    }
    .bonjour_wrap h2:after {
        display: none;
    }
    .bonjour_wrap:before {
        content: '';
        display: block;
        position: absolute;
        top: -20px;
        left: -3%;
        width: 106%;
        height: calc(100% + 40px);
        background: #f7f8f6;
        z-index: -1;
    }
    .main_visual, .main_big_visual {
        height: auto;
    }
    .main_visual img, .main_big_visual img {
        position: static;
        top: auto;
        left: auto;
        -webkit-transform: none;
        transform: none;
    }
    .logo_top03 {
        display: inline-block;
        position: static;
        left: auto;
        top: auto;
        transform: none;
        -webkit-transform: none;
    }
    .top_header_inr {
        width: 100%;
        padding: 7px 0;
        text-align: center;
    }
    nav {
        padding: 0;
    }
    nav a:after {
        bottom: auto;
        left: auto;
        background: none;
    }
    
    .concept_wrap h3 {
        margin: 37px 0 27px;
        font-size: 15px;
        color: #707161;
        font-family: Avenir, Helvetica, Arial, Verdana, "游ゴシック", Yu Gothic, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
    }
    .concept_s {
        padding: 20px;
        margin: 0 0 2.6%;
        background: #fff;
        height: auto;
    }
    .concept_s p {
        padding: 10px;
    }
    .concept_s img {
        width: 100%;
        opacity: 1 !important;
        transform: none !important;
    }
    .concept_stxt01, .concept_stxt02 {
        position: static;
        padding: 0;
        margin: 0;
        border: 0;
        width: auto;
        height: auto;
        opacity: 1 !important;
        transform: none !important;
    }
    .concept_s h4 {
        margin-bottom: 10px;
        padding: 20px 0;
        text-align: center;
        font-size: 15px;
        color: #707161;
        border: 0;
        position: relative;
    }
    .concept_s h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 83px;
        height: 1px;
        background: #879f61;
    }
    .concept_wrap .content_wrap_m20 img{
        width: 100%;
    }
    .concept_wrap .content_wrap_m20 > * {
        opacity: 1 !important;
        transform: none !important;
    }
    .concept_wrap .content_wrap_m20 h4 {
        margin: 37px 0 27px;
        font-size: 15px;
        color: #707161;
        text-align: center;
    }
    .concept_wrap .content_wrap_m20 p {
        padding-bottom: 35px;
        width: auto;
    }
    .event_detail dd, .event_txt_under2, .event_detail {
        width: auto;
    }
    .event_area {
        opacity: 1 !important;
        margin: 0;
        padding: 0;
        border: 0;
    }
    .event_area img{
        width: 100%;
        height: 20%;
        object-fit: cover;
    }
    .event_subtitle::before, .event_subtitle::after {
        display: none;
    }
    .event_subtitle {
        margin-top: 0;
    }
    .bonjour_area2, .bonjour_area {
        width: 89.4%;
        margin: 0 5.3% 86px;
    }
    .bonjour_area2 li {
        float: none;
        width: 100%;
        margin: 0;
    }
    .bonjour_ph {
        width: 100%;
        height: 300px;
    }
    .bonjour_area2 li p {
        padding: 10px 0;
        height: auto;
    }
    .bonjour_area2 li h3 {
        padding: 10px 0;
        margin: 0;
        height: auto;
    }
    .partner_area {
        margin: 2.6%;
        width: 94.8%;
    }
    .special_area img {
        width: 100%;
        float: none;
    }
    .special_txt_wrap {
        float: none;
        width: 100%;
    }
    .special_txt {
        position: static;
        transform: none;
        width: 100%;
    }
    .special_txt p {
        text-align: left;
    }
    .privacy_wrap {
        margin: 5.3%;
        padding: 0;
        width: 89.4%;
    }
    .restaurant_intro_wrap {
        margin: 46px 5.3%;
        width: 89.4%;
    }
    .res_intro {
        width: 100%;
        margin: 0;
    }
    .restaurant_img_wrap {
        position: relative;
        overflow: hidden;
        height: 58vw;
    }
    .restaurant_img_wrap img {
        width: 200%;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-transform: translateX(-25%);
        transform: translateX(-25%);
    }
    .res_inr {
        padding: 30px;
        background: #fff;
    }
    .res_inr img {
        width: 160px;
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        float: none;
        margin: 0 auto 10px;
    }
    .chef_txt {
        float: none;
        opacity: 1 !important;
        -webkit-transform: none !important;
        transform: none !important;
        width: 100%;
        text-align: center;
    }
    .chef_txt .title05 {
        margin: 0;
    }
    .chef_area + .chef_area {
        padding-top: 0;
    }
    .menu_wrap .main_title {
        font-size: 18px;
    }
    .menu_wrap img {
        width: 100%;
    }
    .menu_txt {
        text-align: left;
    }
    .menu_detail {
        width: 100%;
    }
    .menu_wrap, .movexl, .movexr, .movey {
        opacity: 1 !important;
        transform: none !important;
    }
    .menu_res_txt {
        padding: 0 10px;
        line-height: 2.5em;
    }
    .party_contact {
        width: auto;
    }
    .menu_wrap h5 {
        border: 0;
        margin: 0;
    }
    dd.fixed_height {
        height: auto;
    }
    .menu_wrap .jp_txt {
        margin: 13px 0;
    }
    .space_txt1 {
        width: auto;
    }
    .space_wrap {
        padding: 2.6%;
    }
    .space_wrap li {
        width: auto;
    }
    .space_wrap li:not(:nth-child(2n)) {
        margin: 0;
    }
    .fade {
        opacity: 1 !important;
    }
    .space_capacity {
        margin-top: 20px;
        text-align: left;
    }
    .space_capacity span {
        display: block;
    }
    .res_contact_area {
        border-bottom: 0;
    }
    .wed_slide {
        height: auto;
    }
    .wed_intro {
        margin: 46px 5.3%;
    }
    .wed_intro_txt {
        text-align: left;
    }
    .wed_3slink_b li {
        opacity: 1 !important;
    }
    .movies ul li:nth-child(odd) {
        margin-right: 2%;
    }
    .small_img img{
        width: 49%;
        margin: 0 2% 0 0;
        height: 100%;
    }
    .small_img {
        display: flex;
        justify-content: center;
    }
    .small_img img:last-child {
        margin-right: 0;
    }
    .w_space_area img {
        margin: 0 auto 2%;
    }
    .ac_dt {
        margin: 0;
    }
    .wed_intro_txt {
        margin: 5.3%;
    }
    .stylelist_area li a {
        position: relative;
        display: inline-flex;
        width: 100%;
        align-items: center;
        height: 25vw;
    }
    .stylelist_area li a img {
        height: 100%;
        width: 25vw;
        margin-right: 4vw;
        object-fit: cover;
    }
    .stylelist_caption {
        position: static;
        width: auto;
        height: auto;
        background: none;
        float: none;
        opacity: 1;
    }
    .stylelist_caption_inner {
        position: static;
        width: auto;
        height: auto;
        transform: none;
        float: none;
        text-align: left;
        padding: 0;
    }
    .stlelist_title {
        font-size: 18px;
        margin-bottom: 4px;
        color: #879f61;
    }
    .stylelist_area li {
        float: none;
        padding: 2.6%;
        border-bottom: solid 1px #e5e5e5;
        margin: 0;
        position: relative;
    }
    .stlelist_title_sub {
        padding: 0;
    }
    .stlelist_title_sub:before, .stlelist_title_sub:after {
        display: none;
    }
    .style_slider_nev {
        display: none;
    }
    .wed_pharea img, .res_pharea img {
      margin-bottom: 5px;
    }
    .banner-wrap {
      width: 100%;
    }
}
.wp-block-button__link {
  margin: 15px auto;
  padding: 1rem 0;
  min-width: 230px;
  display: inline-block;
  border: 1px solid #97ae71;
  font-size: 14px;
  color: #879f61;
  line-height: 1.2;
  transition: all 0.3s linear;
}
.wp-block-button__link:hover {
  background: #879f61;
  color: #fff;
}
