@charset "UTF-8";
/*
Theme Name: グランド エル・サン
Theme URI:
Author: MojaDesign
Author URI: https://moja-d.com/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: MojaDesign
*/
/*********************************************************************
* ブレークポイント定義
**********************************************************************/
/*********************************************************************
* メディアクエリー定義
**********************************************************************/
/* ************************************************
 *	base
 * ************************************************ */
html, html *, body, header, footer {
  margin: 0;
  padding: 0;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  position: relative;
  color: var(--base_text_color_setting);
  font-size: 14px;
  line-height: 2;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--base_bg_color_setting);
  font-family: var(--base_font_family_setting);
}
@media print, screen and (min-width: 960px) {
  body {
    font-size: 16px;
  }
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a {
  color: #323232;
}

a[href^="tel:"] {
  cursor: default;
}
@media print, screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  a[href^="tel:"]:hover {
    opacity: unset;
    transition: none;
  }
}

input[type=text].regular-text {
  width: 80% !important;
  padding: 0;
}

/* ************************************************
 *	content-wrap ヘッダー下のメインコンテンツ枠
 * *************************************************/
#content-wrap {
  padding-top: 56px;
  -webkit-animation: fadein 1s;
  animation: fadein 1s;
}
@media print, screen and (min-width: 960px) {
  #content-wrap {
    padding-top: 100px;
  }
}

.content_block:not(:last-child) {
  margin-bottom: 60px;
}
@media print, screen and (min-width: 960px) {
  .content_block:not(:last-child) {
    margin-bottom: 120px;
  }
}

.inner {
  max-width: 1410px;
  padding: 0 5%;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .inner {
    padding: 0 30px;
  }
}
.inner.short {
  max-width: 1060px;
}
.inner.middle {
  max-width: 1220px;
}

/*********************************************************************
* フェードインアニメーション
**********************************************************************/
.slidein_y {
  opacity: 0;
  visibility: hidden;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
@media print, screen and (min-width: 960px) {
  .slidein_y {
    transform: translateY(60px);
  }
}
.slidein_y.is_animated {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.slidein_y.sp_first {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media print, screen and (min-width: 960px) {
  .slidein_y.sp_first {
    opacity: 0;
    transform: translateY(60px);
  }
  .slidein_y.sp_first.is_animated {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/*********************************************************************
* ページトップ
**********************************************************************/
.pagetop {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 60px;
  right: 10px;
  z-index: 1;
}
@media print, screen and (min-width: 768px) {
  .pagetop {
    width: 60px;
    height: 60px;
    bottom: 100px;
    right: 20px;
  }
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--base_pagetop_bg_color_setting);
  opacity: 1;
  position: relative;
  transition: 0.3s;
}
@media print, screen and (min-width: 960px) {
  .pagetop a:hover {
    opacity: 0.6;
  }
}
.pagetop a .img_pagetop {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--base_pagetop_img_setting) top left/cover no-repeat;
}
.pagetop a.no_img {
  border-radius: 25px;
  border: 3px solid var(--base_pagetop_border_color_setting);
}
.pagetop .pagetop_text {
  text-align: center;
  font-size: 0.75em;
  font-weight: bold;
}

/*********************************************************************
* googlemap
**********************************************************************/
.gmap {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .gmap {
    padding-bottom: 56%;
  }
}
@media print, screen and (min-width: 960px) {
  .gmap {
    padding-bottom: 47.4%;
  }
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*********************************************************************
* flexbox外枠
**********************************************************************/
.flex_between,
.flex_start,
.flex_center,
.flex_end,
.flex_around {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media print, screen and (min-width: 768px) {
  .flex_between_tab,
  .flex_start_tab,
  .flex_center_tab,
  .flex_end_tab,
  .flex_around_tab {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

@media print, screen and (min-width: 960px) {
  .flex_between_pc,
  .flex_start_pc,
  .flex_center_pc,
  .flex_end_pc,
  .flex_around_pc {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}

.flex_between,
.flex_between_tab,
.flex_between_pc {
  justify-content: space-between;
}

.flex_start,
.flex_start_tab,
.flex_start_pc {
  justify-content: flex-start;
}

.flex_center,
.flex_center_tab,
.flex_center_pc {
  justify-content: center;
}

.flex_end,
.flex_end_tab,
.flex_end_pc {
  justify-content: flex-end;
}

.flex_around,
.flex_around_tab,
.flex_around_pc {
  justify-content: space-around;
}

.align_stretch {
  align-items: stretch !important;
}

@media print, screen and (min-width: 960px) {
  .row_reverse {
    flex-direction: row-reverse;
  }
}

@media print, screen and (min-width: 768px) {
  .row_reverse_tab {
    flex-direction: row-reverse;
  }
}

/* ************************************************
 *	PC／SP切り替え
 * ************************************************ */
.sp_only {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

.sp_only_ib {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .sp_only_ib {
    display: none;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_only {
    display: block;
  }
}
@media print, screen and (min-width: 960px) {
  .tab_only {
    display: none;
  }
}

.pc_only {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only {
    display: block;
  }
}

.tab_sp_only {
  display: block;
}
@media print, screen and (min-width: 960px) {
  .tab_sp_only {
    display: none;
  }
}

.tab_pc_only {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only {
    display: block;
  }
}

.tab_pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .tab_pc_only_ib {
    display: inline-block;
  }
}

.pc_only_ib {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .pc_only_ib {
    display: inline-block;
  }
}

/* ************************************************
 *	見出し
 * ************************************************ */
.page_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f7ef;
  padding: 25px 5%;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl {
    padding: 50px 5%;
    margin-bottom: 55px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl {
    padding: 70px 30px;
    margin-bottom: 70px;
  }
}
.page_ttl.no_mb {
  margin-bottom: 0;
}
.page_ttl h1 {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.page_ttl h1 span {
  display: block;
}
.page_ttl h1 .en {
  font-size: 26px;
}
@media print, screen and (min-width: 768px) {
  .page_ttl h1 .en {
    font-size: 34px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl h1 .en {
    font-size: 42px;
  }
}
.page_ttl h1 .jp {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-top: 5px;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .page_ttl h1 .jp {
    font-size: 15px;
    margin-top: 7px;
  }
}
@media print, screen and (min-width: 960px) {
  .page_ttl h1 .jp {
    font-size: 17px;
    margin-top: 10px;
  }
}

h2.section_ttl {
  font-weight: 500;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl {
    margin-bottom: 50px;
  }
}
h2.section_ttl span {
  display: block;
}
h2.section_ttl span.main {
  font-size: 22px;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}
@media print, screen and (min-width: 768px) {
  h2.section_ttl span.main {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl span.main {
    font-size: 34px;
  }
}
h2.section_ttl span.main.lh {
  line-height: 1.5;
}
h2.section_ttl span.sub {
  font-size: 12px;
  margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
  h2.section_ttl span.sub {
    font-size: 15px;
    margin-top: 12px;
  }
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl span.sub {
    font-size: 17px;
    margin-top: 15px;
  }
}
h2.section_ttl span.sub.ls {
  letter-spacing: 1em;
}
h2.section_ttl span.gold {
  color: #bda570;
}
h2.section_ttl.features {
  position: relative;
  display: inline-block;
  text-align: left;
  padding-right: 60px;
  margin-bottom: 45px;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl.features {
    padding-right: 80px;
    margin-bottom: 90px;
  }
}
h2.section_ttl.features::after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 120px;
  height: 1px;
  background-color: #323232;
  transform: rotate(-40deg);
  transform-origin: right top;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl.features::after {
    width: 180px;
  }
}
h2.section_ttl.features span.en {
  font-size: 30px;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl.features span.en {
    font-size: 48px;
  }
}
h2.section_ttl.insta {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl.insta {
    margin-bottom: 30px;
  }
}
h2.section_ttl.insta span.en {
  font-size: 20px;
}
@media print, screen and (min-width: 960px) {
  h2.section_ttl.insta span.en {
    font-size: 30px;
  }
}

h3.page_section_ttl {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 768px) {
  h3.page_section_ttl {
    font-size: 24px;
  }
}
@media print, screen and (min-width: 960px) {
  h3.page_section_ttl {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

/* ************************************************
 *	リンク
 * ************************************************ */
a.link_btn {
  position: relative;
  display: inline-block;
  background-color: #fff;
  color: #bda570;
  font-size: 14px;
  line-height: 1;
  border: 1px solid #bda570;
  padding: 14px 30px;
  transition: background-color 0.4s, color 0.4s;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  a.link_btn {
    font-size: 15px;
  }
}
a.link_btn::before {
  position: absolute;
  top: -1px;
  right: -25px;
  content: "";
  background-color: #bda570;
  width: 0;
  height: calc(100% + 1px);
  -webkit-clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  transition: width 0.4s;
}
a.link_btn.gold {
  background-color: #bda570;
  color: #fff;
}
a.link_btn.gold::before {
  background-color: #fff;
}
a.link_btn.fullwidth {
  display: flex;
  justify-content: center;
  width: 100%;
  font-size: 16px;
  padding: 20px 30px;
}
@media print, screen and (min-width: 768px) {
  a.link_btn.fullwidth {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 960px) {
  a.link_btn.fullwidth {
    font-size: 20px;
    padding: 24px 30px;
  }
}
a.link_btn span {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  padding-right: 50px;
}
a.link_btn span::after {
  position: absolute;
  right: 0;
  content: "→";
  color: #bda570;
  transition: color 0.4s, transform 0.4s;
}
a.link_btn.gold span::after {
  color: #fff;
}
a.link_btn .bt_center {
  text-align: center;
}
@media print, screen and (min-width: 960px) {
  a.link_btn .bt_center {
    font-size: 20px;
    padding: 15px 0;
  }
}
@media print, screen and (min-width: 960px) {
  a.link_btn:hover {
    color: #fff;
  }
  a.link_btn:hover::before {
    left: -25px;
    right: unset;
    width: calc(100% + 50px);
  }
  a.link_btn:hover span::after {
    color: #fff;
    transform: translateX(10px);
  }
}
@media print, screen and (min-width: 960px) {
  a.link_btn.gold:hover {
    color: #bda570;
  }
  a.link_btn.gold:hover::before {
    left: -25px;
    right: unset;
    width: calc(100% + 50px);
  }
  a.link_btn.gold:hover span::after {
    color: #bda570;
    transform: translateX(10px);
  }
}

a.anchor {
  display: block;
  padding-top: 56px;
  margin-top: -56px;
}
@media print, screen and (min-width: 960px) {
  a.anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/* ************************************************
 *	ヘッダー
 * ************************************************ */
/* 共通
----------------------------------------------*/
header {
  position: fixed;
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 56px;
  z-index: 100;
  transition: background-color 0.6s;
}
@media print, screen and (min-width: 960px) {
  header {
    height: 100px;
  }
}
header.open {
  background-color: #fff;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media print, screen and (min-width: 960px) {
  header .header_inner {
    width: 100%;
    padding: 0 18vw 0 30px;
  }
}
@media print, screen and (min-width: 1200px) {
  header .header_inner {
    padding: 0 220px 0 30px;
  }
}

body.fixed header, body.fixed header.is-show {
  background-color: #fff;
  transition: all 0.6s;
}

/* ロゴ
----------------------------------------------*/
.logo {
  width: 110px;
  line-height: 1;
  margin-left: 10px;
}
@media print, screen and (min-width: 960px) {
  .logo {
    width: 14vw;
    max-width: 168px;
    margin-left: 0;
  }
}
.logo a {
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 960px) {
  .logo a:hover {
    opacity: 0.6;
  }
}
.logo img {
  width: 100%;
}

/* グローバルナビ
----------------------------------------------*/
@media print, screen and (min-width: 960px) {
  .g_nav {
    width: 100%;
    transition: 0.5s;
  }
}

.header_nav ul.sub_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 5% 30px;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.sub_nav {
    order: 1;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-bottom: 22px;
  }
}
.header_nav ul.sub_nav li {
  width: calc(50% - 5px);
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.sub_nav li {
    width: auto;
    border-bottom: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.sub_nav li:not(:last-child) {
    border-right: 1px solid rgba(50, 50, 50, 0.5);
    padding-right: 1em;
    margin-right: 1em;
  }
}
.header_nav ul.sub_nav li.current-menu-item a {
  color: #919191;
}
.header_nav ul.sub_nav a {
  display: block;
  background-color: rgba(50, 50, 50, 0.075);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.sub_nav a {
    background-color: unset;
    text-align: left;
    padding: 0;
    transition: opacity 0.3s;
  }
  .header_nav ul.sub_nav a:hover {
    opacity: 0.6;
  }
}
.header_nav ul.content_nav {
  padding: 0 5%;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav {
    order: 2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
  }
}
.header_nav ul.content_nav li {
  border-bottom: 1px solid rgba(50, 50, 50, 0.2);
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav li:not(:last-child) {
    margin-right: 2.1vw;
  }
}
@media print, screen and (min-width: 1200px) {
  .header_nav ul.content_nav li:not(:last-child) {
    margin-right: 2em;
  }
}
.header_nav ul.content_nav li.current-menu-item a {
  color: #919191;
}
.header_nav ul.content_nav a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  text-align: center;
  padding: 15px 0;
}
@media print, screen and (min-width: 960px) {
  .header_nav ul.content_nav a {
    font-size: min(15px, 1.4vw);
    letter-spacing: 0;
    text-indent: 0;
    text-align: left;
    padding: 0;
    transition: opacity 0.3s;
  }
  .header_nav ul.content_nav a:hover {
    opacity: 0.6;
  }
}

a.fair_reserve_btn {
  display: block;
  background-color: #323232;
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  margin: 25px 5%;
}
@media print, screen and (min-width: 960px) {
  a.fair_reserve_btn {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 15vw;
    max-width: 180px;
    height: 100%;
    padding: 0;
    margin: 0;
    transition: background-color 0.3s;
  }
  a.fair_reserve_btn:hover {
    background-color: #bda570;
  }
}
a.fair_reserve_btn span {
  display: block;
  font-size: 12px;
  margin-top: 5px;
}
@media print, screen and (min-width: 960px) {
  a.fair_reserve_btn span {
    margin-top: 10px;
  }
}

/* ************************************************
 *	SP　ハンバーガーメニュー
 * ************************************************ */
/* メニュートリガー
----------------------------------------*/
#menu-trigger {
  display: inline-block;
  width: 50px;
  height: 56px;
  vertical-align: middle;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  text-align: center;
  transform: translateX(0);
}
@media print, screen and (min-width: 960px) {
  #menu-trigger {
    display: none;
  }
}
#menu-trigger span {
  display: inline-block;
  box-sizing: border-box;
  position: absolute;
  height: 1px;
  background-color: #323232;
  transition: all 0.5s;
}
#menu-trigger span:nth-of-type(1) {
  top: 24px;
  right: 10px;
  width: 30px;
}
#menu-trigger span:nth-of-type(2) {
  top: 31px;
  right: 10px;
  width: 23px;
}
#menu-trigger.active span:nth-of-type(1) {
  top: 21px;
  transform: translateY(6px) rotate(-45deg);
}
#menu-trigger.active span:nth-of-type(2) {
  top: 27px;
  width: 30px;
  transform: rotate(45deg);
}

/* メニュー枠
----------------------------------------*/
.header_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: calc(100% - 56px);
  background-color: #fff;
  line-height: 1;
  transition: all 0.6s;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  z-index: 100;
}
@media print, screen and (min-width: 960px) {
  .header_nav {
    position: unset;
    z-index: unset;
    transform: unset;
    transition: unset;
    overflow: unset;
    background: none;
    opacity: 1;
    visibility: visible;
  }
}
.header_nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* ************************************************
 *	動画埋め込み
 * ************************************************ */
.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ************************************************
 *	404
 * ************************************************ */
.notfound_txt {
  text-align: center;
  margin-bottom: 3em;
}
@media print, screen and (min-width: 768px) {
  .notfound_txt {
    font-size: 16px;
  }
}
@media print, screen and (min-width: 960px) {
  .notfound_txt {
    font-size: 18px;
  }
}

/* ************************************************
 *	サンクス
 * ************************************************ */
.thanks_block {
  line-height: 2;
  padding: 30px 0 80px;
}
@media print, screen and (min-width: 960px) {
  .thanks_block {
    font-size: 16px;
    text-align: center;
    padding: 50px 0;
  }
}

/* ************************************************
 *	reCAPTCHA
 * ************************************************ */
.grecaptcha-badge {
  visibility: hidden;
}

/* ************************************************
 *	フッター
 * ************************************************ */
/* パンくず
----------------------------------------*/
.breadcrumbs_wrapper {
  width: 100%;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  max-width: 1220px;
  padding: 70px 5% 15px;
  margin: 0 auto;
}
@media print, screen and (min-width: 960px) {
  .breadcrumbs_wrapper {
    padding: 120px 30px 20px;
  }
}
.breadcrumbs_wrapper span:not(.bre) {
  display: inline-block;
  font-size: 10px;
  padding: 0 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper span:not(.bre) {
    padding: 0 0;
    font-size: 12px;
  }
}
.breadcrumbs_wrapper a {
  display: inline-block;
  font-size: 10px;
  padding-right: 2px;
}
@media print, screen and (min-width: 768px) {
  .breadcrumbs_wrapper a {
    font-size: 12px;
  }
}

/* ブライダルフェア予約ボタン（右下固定）
----------------------------------------*/
/* 下部固定ボタン
----------------------------------------*/
.bottom_fixed_btn {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  width: 100%;
  z-index: 11;
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn {
    width: auto;
  }
}
.bottom_fixed_btn li {
  width: 50%;
  line-height: 1;
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn li {
    width: auto;
  }
}
.bottom_fixed_btn a {
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 18px 0;
}
@media print, screen and (min-width: 768px) {
  .bottom_fixed_btn a {
    font-size: 16px;
  }
}
.bottom_fixed_btn a.fair {
  position: relative;
  background-color: #bda570;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn a.fair {
    padding: 20px 30px;
  }
}
.bottom_fixed_btn a.fair::before {
  position: absolute;
  top: 0;
  right: -25px;
  content: "";
  background-color: #A38E61;
  width: 0;
  height: 100%;
  transform: skewX(-25deg);
  transition: width 0.4s;
}
.bottom_fixed_btn a.fair span {
  position: relative;
  color: #fff;
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn a.fair span {
    padding-right: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn a.fair span::after {
    position: absolute;
    top: 50%;
    right: 0;
    content: "→";
    transform: translateY(-50%);
    transition: right 0.4s;
  }
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn a.fair:hover::before {
    left: -25px;
    right: unset;
    width: calc(100% + 50px);
  }
  .bottom_fixed_btn a.fair:hover span::after {
    right: -10px;
  }
}
.bottom_fixed_btn a.new_party {
  background-color: #DC9691;
}
@media print, screen and (min-width: 960px) {
  .bottom_fixed_btn a.new_party {
    padding: 0;
    transition: opacity 0.3s;
  }
  .bottom_fixed_btn a.new_party:hover {
    opacity: 0.6;
  }
}
.bottom_fixed_btn a.new_party img {
  width: 320px;
}

/* 来館予約・お問い合わせ・資料請求
----------------------------------------*/
.footer_contact_area {
  background: url(images/footer-contact-bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
  font-weight: 500;
  text-align: center;
  padding: 40px 0;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_area {
    padding: 85px 0;
  }
}
.footer_contact_area h2 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_area h2 {
    font-size: 30px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_area h2 {
    font-size: 40px;
  }
}

.footer_contact_txt {
  font-size: 16px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_txt {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.footer_contact_tel {
  line-height: 1;
  margin-bottom: 35px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_tel {
    font-size: 16px;
  }
}
.footer_contact_tel a {
  display: block;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 768px) {
  .footer_contact_tel a {
    display: inline-block;
    font-size: 36px;
    margin-left: 15px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_contact_tel a {
    font-size: 45px;
  }
}
.footer_contact_tel a span {
  display: inline-block;
  background: url(images/icon-tel-black.svg) no-repeat;
  background-position: left calc(100% - 2px);
  background-size: 18px auto;
  padding-left: 25px;
  margin-top: 10px;
}
@media print, screen and (min-width: 960px) {
  .footer_contact_tel a span {
    background-position: left calc(100% - 3px);
    background-size: 22px auto;
    padding-left: 28px;
    margin-top: 0;
  }
}

ul.footer_contact_link {
  gap: 10px 0;
}
@media print, screen and (min-width: 768px) {
  ul.footer_contact_link {
    gap: unset;
    max-width: 900px;
    margin: 0 auto;
  }
}
ul.footer_contact_link li {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  ul.footer_contact_link li {
    width: 30%;
  }
}
ul.footer_contact_link a {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: left;
  border: 1px solid #323232;
  padding: 15px 30px;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  ul.footer_contact_link a {
    font-size: 18px;
    padding: 18px 35px;
    transition: color 0.4s;
  }
}
ul.footer_contact_link a::before {
  position: absolute;
  top: -1px;
  right: -25px;
  content: "";
  background-color: #fff;
  width: 0;
  height: calc(100% + 1px);
  -webkit-clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  transition: width 0.4s;
}
ul.footer_contact_link a span {
  position: relative;
  display: block;
}
ul.footer_contact_link a span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "→";
  transition: transform 0.4s;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  ul.footer_contact_link a:hover {
    color: #828282;
  }
  ul.footer_contact_link a:hover::before {
    left: -25px;
    right: unset;
    width: calc(100% + 50px);
  }
  ul.footer_contact_link a:hover span::after {
    transform: translateX(10px) translateY(-50%);
  }
}

/* フッターロゴ・アドレス
----------------------------------------*/
.footer_address_block {
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block {
    text-align: left;
    margin-bottom: 0;
  }
}
.footer_address_block a.footer_logo {
  display: block;
  width: 220px;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block a.footer_logo {
    width: 207px;
    margin: 0 0 30px;
    transition: opacity 0.3s;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_address_block a.footer_logo:hover {
    opacity: 0.6;
  }
}
.footer_address_block .footer_address {
  line-height: 1.5;
  margin-bottom: 15px;
}
.footer_address_block .footer_address_note {
  font-size: 12px;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 1200px) {
  .footer_address_block .footer_address_note {
    font-size: 13px;
  }
}
.footer_address_block ul.footer_address_link {
  display: flex;
  justify-content: center;
  gap: 0 15px;
  line-height: 1;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block ul.footer_address_link {
    justify-content: flex-start;
  }
}
.footer_address_block ul.footer_address_link a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  border: 1px solid #fff;
  padding: 10px 20px;
  overflow: hidden;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block ul.footer_address_link a {
    transition: color 0.4s;
  }
}
.footer_address_block ul.footer_address_link a::before {
  position: absolute;
  top: -1px;
  right: -25px;
  content: "";
  background-color: #fff;
  width: 0;
  height: calc(100% + 1px);
  -webkit-clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  clip-path: polygon(25px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
  transition: width 0.4s;
}
.footer_address_block ul.footer_address_link a span {
  position: relative;
  display: block;
  padding-right: 25px;
}
.footer_address_block ul.footer_address_link a span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "→";
  transition: transform 0.3s;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 960px) {
  .footer_address_block ul.footer_address_link a:hover {
    color: #bda570;
  }
  .footer_address_block ul.footer_address_link a:hover::before {
    left: -25px;
    right: unset;
    width: calc(100% + 50px);
  }
  .footer_address_block ul.footer_address_link a:hover span::after {
    transform: translateX(10px) translateY(-50%);
  }
}
.footer_address_block ul.footer_sns_link {
  display: flex;
  justify-content: center;
  gap: 0 10px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block ul.footer_sns_link {
    justify-content: flex-start;
  }
}
.footer_address_block ul.footer_sns_link li {
  width: 35px;
}
@media print, screen and (min-width: 960px) {
  .footer_address_block ul.footer_sns_link a {
    transition: opacity 0.3s;
  }
  .footer_address_block ul.footer_sns_link a:hover {
    opacity: 0.6;
  }
}

/* フッターリンク
----------------------------------------*/
.footer_link_area {
  background-color: #bda570;
  color: #fff;
  padding-top: 35px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area {
    padding-top: 70px;
  }
}
.footer_link_area .footer_link_block {
  display: flex;
  flex-wrap: wrap;
  gap: 35px 4%;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_block {
    justify-content: center;
    gap: 0 50px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_block {
    justify-content: flex-end;
    width: 64%;
    gap: 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer_link_area .footer_link_block {
    width: 68%;
  }
}
.footer_link_area .footer_link_block .footer_link {
  width: 47%;
}
@media print, screen and (min-width: 768px) {
  .footer_link_area .footer_link_block .footer_link {
    width: auto;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_block .footer_link {
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_block .footer_link:not(:first-child) {
    border-left: 1px solid #d1c09b;
    padding-left: 3.2%;
    margin-left: 3.2%;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer_link_area .footer_link_block .footer_link:not(:first-child) {
    padding-left: 5%;
    margin-left: 5%;
  }
}
.footer_link_area .footer_link_block .footer_link p {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_block .footer_link p {
    margin-bottom: 25px;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer_link_area .footer_link_block .footer_link p {
    font-size: 16px;
  }
}
.footer_link_area .footer_link_block ul li {
  line-height: 1;
}
.footer_link_area .footer_link_block ul li:not(:last-child) {
  margin-bottom: 1.25em;
}
.footer_link_area .footer_link_block a {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
@media print, screen and (min-width: 960px) {
  .footer_link_area .footer_link_block a {
    transition: opacity 0.3s;
  }
  .footer_link_area .footer_link_block a:hover {
    opacity: 0.6;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer_link_area .footer_link_block a {
    font-size: 14px;
  }
}

/* ボトムリンク・コピーライト
----------------------------------------*/
.footer_bottom_link_block {
  border-top: 1px solid #d1c09b;
  padding: 30px 0;
  margin-top: 30px;
}
@media print, screen and (min-width: 960px) {
  .footer_bottom_link_block {
    padding: 40px 0;
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 960px) {
  .footer_bottom_link_block .inner {
    align-items: center;
  }
}
.footer_bottom_link_block ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25em 4%;
}
@media print, screen and (min-width: 768px) {
  .footer_bottom_link_block ul {
    justify-content: center;
    gap: 0 2em;
  }
}
.footer_bottom_link_block ul li {
  width: 47%;
  line-height: 1;
}
@media print, screen and (min-width: 768px) {
  .footer_bottom_link_block ul li {
    width: auto;
  }
}
.footer_bottom_link_block ul a {
  display: inline-block;
  color: #fff;
  font-size: 12px;
}
@media print, screen and (min-width: 960px) {
  .footer_bottom_link_block ul a {
    font-size: 14px;
    transition: opacity 0.3s;
  }
  .footer_bottom_link_block ul a:hover {
    opacity: 0.6;
  }
}

.copyright {
  display: block;
  background-color: #bda570;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  padding-bottom: 65px;
}
@media print, screen and (min-width: 960px) {
  .copyright {
    padding-bottom: 40px;
  }
}/*# sourceMappingURL=style.css.map */