@charset "UTF-8";
/*!
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags:
*/
/**
 # Foundation
 */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

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

/* reset for form */
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-sizing: border-box;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  box-sizing: border-box;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

/*
	SASS Vars
---------------------------------------------------------------------------- */
/*
	CSS Vars
---------------------------------------------------------------------------- */
:root {
  --main-color: #453402;
  --sub-color: #887A4B;
  --accent-color: #FF0000;
}

:root {
  --font-main: 'Roboto', sans-serif;
  --font-sub: 'Expletus Sans', cursive , sans-serif;
  --font-serif: "Noto Serif JP", "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, sans-serif,-apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
  text-align: left;
  background-color: #F4F0E2;
  font-size: 1.4rem;
  font-weight: normal;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: 0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 4.06vw;
    padding: 0;
  }
}

/**
 # Layout
 */
/*--------------------------------------------------------------
    # footer.scss
--------------------------------------------------------------*/
.l--footer {
  padding: 50px;
}

.l--footer-copyright {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  color: var(--main-color);
}

@media screen and (max-width: 768px) {
  .l--footer {
    padding: 10.25641vw;
  }
  .l--footer-copyright {
    font-size: 2.82051vw;
  }
}

/*
     Page top
--------------------------------------------------------------*/
.page--top-wrap {
  margin: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: var(--color-sub);
}

.page--top-wrap a {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  background-color: #000;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.page--top-wrap a:before {
  width: 16px;
  height: 2px;
  margin-top: -10px;
  background-color: #FFF;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page--top-wrap a:after {
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
  margin-left: -2px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
}

.page--top-wrap a:hover {
  opacity: 0.65;
}

@media screen and (max-width: 768px) {
  .page--top-wrap {
    width: 10.25641vw;
    height: 10.25641vw;
    bottom: 0;
    right: 0;
  }
  .page--top-wrap a {
    right: 0;
    position: absolute;
    display: block;
    width: 10.25641vw;
    height: 10.25641vw;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .page--top-wrap a:before {
    width: 16px;
    height: 2px;
    margin-top: -10px;
    background-color: #FFF;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .page--top-wrap a:after {
    width: 10px;
    height: 10px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    margin-left: -2px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .page--top-wrap a:hover {
    opacity: 0.65;
  }
}

/*--------------------------------------------------------------
    # header.scss
--------------------------------------------------------------*/
.clearance--box {
  height: 70px;
}

.l--header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  height: 70px;
  background-color: rgba(244, 240, 226, 0.65);
}

.l--header__inner {
  position: relative;
  height: 70px;
}

.l--header-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
}

.l--header-logo img {
  width: 100%;
  vertical-align: bottom;
}

.l--header-logo a {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--header-logo a:hover {
  opacity: 0.45;
}

.l--header-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 0;
  top: 0;
  box-sizing: border-box;
  width: 180px;
  height: 70px;
  background-color: #A88615;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--header-contact span {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: #FFF;
}

.l--header-contact:link {
  text-decoration: none;
}

.l--header-contact:visited {
  text-decoration: none;
}

.l--header-contact:hover {
  text-decoration: none;
  background-color: var(--main-color);
}

.l--header-contact:hover span {
  color: #FFF;
}

@media screen and (max-width: 768px) {
  .clearance--box {
    height: 15.38462vw;
  }
  .l--header {
    height: 15.38462vw;
  }
  .l--header__inner {
    position: relative;
    height: 15.38462vw;
  }
  .l--header-logo {
    width: 35.89744vw;
  }
  .l--header-logo img {
    width: 100%;
    vertical-align: bottom;
  }
  .l--header-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    box-sizing: border-box;
    width: 61.53846vw;
    height: 20.51282vw;
    background-color: #A88615;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .l--header-contact span {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--main-color);
  }
  .l--header-contact:link {
    text-decoration: none;
  }
  .l--header-contact:visited {
    text-decoration: none;
  }
}

/**
 # Objects -  Compornent -
 */
/*
    _text.scss
---------------------------------------------------------------------------- */
p {
  line-height: 2;
  font-size: 1.6rem;
  margin: 0 0 25px;
}

p b {
  font-weight: 700;
}

.ex--links {
  padding: 0 20px 10px 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  font-weight: 700;
  background-image: url(../images/common/parts/icon__01.png);
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right top;
  position: relative;
  display: inline-block;
}

.ex--links:link {
  color: #000;
  text-decoration: none;
}

.ex--links:visited {
  color: #000;
  text-decoration: none;
}

.ex--links:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.65;
}

.ex--links::after {
  content: "";
  height: 1px;
  width: 91.5%;
  background-color: #000;
  display: inline-block;
  bottom: 0;
  position: absolute;
  left: 0;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 4.10256vw;
    margin: 0 0 5.12821vw;
    line-height: 1.66667;
  }
}

/**
 # Objects -  project -
 */
/*
    animation.scss
---------------------------------------------------------------------------- */
/*
    home[keyvisual]
--------------------------------------------------------------*/
body.loaded .h--keyv-main-title,
body.loaded .h--keyv-main-title::after {
  animation-delay: 2.00s;
  animation-iteration-count: 1;
  animation-duration: 1800ms;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

body.loaded .h--keyv-main-title {
  animation-delay: 2.00s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  position: relative;
  animation-name: clip-text;
  display: inline-block;
}

body.loaded .h--keyv-main-title::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}

body.loading .h--keyv-main-photo img {
  opacity: 0;
  transform: scale(2);
  transition: 1.5s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0s;
}

body.loaded .h--keyv-main-photo img {
  opacity: 1.0;
  transform: scale(1);
}

body.loading .h--keyv-main {
  opacity: 0;
  background-color: #FFF;
  transition: 4s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.5s;
}

body.loaded .h--keyv-main {
  opacity: 1.0;
  background-color: #000;
}

body.loading .h--keyv-main-subtitle {
  opacity: 0.5;
  transform: translateY(0);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 2.5s;
  -webkit-filter: blur(10px);
  filter: blur(10px);
  transform: scale(1.05);
}

body.loaded .h--keyv-main-subtitle {
  opacity: 1;
  transform: translateY(0);
  -webkit-filter: blur(0);
  filter: blur(0);
  transform: scale(1);
}

body.loading .h--keyv-main-illust {
  opacity: 0;
  transform: translateY(2.5vw);
  transition: 0.25s cubic-bezier(0.09, 0.43, 0.1, 0.79) 3s;
}

body.loaded .h--keyv-main-illust {
  opacity: 1;
  transform: translateY(0);
}

/*
    home[1stblock]
--------------------------------------------------------------*/
body.loading .approach {
  opacity: 0;
  transform: translateY(300px);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 1s;
}

body.loaded .approach {
  opacity: 1;
  transform: translateY(0);
}

/*
    home[contents]
--------------------------------------------------------------*/
.h--psection-content {
  opacity: 0;
  transform: translateY(150px);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.25s;
}

.h--psection-content.lazyloaded {
  opacity: 1;
  transform: translateY(0);
}

.h--psection-photo {
  opacity: 0;
  transform: scale(0.85);
  transition: 2.55s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.75s;
}

.h--psection-photo.lazyloaded {
  opacity: 1;
  transform: scale(1);
}

.h--links {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.25s;
}

.h--links.lazyloaded {
  opacity: 1;
  transform: translateY(0);
}

.h--banner {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s cubic-bezier(0.09, 0.43, 0.1, 0.79) 0.25s;
}

.h--banner.lazyloaded {
  opacity: 1;
  transform: translateY(0);
}

/*
    Global menu
---------------------------------------------------------------------------- */
.l--gmenu-list {
  position: absolute;
  right: 220px;
  display: flex;
  align-items: center;
}

.l--gmenu-list > li {
  margin: 0 25px 0;
}

.l--gmenu-list > li a {
  font-size: 1.5rem;
  line-height: 1.0;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: var(--main-color);
  padding: 27.5px 0;
  font-family: var(--font-serif);
  display: block;
  position: relative;
}

.l--gmenu-list > li a:link {
  text-decoration: none;
}

.l--gmenu-list > li a:visited {
  text-decoration: none;
}

.l--gmenu-list > li a:hover {
  text-decoration: none;
}

.l--gmenu-list > li a:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  background-color: var(--main-color);
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
}

.l--gmenu-list > li a:hover::after {
  width: 100%;
}

/*
    Hamburger menu
---------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  .burger--wrap {
    height: 10.25641vw;
    width: 10.25641vw;
    top: 2.5641vw;
    right: 5.12821vw;
    position: absolute;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #FFF;
    border-radius: 50%;
    border: 2px solid var(--main-color);
  }
  .burger {
    width: 5.12821vw;
    height: 3.58974vw;
    z-index: 9999;
    display: flex;
    align-items: center;
    position: relative;
  }
  .burger .line {
    width: 5.12821vw;
    height: 2.0px;
    background: var(--main-color);
    transition: 0.3s;
    right: 0;
    position: absolute;
  }
  .burger::before {
    content: "";
    position: absolute;
    width: 5.12821vw;
    height: 2.0px;
    top: 0;
    right: 0;
    background: var(--main-color);
    transition: 0.6s;
  }
  .burger::after {
    content: "";
    position: absolute;
    width: 5.12821vw;
    height: 2.0px;
    bottom: 0;
    right: 0;
    background: var(--main-color);
    transition: 0.8s;
  }
  .navigation.nav-active {
    display: block;
    z-index: 300;
    animation: show 0.25s linear 0s;
  }
  @keyframes show {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .navigation {
    display: none;
    opacity: 0.0;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    position: fixed;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .navigation .navigation--content {
    background-color: var(--main-color);
    padding: 0;
    height: 100vh;
    width: 100%;
    position: absolute;
    right: 0;
    z-index: 100;
  }
  .navigation .navigation--content__inner {
    position: relative;
    padding: 25.64103vw 0 0;
  }
  .navigation-logo {
    display: none;
  }
  .navigation-list {
    width: auto;
    margin: 0 auto;
    padding: 0;
  }
  .navigation-list__inner {
    display: block;
  }
  .burger-active::before {
    transform: rotate(135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--main-color);
  }
  .burger-active::after {
    transform: rotate(-135deg);
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: var(--main-color);
    width: 100%;
  }
  .burger-active > .line {
    transform: scale(0);
  }
  .nav-active {
    top: 0;
    right: 0;
    opacity: 1.0;
  }
  .burger-active .line {
    background-color: var(--main-color);
  }
  .l--header-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    right: inherit;
    top: inherit;
    margin: 7.69231vw auto 0;
    width: 61.53846vw;
    height: 15.38462vw;
    font-weight: 700;
    background-color: #FFF;
    border-radius: 7.69231vw;
    border: 1px solid #FFF;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all  0.6s ease;
  }
  .l--header-contact:link {
    text-decoration: none;
    color: var(--main-color);
  }
  .l--header-contact:visited {
    text-decoration: none;
    color: var(--main-color);
  }
  .l--header-contact:hover {
    text-decoration: none;
    color: #FFF;
    background-color: var(--main-color);
  }
  .l--gmenu-list {
    position: relative;
    top: inherit;
    right: inherit;
    display: block;
  }
  .l--gmenu-list > li {
    margin: 0;
    text-align: center;
  }
  .l--gmenu-list > li a {
    font-size: 1.6rem;
    line-height: 1.0;
    letter-spacing: 0.04em;
    font-weight: 300;
    position: relative;
    color: #FFF;
    padding: 16px 0;
    display: block;
  }
  .l--gmenu-list > li a:link {
    text-decoration: none;
  }
  .l--gmenu-list > li a:visited {
    text-decoration: none;
  }
  .l--gmenu-list > li a:hover {
    text-decoration: none;
  }
  .l--gmenu-list > li a:after {
    display: none;
  }
}

/**
 # Objects -  pages -
 */
/*--------------------------------------------------------------
    # _home.scss
--------------------------------------------------------------*/
/*  config & common
--------------------------------------------------------------*/
.anchor--links {
  content: "";
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

.h--cmn-title {
  padding: 30px 0 90px;
  position: relative;
  text-align: center;
  margin: 0 0 30px;
}

.h--cmn-title:after {
  content: "";
  width: 400px;
  height: 180px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(../images/h__cmn-title__bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: 1;
}

.h--cmn-title span {
  display: block;
  color: var(--main-color);
}

.h--cmn-title__en {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  letter-spacing: 0.06em;
  font-weight: 300;
  color: var(--main-color);
  margin: 0 0 10px;
}

.h--cmn-title__jp {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--main-color);
}

.h--cmn-title-sub {
  font-size: 2.4rem;
  color: var(--main-color);
  font-weight: 700;
  font-family: var(--font-serif);
  text-align: center;
  padding: 0 0 25px;
  letter-spacing: 0.06em;
  margin: 0 0 40px;
  position: relative;
}

.h--cmn-title-sub:after {
  content: "";
  width: 100%;
  height: 5px;
  border: 1px solid #C7C3B3;
  position: absolute;
  bottom: 0;
  left: 0;
  box-sizing: border-box;
}

.h--cmn-button {
  width: 480px;
  height: 90px;
  background-color: #FFF;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #B10905;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  position: relative;
}

.h--cmn-button:after {
  content: "";
  width: 30px;
  height: 14px;
  display: block;
  position: absolute;
  top: 45%;
  right: 20px;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all  0.6s ease;
  background-image: url(../images/cmn__arrow01.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.h--cmn-button span {
  font-weight: 900;
  font-size: 2.4rem;
  letter-spacing: 0.08em;
}

.h--cmn-button:link {
  text-decoration: none;
  color: #B10905;
}

.h--cmn-button:visited {
  text-decoration: none;
  color: #B10905;
}

.h--cmn-button:hover {
  text-decoration: none;
  opacity: 0.45;
}

.h--cmn-button:hover:after {
  right: 15px;
}

.cmn--caution {
  display: block;
  font-size: 1.2rem;
  color: #4E4E4E;
  margin: 15px 0 0;
}

@media screen and (max-width: 768px) {
  .anchor--links {
    content: "";
    display: block;
    height: 15.38462vw;
    margin-top: -15.38462vw;
  }
  .h--cmn-title {
    padding: 7.69231vw 0 15.38462vw;
    margin: 0 0 5.12821vw;
  }
  .h--cmn-title:after {
    width: 76.92308vw;
    height: 34.61538vw;
  }
  .h--cmn-title__en {
    font-family: var(--font-serif);
    font-size: 7.69231vw;
    margin: 0 0 2.5641vw;
  }
  .h--cmn-title__jp {
    font-size: 3.33333vw;
  }
  .h--cmn-title-sub {
    font-size: 5.12821vw;
    padding: 0 0 5.12821vw;
    margin: 0 0 7.69231vw;
  }
  .h--cmn-title-sub:after {
    height: 1.02564vw;
    border: 0.25641vw solid #C7C3B3;
  }
  .h--cmn-button {
    width: 76.92308vw;
    height: 17.94872vw;
    border: 1.28205vw solid #B10905;
  }
  .h--cmn-button:after {
    content: "";
    width: 3.84615vw;
    height: 1.79487vw;
    top: 45%;
    right: 2.5641vw;
  }
  .h--cmn-button span {
    font-size: 4.10256vw;
  }
  .cmn--caution {
    font-size: 2.82051vw;
    margin: 2.5641vw 0 0;
  }
}

/*  Mainvisual
--------------------------------------------------------------*/
#slider {
  position: relative;
}

.slick-initialized .slick-slide {
  width: 340px;
}

.slick-initialized .slick-slide img {
  width: 100%;
  vertical-align: bottom;
}

.slick-slide {
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  #slider {
    position: relative;
  }
  .slick-initialized .slick-slide {
    width: auto;
  }
  .slick-initialized .slick-slide img {
    width: 100%;
    vertical-align: bottom;
  }
  .slick-slide {
    margin: 0 5.12821vw;
  }
}

.h--hero {
  padding: 5px 0;
  position: relative;
}

.h--hero img {
  width: 100%;
  vertical-align: bottom;
}

.h--hero:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  background: #d3b75c;
  background: linear-gradient(0deg, #d3b75c 0%, #a88616 100%);
}

.h--hero:after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #d3b75c;
  background: linear-gradient(0deg, #d3b75c 0%, #a88616 100%);
}

@media screen and (max-width: 768px) {
  .h--hero {
    padding: 1.28205vw 0;
  }
  .h--hero:before {
    height: 1.28205vw;
  }
  .h--hero:after {
    height: 1.28205vw;
  }
}

/*  section [message]
--------------------------------------------------------------*/
.h--message {
  padding: 30px 32px 15px;
}

.h--message__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--message__inner h3 {
  color: #FFF;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.7;
  margin-bottom: 2em;
  text-align: center;
  top: -60px;
  position: relative;
}

.h--message-datebox {
  background-color: var(--main-color);
}

.h--message-datebox__inner {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.h--message-datebox-title {
  width: 22.07792%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--main-color);
  letter-spacing: 0.06em;
  min-height: 50px;
}

.h--message-datebox-text {
  width: 75.32468%;
  margin: 0;
  color: #FFF;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.06em;
}

.h--message-text {
  text-align: center;
  font-size: 1.5rem;
  /*line-height: 2.8;*/
  line-height: 1.7;
  font-weight: 500;
  color: var(--main-color);
  top: -60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .h--message {
    padding: 3.84615vw 5.12821vw 0;
  }
  .h--message__inner {
    max-width: initial;
  }
  .h--message-datebox {
    background-color: var(--main-color);
  }
  .h--message-datebox__inner {
    padding: 2.5641vw;
  }
  .h--message-datebox-title {
    width: 22.07792%;
    font-weight: 700;
    font-size: 4.10256vw;
    min-height: 10.25641vw;
  }
  .h--message-datebox-text {
    width: 75.32468%;
    font-size: 3.84615vw;
  }
  .h--message-text {
    font-size: 3.33333vw;
    line-height: 2.30769;
    top: -16.66vw;
    text-align: left;
  }
  .h--message-text br {
    /*display: none;*/
  }
}

/*  section [event]
--------------------------------------------------------------*/
.h--event {
  padding: 0 32px 15px;
  background-color: #FFF;
}

.h--event__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--event-carousel__wrapper {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}

.h--event-carousel__inner {
  margin: 0 0 15px;
}

.h--event-caption {
  margin: 15px 0 40px;
  text-align: center;
  color: var(--main-color);
  font-size: 1.3rem;
}

.h--event-data {
  display: flex;
  flex-wrap: wrap;
}

.h--event-data dt {
  width: 18.75%;
  margin: 0 0 40px;
}

.h--event-data dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  border: 2px solid var(--main-color);
  min-height: 50px;
  color: var(--main-color);
  font-weight: 700;
}

.h--event-data dd {
  width: 78.125%;
  padding: 10px 0 25px 30px;
}

.h--event-data dd p {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--main-color);
  letter-spacing: 0.06em;
}

.h--event-data iframe {
  width: 100%;
  height: 340px;
  margin: 0 0 30px;
}

.h--event-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.h--event-list li {
  width: 31.25%;
  margin: 0 3.125% 60px 0;
}

.h--event-list li:nth-child(3n) {
  margin: 0 0 60px 0;
}

.h--event-list-photo {
  position: relative;
  margin: 0 0 10px;
}

.h--event-list-photo img {
  width: 100%;
  vertical-align: bottom;
  z-index: 1;
}

.h--event-list-photo figcaption {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  background: black;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  text-align: center;
  padding: 35px 0 20px;
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 700;
}

.h--event-list-exp {
  color: var(--main-color);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
  text-align: center;
  display: block;
}

@media screen and (max-width: 768px) {
  .h--event {
    padding: 0 5.12821vw 5.12821vw;
  }
  .h--event__inner {
    max-width: initial;
  }
  .h--event-carousel__inner {
    margin: 0 0 3.84615vw;
  }
  .h--event-caption {
    margin: 3.84615vw 0 5.12821vw;
    font-size: 2.82051vw;
  }
  .h--event-data {
    display: block;
  }
  .h--event-data dt {
    width: auto;
    margin: 0 0 2.5641vw;
  }
  .h--event-data dt span {
    font-size: 3.58974vw;
    min-height: 10.25641vw;
  }
  .h--event-data dd {
    width: auto;
    padding: 0;
    margin: 0 0 11.53846vw;
  }
  .h--event-data dd p {
    font-size: 3.33333vw;
  }
  .h--event-data iframe {
    width: 100%;
    height: 76.92308vw;
    margin: 0 0 5.12821vw;
  }
  .h--event-list {
    display: flex;
    flex-wrap: wrap;
  }
  .h--event-list li {
    width: 47.5%;
    margin: 0 5% 5.12821vw 0;
  }
  .h--event-list li:nth-child(3n) {
    margin: 0 5% 5.12821vw 0;
  }
  .h--event-list li:nth-child(2n) {
    margin: 0 0 5.12821vw 0;
  }
  .h--event-list-photo {
    margin: 0 0 2.5641vw;
  }
  .h--event-list-photo figcaption {
    padding: 5.12821vw 0;
    color: #FFF;
    font-size: 3.33333vw;
  }
  .h--event-list-exp {
    font-size: 3.07692vw;
  }
}

/*  section [ticket]
--------------------------------------------------------------*/
.h--ticket {
  padding: 0 32px 100px;
}

.h--ticket__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--ticket-cautionlist {
  font-size: 1.2rem;
  margin: 0 0 45px;
}

.h--ticket-cautionlist li {
  margin: 0 0 5px;
  line-height: 1.66667;
  padding: 0 0 0 10px;
  position: relative;
}

.h--ticket-cautionlist li:before {
  content: "";
  background-color: #000;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 8.5px;
}

.h--ticket-table {
  margin: 0 0 30px;
}

.h--ticket-table .price__cell {
  text-align: center;
}

.h--ticket-table th {
  background-color: #887A4B;
  border: 1px solid #4A3B0B;
  vertical-align: middle;
  text-align: center;
  color: #FFF;
  font-weight: 500;
  font-weight: 1.5rem;
  padding: 10px;
}

.h--ticket-table th .s--font {
  font-size: 1.3rem;
}

.h--ticket-table td {
  background-color: #FFF;
  border: 1px solid #4A3B0B;
  padding: 10px;
  font-size: 1.2rem;
  vertical-align: middle;
  line-height: 1.66667;
}

.h--ticket-table td strong {
  color: #CC0000;
  font-weight: 700;
}

/* *************** */
@media screen and (max-width: 768px) {
  .h--ticket {
    padding: 0 5.12821vw 12.82051vw;
  }
  .h--ticket__inner {
    max-width: initial;
    margin: 0 auto;
  }
  .h--ticket-cautionlist {
    font-size: 2.82051vw;
    margin: 0 0 7.69231vw;
  }
  .h--ticket-cautionlist li {
    margin: 0 0 1.28205vw;
    line-height: 1.66667;
    padding: 0 0 0 2.5641vw;
  }
  .h--ticket-cautionlist li:before {
    width: 0.76923vw;
    height: 0.76923vw;
    top: 2.05128vw;
  }
  .h--ticket-table-scroll {
    overflow-x: auto;
  }
  .h--ticket-table {
    margin: 0 0 30px;
    width: 800px;
  }
  .h--ticket-table th {
    background-color: #887A4B;
    border: 1px solid #4A3B0B;
    vertical-align: middle;
    text-align: center;
    color: #FFF;
    font-weight: 500;
    font-weight: 1.5rem;
    padding: 10px;
  }
  .h--ticket-table th .s--font {
    font-size: 1.3rem;
  }
  .h--ticket-table td {
    background-color: #FFF;
    border: 1px solid #4A3B0B;
    padding: 10px;
    font-size: 1.2rem;
    vertical-align: middle;
    line-height: 1.66667;
  }
  .h--ticket-table td strong {
    color: #CC0000;
    font-weight: 700;
  }
}

/*  section [exhibition]
--------------------------------------------------------------*/
.h--exh {
  padding: 0 32px 15px;
  background-color: #FFF;
}

.h--exh__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--exh-box__wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 0 50px;
}

.h--exh-box__wrap.h--exh__lchange .h--exh-box-content {
  order: 2;
}

.h--exh-box__wrap.h--exh__lchange .h--exh-box-photo {
  order: 1;
}

.h--exh-box__wrap.h--exh__lchange .h--exh-box-photo-main {
  left: -60px;
  position: relative;
}

.h--exh-box__wrap.h--exh__lchange .h--exh-box-photo-sub {
  /*left: 60px;*/
  left: -60px;
  position: relative;
}

.h--exh-box-content {
  width: 50%;
}

.h--exh-box-photo {
  width: 44.79167%;
}

.h--exh-box-photo-main {
  width: 480px;
  margin: 0 0 30px;
}

.h--exh-box-photo-sub {
  /*width: 360px;*/
  width: 480px;
}

.h--exh-box-cbox {
  margin: 0 0 30px;
}

.h--exh-box-cbox dt {
  margin: 0 0 15px;
  line-height: 1.8rem;
  font-size: 1.8rem;
  color: var(--main-color);
  font-weight: 700;
}

.h--exh-box-cbox dt.numtitle {
  display: flex;
  align-items: center;
}

.h--exh-box-cbox dd {
  font-size: 1.5rem;
  line-height: 2;
}

.h--exh-box-cbox-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  color: #FFF;
  border-radius: 50%;
  margin: 0 10px 0 0;
}

.h--exh-box {
  margin: 0 0 70px;
  background-color: #EFE9DF;
  padding: 10px;
}

.h--exh-box__inner {
  background-color: #FFF;
  padding: 40px 0;
}

/* 2024/11/22 対応 */
.h--exh-box__inner .h--cmn-button {
  pointer-events: none;
}
.h--exh-box__inner .h--cmn-button:after {
  display: none;
}
/* *************** */

.h--exh-box-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 3.0rem;
  margin: 0 0 20px;
}

.h--exh-box-lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .h--exh {
    padding: 0 5.12821vw 5.12821vw;
  }
  .h--exh__inner {
    max-width: initial;
  }
  .h--exh-box__wrap {
    display: block;
    margin: 0 0 7.69231vw;
  }
  .h--exh-box__wrap.h--exh__lchange .h--exh-box-content {
    order: 1;
  }
  .h--exh-box__wrap.h--exh__lchange .h--exh-box-photo {
    order: 2;
  }
  .h--exh-box__wrap.h--exh__lchange .h--exh-box-photo-main {
    left: 0;
    position: relative;
  }
  .h--exh-box__wrap.h--exh__lchange .h--exh-box-photo-sub {
    left: 0;
    position: relative;
  }
  .h--exh-box-content {
    width: auto;
  }
  .h--exh-box-photo {
    width: auto;
  }
  .h--exh-box-photo-main {
    width: 80%;
    margin: 0 auto 7.69231vw;
    display: block;
  }
  .h--exh-box-photo-sub {
    width: 80%;
    margin: 0 auto;
    display: block;
  }
  .h--exh-box-cbox {
    margin: 0 0 5.12821vw;
  }
  .h--exh-box-cbox dt {
    margin: 0 0 2.5641vw;
    line-height: 3.84615vw;
    font-size: 3.84615vw;
  }
  .h--exh-box-cbox dd {
    font-size: 3.33333vw;
    line-height: 2;
  }
  .h--exh-box-cbox-number {
    width: 5.12821vw;
    height: 5.12821vw;
    margin: 0 2.5641vw 0 0;
  }
  .h--exh-box {
    margin: 0 0 12.82051vw;
    padding: 1.28205vw;
  }
  .h--exh-box__inner {
    padding: 5.12821vw 0;
  }
  .h--exh-box-title {
    font-size: 5.12821vw;
    margin: 0 0 5.12821vw;
  }
  .h--exh-box-lead {
    text-align: center;
    font-size: 3.33333vw;
  }
}

/*  section [profile]
--------------------------------------------------------------*/
.h--profile {
  padding: 0 32px 80px;
}

.h--profile__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--profile-box__wrapper {
  display: flex;
  justify-content: space-between;
}

.h--profile-box-photo {
  width: 41.66667%;
}

.h--profile-box-photo figcaption {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  margin: 15px 0 0;
}

.h--profile-box-photo-frame {
  border: 1px solid #707070;
  background-color: #FFF;
  padding: 10px;
}

.h--profile-box-photo-frame img {
  width: 100%;
  vertical-align: bottom;
}

.h--profile-box-content {
  width: 56.25%;
  background-color: #FFF;
}

.h--profile-box-content__inner {
  padding: 30px;
}

.h--profile-box-content__inner p {
  font-size: 1.4rem;
  line-height: 2;
}

.h--profile-box-title {
  font-weight: 700;
  color: var(--main-color);
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .h--profile {
    padding: 0 5.12821vw 15.38462vw;
  }
  .h--profile__inner {
    max-width: initial;
  }
  .h--profile-box__wrapper {
    display: block;
  }
  .h--profile-box-photo {
    width: auto;
    margin: 0 0 5.12821vw;
  }
  .h--profile-box-photo figcaption {
    font-size: 3.33333vw;
    margin: 3.84615vw 0 0;
  }
  .h--profile-box-photo-frame {
    padding: 1.28205vw;
  }
  .h--profile-box-content {
    width: auto;
  }
  .h--profile-box-content__inner {
    padding: 5.12821vw;
  }
  .h--profile-box-content__inner p {
    font-size: 3.07692vw;
  }
  .h--profile-box-title {
    font-size: 3.58974vw;
    text-align: left;
    margin: 0 0 5.12821vw;
  }
}

/*  section [contact]
--------------------------------------------------------------*/
.h--contact {
  padding: 60px 32px;
  background-color: #FFF;
}

.h--contact__inner {
  max-width: 960px;
  margin: 0 auto;
}

.h--contact-box {
  margin: 0;
  background-color: #EFE9DF;
  padding: 10px;
}

.h--contact-box__inner {
  background-color: #FFF;
  padding: 40px 0;
}

.h--contact-box-title {
  text-align: center;
  font-family: var(--font-serif);
  letter-spacing: 0.03em;
  font-weight: 400;
  font-size: 3.0rem;
  margin: 0 0 20px;
}

.h--contact-box-lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}

.h--contact-box-data {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.h--contact-box-data dt {
  width: 28.57143%;
  text-align: center;
  border: 2px solid var(--main-color);
  margin: 0 0 20px;
  padding: 10px 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--main-color);
}

.h--contact-box-data dd {
  width: 61.90476%;
  padding: 10px 0 0 20px;
  color: var(--main-color);
  font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
  .h--contact {
    padding: 10.25641vw 5.12821vw 2.5641vw;
  }
  .h--contact__inner {
    max-width: initial;
  }
  .h--contact-box {
    margin: 0 0 12.82051vw;
    padding: 1.28205vw;
  }
  .h--contact-box__inner {
    padding: 5.12821vw 0;
  }
  .h--contact-box-title {
    font-size: 5.12821vw;
    margin: 0 0 5.12821vw;
  }
  .h--contact-box-lead {
    text-align: center;
    font-size: 3.33333vw;
  }
  .h--contact-box-data {
    max-width: 76.92308vw;
  }
  .h--contact-box-data dt {
    width: 30.95238%;
    margin: 0 0 5.12821vw;
    padding: 2.5641vw 0;
    font-size: 2.82051vw;
  }
  .h--contact-box-data dd {
    width: 64.28571%;
    padding: 2.5641vw 0 0 5.12821vw;
    font-size: 2.82051vw;
  }
}

/*--------------------------------------------------------------
    # _pages.scss
--------------------------------------------------------------*/
/**
 # Objects -  utility -
 */
/*========== utility.scss ==========*/
.u-radius5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
}

.u-radiusC {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

.transition {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all  0.3s ease;
}

.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

.clearfix {
  zoom: 1;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.pc {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}

.smp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .smp {
    display: block !important;
  }
}

/*--------------------------------------------------------------
    # _print.scss
--------------------------------------------------------------*/
@media print {
  .l--header {
    opacity: 100;
    position: relative;
    width: 100%;
  }
  .fadein {
    opacity: 1.0;
    transform: translate(0, 0);
  }
  .keyVisual__pritBlock {
    display: block !important;
  }
  .keyVisual__pritBlock img {
    width: 100%;
  }
  .keyVisual {
    height: auto !important;
  }
  .h--productsBox__thum {
    width: 640px;
    height: 480px;
    position: absolute;
    overflow: hidden;
    right: 0;
    top: -60px;
  }
  .h--productsBox__thum img {
    width: 100%;
    transition: none !important;
  }
  .h--productsBox__thumCover {
    width: 640px;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: none;
    z-index: 10;
    transition: none !important;
  }
  .h--productsBox__title {
    position: absolute;
    margin: 0;
    padding: 0;
    text-align: center;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    color: #FFF;
    line-height: 1.0;
  }
}


/* ==============================
2025
============================== */
body {
  /*background: url(../images/bg.webp);*/
  background: linear-gradient(90deg, #1408d3,#090387,#1408d3);
  background-size: 100% auto;
}
.h--hero:before,
.h--hero:after {
  display: none;
}
.h--ticket-cautionlist li:before {
  background-color: #FFF;
}
.h--message-text,
.h--ticket-cautionlist,
.l--footer-copyright {
  color: #FFF;
}
.h--event-data dt span,
.h--contact-box-data dt {
  color: #333;
  border-color: #333;
}
.l--gmenu-list > li a,
.h--message-datebox-title,
.h--event-data dd p,
.h--cmn-title-sub,
.h--event-list-exp,
.h--exh-box-cbox dt,
.h--profile-box-title,
.h--contact-box-data dd {
  color: #333;
}
.h--hero:before {
  background: #111;
}
.h--hero:after {
  background: linear-gradient(0deg, #111 0%, #FFF 100%);
}
.h--cmn-title-sub:after {
  border-color: #888;
}
.l--header-contact {
  background: #FFF;
  border: 3px solid #B10905;
  box-sizing: border-box;
}
.l--header-contact span {
  color: #B10905;
}
.h--cmn-title span,
.h--profile-box-photo figcaption {
  color: #FFF;
}
.h--message-datebox-text {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .h--message-datebox-text {
    font-size: 3vw;
  }
}
.h--message-datebox {
  background: none;
  border: 3px double #FFF;
  box-sizing: border-box;
}
.h--exh-box,
.h--contact-box {
  background: #DDD;
}
/*.h--event,
.h--exh,
.h--contact {
  background: #EEE;
}*/
.h--ticket-table {
  width: 100%;
}
.h--ticket-table th {
  background: #8e94ff;
  border-color: #333;
}
.h--ticket-table td {
  border-color: #333;
  text-align: center;
}
.l--header-contact:hover {
  background: #B10905;
}
.h--exh-box .h--cmn-button span {
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .h--exh-box .h--cmn-button span {
    font-size: 3.2vw;
  }
}

.exh-2025 {
  width: 100%;
}
.exh-2025 tr {
  border: 1px solid #000;
}
.exh-2025 tr th {
  background: linear-gradient(90deg, #1408d3,#090387,#1408d3);
  color: #FFF;
  text-align: center;
  padding: 1em 0;
}
.exh-2025 tr td {
  box-sizing: border-box;
  padding: .75em .5em;
  line-height: 1.7;
}
.h--exh-box__wrap {
  column-gap: 30px;
  justify-content: center;
}
.h--exh-box-photo-main,
.h--exh-box-photo-sub {
  width: 100%;
}
@media screen and (max-width: 768px){
  .exh-2025 {
    margin-top: 30px;
  }
}
/*# sourceMappingURL=style.css.map */