@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;600&display=swap");
/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

.sf-front [data-aos=fade-up] {
  -webkit-transform: translate3d(0, 80px, 0);
          transform: translate3d(0, 80px, 0);
}

.sf-front .header {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 4.5rem;
  padding: 4px 2%;
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .sf-front .header {
    padding-right: 0;
    height: 64px;
    font-size: 1.1em;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sf-front .header-logo {
  display: block;
  margin: 0 auto 0 0;
  line-height: 0;
  color: #231f20;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .sf-front .header-logo {
    margin: 0 auto 0 0;
  }
}
.sf-front .header-logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #231f20;
  font-size: 26px;
  font-weight: bold;
}
.sf-front .header-logo-img {
  max-width: 200px;
  max-height: 64px;
}
@media screen and (max-width: 768px) {
  .sf-front .header-logo-img {
    max-height: 56px;
  }
}
.sf-front .header-nav {
  width: auto;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .sf-front .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 15px 8% 40px;
    background-color: #eee;
  }
}
.sf-front .header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .sf-front .header-nav-list {
    display: block;
  }
}
.sf-front .header-nav-list-item {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .sf-front .header-nav-list-item {
    margin: 0.5rem auto 0;
    border-bottom: 1px solid currentColor;
  }
}
.sf-front .header-nav-list-item-link {
  display: block;
  width: 100%;
  color: #231f20;
  font-size: 16px;
  white-space: nowrap;
  text-decoration: none;
  padding: 1.2rem 0.5rem;
  -webkit-transition: 0.2s ease color;
  -o-transition: 0.2s ease color;
  transition: 0.2s ease color;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sf-front .header-nav-list-item-link {
    text-align: center;
    padding: 0.6em 0 1em;
  }
}
.sf-front .header-nav-list-item-link:hover {
  color: #777;
}
@media screen and (max-width: 768px) {
  .sf-front .header-nav.active {
    display: block;
  }
}
.sf-front .header-language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  padding: 0 0.5rem;
  position: relative;
  cursor: pointer;
}
.sf-front .header-language-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #231f20;
  font-size: 1rem;
}
.sf-front .header-language-current:hover {
  color: #777;
}
.sf-front .header-language-current-name {
  position: relative;
}
.sf-front .header-language-current-name::after {
  content: "";
  position: absolute;
  width: 115%;
  height: 1px;
  background: #231f20;
  bottom: -0.2em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.sf-front .header-language-current-arrow {
  position: relative;
  width: 0;
  height: 0;
  margin-left: 0.5em;
  border-style: solid;
  border-color: #231f20 transparent transparent;
  border-width: 0.3em 0.3em 0;
}
.sf-front .header-language-list {
  display: none;
  position: absolute;
  top: 100%;
  z-index: 1;
  background: #fff;
}
.sf-front .header-language-list-item-link {
  color: #231f20;
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: block;
}
.sf-front .header-language-list-item-link:hover {
  color: #777;
}
.sf-front .header-language:hover .header-language-list {
  display: block;
}
@media screen and (max-width: 768px) {
  .sf-front .header-language:hover .header-language-list {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sf-front .header-language.active .header-language-list {
    display: block;
  }
}
.sf-front .header-hamburger {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #fff;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .sf-front .header-hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.sf-front .header-hamburger span {
  content: "";
  display: block;
  height: 1px;
  width: 24px;
  border-radius: 3px;
  background-color: #231f20;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.sf-front .header-hamburger span:first-of-type {
  top: 37%;
}
.sf-front .header-hamburger span:last-of-type {
  top: 63%;
}

.sf-front .main-visual {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 0;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .sf-front .main-visual {
    padding: 0;
    margin-bottom: 60px;
  }
}
.sf-front .main-visual-video {
  width: 100%;
  height: 100%;
}
.sf-front .main-visual-youtube {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.2%;
  pointer-events: none;
}
.sf-front .main-visual-youtube-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sf-front .about {
  margin: 80px auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .about {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
}
.sf-front .about-title {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .about-title {
    margin-bottom: 20px;
  }
}
.sf-front .about-text {
  white-space: pre-wrap;
  font-size: 16px;
  text-align: center;
  overflow-wrap: break-word;
}

.sf-front .news {
  margin: 80px auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .news {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
}
.sf-front .news-title {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .news-title {
    margin-bottom: 20px;
  }
}
.sf-front .news-list-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.5rem 0;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid #231f20;
}
.sf-front .news-list-item:first-child {
  border-top: 1px solid #231f20;
}
.sf-front .news-list-item-date {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .sf-front .news-list-item-date {
    width: 6.5em;
  }
}
.sf-front .news-list-item-content {
  width: 80%;
  white-space: pre-wrap;
}
@media screen and (max-width: 768px) {
  .sf-front .news-list-item-content {
    width: calc(100% - 6.5em);
  }
}

.sf-front .menu {
  margin: 80px auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .menu {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
}
.sf-front .menu-title {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .menu-title {
    margin-bottom: 20px;
  }
}
.sf-front .menu-list {
  text-align: center;
}
.sf-front .menu-list-item {
  line-height: 0;
}
.sf-front .menu-list-item:nth-of-type(n + 2) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .menu-list-item:nth-of-type(n + 2) {
    margin-top: 1rem;
  }
}
.sf-front .menu-list-item-link {
  line-height: 0;
}
.sf-front .menu-list-item-link:hover {
  opacity: 0.9;
}
.sf-front .menu-list-item-link-img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .sf-front .menu-list-item-link-img {
    max-width: 100%;
    max-height: inherit;
  }
}
.sf-front .menu-list-item-link-canvas {
  max-width: 100%;
}
.sf-front .menu-list-item-link-file-name {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 0.3em;
}

.sf-front .gallery {
  margin: 80px auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .gallery {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
}
.sf-front .gallery_title {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .gallery_title {
    margin-bottom: 20px;
  }
}
.sf-front .gallery-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 0;
  margin: 0 auto;
}
.sf-front .gallery-list-item {
  width: 24%;
  height: 0;
  padding-top: 13.5%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sf-front .gallery-list-item {
    width: 49%;
    padding-top: 27.5625%;
  }
}
.sf-front .gallery-list-item:nth-of-type(4n + 2), .sf-front .gallery-list-item:nth-of-type(4n + 3), .sf-front .gallery-list-item:nth-of-type(4n + 4) {
  margin-left: 1.3333333333%;
}
@media screen and (max-width: 768px) {
  .sf-front .gallery-list-item:nth-of-type(4n + 2), .sf-front .gallery-list-item:nth-of-type(4n + 3), .sf-front .gallery-list-item:nth-of-type(4n + 4) {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .sf-front .gallery-list-item:nth-of-type(even) {
    margin-left: 2%;
  }
}
.sf-front .gallery-list-item:nth-of-type(n + 5) {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .sf-front .gallery-list-item:nth-of-type(n + 5) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .sf-front .gallery-list-item:nth-of-type(n + 3) {
    margin-top: 2%;
  }
}
.sf-front .gallery-list-item-link {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.sf-front .gallery-list-item-link:hover {
  opacity: 0.9;
}
.sf-front .gallery-list-item-link-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sf-front .info {
  margin: 80px auto;
  width: 100%;
  max-width: 1080px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .sf-front .info {
    margin: 40px auto;
    max-width: 100%;
    padding: 0 20px;
  }
}
.sf-front .info-title {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .info-title {
    margin-bottom: 20px;
  }
}
.sf-front .info-list {
  margin: 0 auto;
  max-width: 1080px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .sf-front .info-list {
    display: block;
    max-width: 100%;
  }
}
.sf-front .info-list-item {
  width: 49%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sf-front .info-list-item {
    width: auto;
  }
}
.sf-front .info-list-item:nth-of-type(even) {
  margin-left: 2%;
}
@media screen and (max-width: 768px) {
  .sf-front .info-list-item:nth-of-type(even) {
    margin-left: 0;
  }
}
.sf-front .info-list-item:nth-of-type(n + 3) {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .sf-front .info-list-item:nth-of-type(n + 3) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .sf-front .info-list-item:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}
.sf-front .info-list-item-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.sf-front .info-list-item-text {
  white-space: pre-wrap;
}
.sf-front .info-map {
  margin: 60px auto 0;
  max-width: 1080px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .sf-front .info-map {
    max-width: 100%;
  }
}
.sf-front .info-map iframe {
  width: 100%;
  height: 400px;
}

.sf-front .footer {
  background: #707070;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .sf-front .footer {
    margin-top: 60px;
  }
}
.sf-front .footer-sns-list {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36%;
  padding: 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .sf-front .footer-sns-list {
    width: 38.5%;
  }
}
.sf-front .footer-sns-list-item {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.sf-front .footer-sns-list-item:nth-child(n+2) {
  margin-left: 16px;
}
.sf-front .footer-sns-list-item-link {
  margin: 0;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .sf-front .footer-sns-list-item-link {
    font-size: 2.5rem;
  }
}
.sf-front .footer-copyright {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1rem;
  padding: 1.25rem 0;
}

.sf-front .coming-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80vh;
}
.sf-front .coming-soon-text {
  color: #231f20;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sf-front .coming-soon-text {
    margin-bottom: 20px;
  }
}

html {
  min-height: 100%;
}

.sf-front {
  height: 100%;
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: underline;
  color: currentColor;
  -webkit-transition: 0.2s ease opacity;
  -o-transition: 0.2s ease opacity;
  transition: 0.2s ease opacity;
}
a:hover {
  color: currentColor;
  opacity: 0.8;
}