@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
div { @include box-shadow(8px, 8px);}
*/
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;700&display=swap");
@-webkit-keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}
@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}
/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

p {
  word-wrap: break-word;
}

a, a:hover {
  text-decoration: none;
}

/*---------------------
フォント設定 
----------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
}

.pn-title {
  display: block;
  position: relative;
  font-family: "Libre Baskerville", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0;
  padding: 0;
}
.pn-title span {
  display: block;
  font-size: 1.7rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.page-title-wrap {
  margin: 20px 0;
  margin-bottom: 50px;
}

@media (max-width: 767px) {
  .page-title-wrap {
    margin: 20px 0;
    margin-bottom: 30px;
  }
}
.page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}

.page-title-text {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  text-shadow: 0 0 3px #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.page-title-en {
  color: #b3882d;
  font-family: "Libre Baskerville", serif;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 3px;
  margin: 0 10px;
  margin-bottom: 5px;
  text-shadow: 0 0 3px #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.page-title-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  max-width: 60px;
}

.page-title-line.left {
  margin-right: 10px;
  margin-top: 0;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#b3882d));
  background: linear-gradient(to right, transparent, #b3882d);
}

.page-title-line.right {
  margin-left: 10px;
  margin-top: 0;
  background: -webkit-gradient(linear, left top, right top, from(#b3882d), to(transparent));
  background: linear-gradient(to right, #b3882d, transparent);
}

.page-title-top,
.page-title-bottom {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.page-title-top img,
.page-title-bottom img {
  display: block;
  width: 100%;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .page-title-text {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .page-title-line {
    max-width: 40px;
  }
  .page-title-top,
  .page-title-bottom {
    display: block;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }
}
.section-title-wrap {
  margin: 40px 0 20px;
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 0;
  z-index: 2;
}

.section-title-text {
  color: #fff;
  font-family: "Libre Baskerville", serif;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 3px;
  margin: 0 10px;
  text-shadow: 0 0 3px #000;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.section-title-line {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1px;
  max-width: 60px;
}

.section-title-line.left {
  margin-right: 10px;
  background: -webkit-gradient(linear, left top, right top, from(transparent), to(#b3882d));
  background: linear-gradient(to right, transparent, #b3882d);
}

.section-title-line.right {
  margin-left: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#b3882d), to(transparent));
  background: linear-gradient(to right, #b3882d, transparent);
}

.section-title-top,
.section-title-bottom {
  display: block;
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.section-title-top img,
.section-title-bottom img {
  display: block;
  width: 100%;
}

/* スマホ大・タブレット縦（〜767px） */
@media (max-width: 767px) {
  .section-title-text {
    font-size: 1.5rem;
    font-weight: 400;
  }
  .section-title-line {
    max-width: 40px;
  }
  .section-title-top,
  .section-title-bottom {
    display: block;
    width: 100%;
    max-width: 140px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=typo.css.map */