@charset "UTF-8";
/* Scss Document */
/* Scss Document */
/* Scss Document */
/* ==========================================================================
All Mixin
========================================================================== */
/* ================================
グローバル変数の定義
=================================== */
/* ================================
Color
=================================== */
/* ================================
Font Family
=================================== */
/* ================================
Font Weight
=================================== */
/* ================================
環境設定
=================================== */
/* ================================
Color
=================================== */
/* ================================
Font
=================================== */
html {
  font-size: 16px;
}

body {
  background-color: #FAF8F4;
  color: #3A1808;
}

h1, h2, h3, h4, h5, p, span, li, a, th, td, label, input, div {
  font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  line-height: 1.5;
}

p {
  font-size: 1rem;
  line-height: 1.87;
}

a {
  color: #3A1808;
}

/* ================================
Bootstrap Overwrite
=================================== */
@media screen and (max-width: 767px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* ================================
Extend
=================================== */
/* Scss Document */
/* ================================
共通クラス
=================================== */
.hidden {
  overflow: hidden;
}

/* ================================
Position
=================================== */
.relative {
  position: relative;
}

/* ================================
Background
=================================== */
.bg-black {
  background-color: #000;
}

/* ================================
Border Radius
=================================== */
.br20 {
  border-radius: 20px;
}

/* ================================
Font
=================================== */
.second-jp {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.f-reg {
  font-weight: 400 !important;
}

.f-med {
  font-weight: 500 !important;
}

.f-bold {
  font-weight: 700;
}

.h-xs {
  font-size: 20px;
}

.h-sm {
  font-size: 24px;
}

.h-lg {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .h-lg {
    font-size: 24px;
  }
}

.f-italic {
  font-style: italic;
}

.f-primary {
  color: #1CB38B;
}

.l-h-lg {
  line-height: 2;
}

.allcap {
  text-transform: uppercase;
}

.l-sp-0 {
  letter-spacing: 0;
}

.l-sp-lg {
  letter-spacing: 0.1em;
}

/* ================================
Margin
=================================== */
.mt-lg {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .mt-lg {
    margin-top: 75px;
  }
}

.mb-lg {
  margin-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .mb-lg {
    margin-bottom: 75px;
  }
}

/* ================================
Padding
=================================== */
.pt-lg {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .pt-lg {
    padding-top: 75px;
  }
}

.pt-xl {
  padding-top: 150px;
}
@media screen and (max-width: 767px) {
  .pt-xl {
    padding-top: 100px;
  }
}

.pb-lg {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .pb-lg {
    padding-bottom: 75px;
  }
}

.py-md {
  padding-top: 75px;
  padding-bottom: 75px;
}
@media screen and (max-width: 767px) {
  .py-md {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.py-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .py-lg {
    padding-top: 75px;
    padding-bottom: 75px;
  }
}

.py-xl {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media screen and (max-width: 767px) {
  .py-xl {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ================================
Border Radius
=================================== */
.br-10 {
  border-radius: 10px;
}

/* ================================
Link
=================================== */
/* ================================
List
=================================== */
.list-style-none {
  list-style: none;
  padding-left: 0;
}

.list-style-inline {
  list-style: none;
  padding-left: 0;
}
.list-style-inline li {
  display: inline-block;
}

.list-style-default li {
  padding-bottom: 7px;
}
.list-style-default li:last-child {
  padding-bottom: 0;
}

/* ================================
Animation
=================================== */
/*フェードインアニメ*/
/*左から右にフェードイン*/
.left-to-right {
  opacity: 0.1;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.left-to-right.scrollin {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

/*右から左にフェードイン*/
.right-to-left {
  opacity: 0.1;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.right-to-left.scrollin {
  opacity: 1;
  -webkit-transform: translate(0);
          transform: translate(0);
}

/*下から上にフェードイン*/
.down-to-top {
  opacity: 0.1;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.down-to-top.scrollin {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/* ================================
Loading
=================================== */
#loading {
  width: 100%;
  height: 100vh;
  background: url("../../img/common-bg.jpg") center center repeat;
  background-size: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999999;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
#loading img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 220px;
}

#loading.loaded {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  top: -100vh;
}

/* ================================
Header
=================================== */
#header-pc {
  padding: 25px 0 150px;
  position: fixed;
  z-index: 99;
  width: 100%;
  left: 0;
  top: 0;
}

#header-pc-bg {
  width: 100%;
  height: 152px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}

#header-pc-deco {
  position: absolute;
  right: 0;
  bottom: -90px;
  width: 195px;
  z-index: 99;
}

#header-pc-logo {
  width: 100%;
  position: absolute;
  left: 0;
  top: 25px;
  z-index: 99;
}
#header-pc-logo img {
  width: 100%;
}

#header-pc-nav {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 20px;
  display: inline-block;
  position: relative;
  z-index: 99;
}
#header-pc-nav ul li {
  padding-right: 20px;
}
#header-pc-nav ul li:last-child {
  padding-right: 0;
}
#header-pc-nav ul li a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3B4043;
  text-decoration: none;
}

#header-sp {
  width: 100%;
  position: absolute;
  z-index: 99;
  width: 100%;
  left: 0;
  top: 0;
}

#header-sp-bg {
  width: 100%;
  height: 104px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  #header-sp-bg {
    height: 66px;
  }
}

#header-sp-logo {
  position: absolute;
  left: 0;
  top: 10px;
  width: 100%;
  z-index: 9999;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  #header-sp-logo {
    padding-left: 20px;
  }
}
#header-sp-logo img {
  width: 150px;
}
@media screen and (max-width: 767px) {
  #header-sp-logo img {
    width: 106px;
  }
}

#header-sp-toggler {
  position: fixed;
  right: 50px;
  width: 40px;
  height: 28px;
  top: 30px;
  z-index: 999999;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  #header-sp-toggler {
    right: 30px;
    width: 20px;
    height: 14px;
    top: 20px;
  }
}
#header-sp-toggler .line {
  background-color: #fff;
  position: absolute;
  height: 4px;
  display: block;
}
@media screen and (max-width: 767px) {
  #header-sp-toggler .line {
    height: 2px;
  }
}
#header-sp-toggler .line--top {
  width: 100%;
  left: 0;
  top: 0;
}
#header-sp-toggler .line--center {
  width: 100%;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#header-sp-toggler .line--bottom {
  width: 55%;
  bottom: 0;
  left: 0;
}

#header-sp-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  display: none;
  background: url("../../img/common-bg.jpg") center center repeat;
  background-size: auto;
}

#header-sp-menu .inner {
  min-height: 100vh;
}

#header-sp-menu-nav {
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
}
#header-sp-menu-nav ul li {
  padding-bottom: 20px;
}
#header-sp-menu-nav ul li:last-child {
  padding-bottom: 0;
}
#header-sp-menu-nav ul li a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3B4043;
  text-decoration: none;
}

#header-home #header-sp {
  height: 0;
}
#header-home #header-sp #header-sp-logo, #header-home #header-sp #header-sp-bg {
  display: none;
}

/* ================================
Footer
=================================== */
#footer {
  background: url("../../img/common-bg.jpg") center center repeat;
  background-size: auto;
  padding-top: 75px;
  padding-bottom: 50px;
}

#footer-divider {
  position: absolute;
  left: -1px;
  top: 0;
}

@media screen and (max-width: 991px) {
  #footer-logo {
    text-align: center;
  }
}
#footer-logo img {
  width: 100%;
}
@media screen and (max-width: 991px) {
  #footer-logo img {
    width: 222px;
  }
}

#footer-nav {
  border-radius: 20px;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  #footer-nav {
    text-align: center;
  }
}
#footer-nav ul li {
  padding-bottom: 20px;
}
#footer-nav ul li:last-child {
  padding-bottom: 0;
}
#footer-nav ul li a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  color: #3B4043;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  letter-spacing: 0.05em;
}
#footer-nav ul li a:hover {
  color: rgba(59, 64, 67, 0.7);
}

#footer-info {
  margin-top: 36px;
}
@media screen and (max-width: 1200px) {
  #footer-info {
    margin-top: 28px;
  }
}
@media screen and (max-width: 991px) {
  #footer-info {
    margin-top: 0;
  }
}
#footer-info th, #footer-info td {
  color: #fff;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: none;
  padding: 0 0 15px;
  line-height: 1.5;
}
#footer-info th a, #footer-info td a {
  color: #fff;
  text-decoration: none;
}
#footer-info th {
  padding-right: 25px;
  white-space: nowrap;
}
#footer-info tr:first-child th, #footer-info tr:first-child td {
  font-weight: 700;
}

#footer-sns li {
  padding-right: 20px;
}
@media screen and (max-width: 991px) {
  #footer-sns li {
    display: block;
  }
}
@media screen and (max-width: 991px) {
  #footer-sns li {
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
#footer-sns li:last-child {
  padding-right: 0;
}
#footer-sns li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}
#footer-sns li a img {
  padding-right: 7px;
}

#footer-credit {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 991px) {
  #footer-credit {
    text-align: center;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3); /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3); /* 拡大率 */
  }
}
@-webkit-keyframes homeScrollbar {
  0% {
    top: -110px;
  }
  100% {
    top: -20px;
  }
}
@keyframes homeScrollbar {
  0% {
    top: -110px;
  }
  100% {
    top: -20px;
  }
}
@-webkit-keyframes titleBar {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}
@keyframes titleBar {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}
/* Scss Document */
/* ================================
Common Parts
=================================== */
.common-btn {
  padding: 10px 35px;
  border-radius: 24px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #1CB38B;
  color: #fff;
  display: inline-block;
}
.common-btn:hover {
  opacity: 0.7;
  color: #fff;
}
.common-btn--wht {
  background-color: #fff;
  color: #1CB38B;
}
.common-btn--wht:hover {
  color: #1CB38B;
}
.common-btn--l-green {
  background-color: rgba(28, 179, 139, 0.24);
  color: #1CB38B;
}
.common-btn--l-green:hover {
  color: #1CB38B;
}

.common-badge {
  padding: 3px 10px 4px;
  border-radius: 24px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  background-color: #3A1808;
}

.badge--sports-health {
  background-color: #1951E8;
}
.badge--recreation {
  background-color: #00B2EC;
}
.badge--music {
  background-color: #8D21DD;
}
.badge--kitchen-car {
  background-color: #D01F41;
}
.badge--fair-fes {
  background-color: #E267B5;
}
.badge--volunteer {
  background-color: #677FE2;
}
.badge--history-culuture {
  background-color: #6FBE72;
}
.badge--nature {
  background-color: #1CB38B;
}
.badge--cinema {
  background-color: #FAC634;
}
.badge--others {
  background-color: #A3A3A3;
}

.event-period {
  margin-bottom: 10px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #1CB38B;
}
.event-post-date {
  font-size: 12px;
  color: rgba(58, 24, 8, 0.8);
}

/* ================================
Page共通
=================================== */
.pages-header {
  background-size: cover !important;
  background-repeat: no-repeat !important;
  position: relative;
  padding-top: 320px;
  padding-bottom: 240px;
}
@media screen and (max-width: 767px) {
  .pages-header {
    padding-top: 236px;
    padding-bottom: 228px;
  }
}
.pages-header__title {
  margin: 0;
  text-align: center;
  color: #fff;
  font-size: 36px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
.pages-header__divider {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.pages-body {
  margin-top: -100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  .pages-body {
    margin-top: -75px;
  }
}
@media screen and (max-width: 767px) {
  .pages-body {
    padding-bottom: 75px;
  }
}

.pages-body-wrap {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  padding: 70px;
}
@media screen and (max-width: 767px) {
  .pages-body-wrap {
    padding: 50px 20px;
  }
}

.pages-body-cards {
  border-radius: 0 0 20px 20px;
}
#event-slider {
  display: grid;
  grid-column: 3;
  grid-template-columns: repeat(auto-fill, minmax(286px, 1fr));
  gap: 30px;
  max-width: 1116px;
}
@media screen and (max-width: 991px) {
  #event-slider .slick-list {
    overflow: visible;
  }
}
#event-slider .slick-arrow {
  display: none !important;
}

#event-slider .wrap {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  #event-slider .wrap {
    width: 100%;
  }
}
#event-slider .wrap:hover {
  color: #3A1808;
  opacity: 0.7;
}
#event-slider .wrap h3 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
@media screen and (max-width: 991px) {
  #event-slider .wrap h3 {
    font-size: 18px;
  }
}
#event-slider .wrap__img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16/9;
}
#event-slider .wrap__txt {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
#event-slider .wrap__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#event-slider .wrap__option ul {
  margin: 0;
  padding: 0;
}

/* ================================
この場所について
=================================== */
#about-header {
  padding-top: 240px;
  padding-bottom: 187px;
}
@media screen and (max-width: 767px) {
  #about-header {
    padding-top: 150px;
    padding-bottom: 135px;
  }
}

#about-header-title {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  color: #fff;
  text-align: start;
  white-space: nowrap;
  margin: 0 auto;
}
#about-header-title span {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding-right: 15px;
  display: inline-block;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #about-header-title span {
    font-size: 34px;
    padding-right: 25px;
  }
}
@media screen and (max-width: 767px) {
  #about-header-title span {
    font-size: 28px;
  }
}
#about-header-title span:before {
  content: "";
  width: 4px;
  height: 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: animeTxt 1s ease-in-out forwards;
          animation: animeTxt 1s ease-in-out forwards;
}
#about-header-title span:first-child {
  padding-right: 0;
}

#about-sc1 {
  background-color: #1CB38B;
}

@media screen and (max-width: 767px) {
  #about-sc1 .mt-lg {
    margin-top: 50px;
  }
}

#about-sc1-title {
  position: relative;
}
#about-sc1-title img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 363px;
}
@media screen and (max-width: 767px) {
  #about-sc1-title img {
    width: 235px;
  }
}

#about-sc1 p {
  font-size: 18px;
  line-height: 2;
}

/* ================================
イベント情報
=================================== */
.contents-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contents-status {
    display: block;
  }
}
.contents-status .common-badge {
  margin-bottom: 10px;
}

/* ================================
Home
=================================== */
#home-hero {
  background: url("../../img/common-bg.jpg") center center repeat;
  background-size: auto;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 991px) {
  #home-hero {
    padding-top: 120px;
  }
}
@media screen and (max-width: 575px) {
  #home-hero {
    padding-bottom: 180px;
  }
}

#home-hero-title {
  position: absolute;
  left: 0;
  top: 13%;
  z-index: 1;
  width: 32%;
}
@media screen and (max-width: 991px) {
  #home-hero-title {
    top: inherit;
    bottom: -8%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 295px;
  }
}
@media screen and (max-width: 575px) {
  #home-hero-title {
    width: 50%;
    bottom: -40%;
  }
}

@-webkit-keyframes animeTxt {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes animeTxt {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
#home-hero-catch {
  position: absolute;
  right: 9%;
  top: 35%;
  z-index: 9;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  color: #fff;
}
@media screen and (max-width: 991px) {
  #home-hero-catch {
    right: inherit;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    top: 5%;
  }
}
@media screen and (max-width: 575px) {
  #home-hero-catch {
    top: -30px;
  }
}
#home-hero-catch span {
  font-size: 38px;
  font-weight: 500;
  letter-spacing: 0.25em;
  padding-right: 15px;
  display: inline-block;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #home-hero-catch span {
    font-size: 28px;
  }
}
#home-hero-catch span:before {
  content: "";
  width: 4px;
  height: 0;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: animeTxt 1s ease-in-out forwards;
          animation: animeTxt 1s ease-in-out forwards;
}
#home-hero-catch span:first-child {
  padding-right: 0;
}

#home-hero-deco1 {
  position: absolute;
  left: 7%;
  bottom: 16%;
  width: 39%;
}
@media screen and (max-width: 991px) {
  #home-hero-deco1 {
    left: -5%;
    bottom: 16%;
    width: 46%;
  }
}
@media screen and (max-width: 575px) {
  #home-hero-deco1 {
    left: 2%;
    bottom: 15%;
    width: 34%;
  }
}

#home-hero-deco2 {
  position: absolute;
  right: 11%;
  top: 15%;
  width: 16%;
  z-index: 9;
}
@media screen and (max-width: 991px) {
  #home-hero-deco2 {
    right: -2%;
    top: 20%;
    width: 130px;
  }
}
@media screen and (max-width: 575px) {
  #home-hero-deco2 {
    right: 6%;
    top: 17%;
    width: 17%;
  }
}

.home-hero-divider {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}

#home-hero-slider .wrap {
  text-align: center;
}
#home-hero-slider .wrap svg {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 575px) {
  #home-hero-slider .wrap svg {
    width: 90%;
  }
}
#home-hero-slider .wrap img {
  width: 100%;
}

#home-hero-slider .slick-arrow {
  display: none !important;
}

#home-hero-nav {
  position: absolute;
  left: 50%;
  bottom: 9%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 30px;
}
@media screen and (max-width: 991px) {
  #home-hero-nav {
    display: none;
  }
}
#home-hero-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#home-hero-nav ul li {
  padding-right: 25px;
}
#home-hero-nav ul li:last-child {
  padding-right: 0;
}
#home-hero-nav ul li a {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3B4043;
  text-decoration: none;
  white-space: nowrap;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#home-hero-nav ul li a:hover {
  color: rgba(59, 64, 67, 0.3);
}

#home-about-gr1 {
  margin-top: -12em;
  background: rgb(250, 248, 244);
  background: -webkit-gradient(linear, left top, right top, from(rgba(250, 248, 244, 0)), color-stop(50%, rgba(250, 248, 244, 0)), color-stop(50%, rgb(28, 179, 139)), to(rgb(28, 179, 139)));
  background: linear-gradient(90deg, rgba(250, 248, 244, 0) 0%, rgba(250, 248, 244, 0) 50%, rgb(28, 179, 139) 50%, rgb(28, 179, 139) 100%);
}
@media screen and (max-width: 991px) {
  #home-about-gr1 {
    margin-top: -28%;
  }
}

#home-about-gr1 .inner {
  position: relative;
  margin-left: 15px;
}
@media screen and (max-width: 991px) {
  #home-about-gr1 .inner {
    padding-top: 48% !important;
  }
}
@media screen and (max-width: 767px) {
  #home-about-gr1 .inner {
    padding-top: 42% !important;
  }
}
#home-about-gr1 .inner:before {
  content: "";
  width: 80%;
  height: 100%;
  background-color: #1CB38B;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 0 0 20px;
}
@media screen and (max-width: 991px) {
  #home-about-gr1 .inner:before {
    width: 100%;
  }
}

#home-about-gr1-img {
  position: absolute;
  right: 0;
  top: 25px;
}

#home-about-gr1-img2 {
  position: absolute;
  left: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #home-about-gr1-img2 {
    width: 235px;
  }
}

#home-news {
  overflow: hidden;
}

#home-news-title {
  position: relative;
}
#home-news-title img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  #home-news-title img {
    width: 213px;
  }
}

#home-news .wrap {
  margin-bottom: 10px;
  text-decoration: none;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#home-news .wrap:hover {
  opacity: 0.7;
}
#home-news .wrap__txt {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
  #home-news .wrap__txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
  }
}
#home-news .wrap__txt h3 {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 991px) {
  #home-news .wrap__txt h3 {
    font-size: 16px;
  }
}
#home-news .wrap__txt .news-post-date {
  font-size: 14px;
  color: rgba(58, 24, 8, 0.8);
}
@media screen and (max-width: 991px) {
  #home-news .wrap__txt .news-post-date {
    text-align: left;
  }
}

#home-event {
  overflow: hidden;
}

#home-event-title {
  position: relative;
}
#home-event-title img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 767px) {
  #home-event-title img {
    width: 213px;
  }
}

#home-event .inner {
  display: block;
  width: 100%;
}

#home-event-slider {
  display: grid;
  grid-column: 3;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap: 30px;
  max-width: 1116px;
}
@media screen and (max-width: 991px) {
  #home-event-slider {
    display: -webkit-box;
    width: calc(100% + 60px);
    margin: 0 0 0 -30px;
    padding: 0 30px;
    overflow-x: auto;
  }
}
@media screen and (max-width: 991px) {
  #home-event-slider .slick-list {
    overflow: visible;
  }
}
#home-event-slider .slick-arrow {
  display: none !important;
}

#home-event-slider .wrap {
  display: block;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  #home-event-slider .wrap {
    width: 95%;
  }
}
#home-event-slider .wrap:hover {
  color: #3A1808;
  opacity: 0.7;
}
#home-event-slider .wrap h3 {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 3em;
}
@media screen and (max-width: 991px) {
  #home-event-slider .wrap h3 {
    font-size: 18px;
  }
}
#home-event-slider .wrap__img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  aspect-ratio: 16/9;
}
#home-event-slider .wrap__txt {
  margin-bottom: 10px;
  padding: 20px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
#home-event-slider .wrap__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#home-event-slider .wrap__option ul {
  margin: 0;
  padding: 0;
}

#home-map-title {
  position: relative;
}
#home-map-title img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  #home-map-title img {
    -webkit-transform: none;
            transform: none;
    top: -15px;
  }
}

#home-map-img {
  margin-top: -445px;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  #home-map-img {
    margin-top: 30px;
  }
}

#home-access-gr1 {
  margin-top: -12em;
  background: #6FBE72;
  background: -webkit-gradient(linear, left top, right top, from(#6fbe72), color-stop(50%, #6fbe72), color-stop(50%, rgba(111, 190, 114, 0)), to(rgba(111, 190, 114, 0)));
  background: linear-gradient(90deg, #6fbe72 0%, #6fbe72 50%, rgba(111, 190, 114, 0) 50%, rgba(111, 190, 114, 0) 100%);
}
@media screen and (max-width: 991px) {
  #home-access-gr1 {
    margin-top: -28%;
  }
}

#home-access-gr1 .inner {
  position: relative;
  margin-right: 15px;
}
@media screen and (max-width: 991px) {
  #home-access-gr1 .inner {
    padding-top: 48% !important;
  }
}
@media screen and (max-width: 767px) {
  #home-access-gr1 .inner {
    padding-top: 42% !important;
  }
}
#home-access-gr1 .inner:before {
  content: "";
  width: 80%;
  height: 100%;
  background-color: #6FBE72;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 991px) {
  #home-access-gr1 .inner:before {
    width: 100%;
  }
}

#home-access-title {
  position: relative;
}
#home-access-title img {
  position: absolute;
  left: -56px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 991px) {
  #home-access-title img {
    left: inherit;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  #home-access-title img {
    width: 265px;
  }
}

#home-access .common-btn {
  color: #6FBE72 !important;
}

#home-links .wrap {
  text-align: center;
}
#home-links .wrap__img {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
#home-links .wrap__img img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#home-links .wrap a {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #home-links .wrap a {
    font-size: 14px;
  }
}
#home-links .wrap:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#home-links .wrap:hover a {
  color: rgba(58, 24, 8, 0.7);
}/*# sourceMappingURL=style.css.map */