@charset "utf-8";
/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("sanitize.css");
/*Font Awesomeの読み込み
/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
/*全体の設定
---------------------------------------------------------------------------*/
html,
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  /*基準となるフォントサイズ。下の方にある「画面幅980px以上」で基準を大きなサイズに再設定しています。*/
  scroll-behavior: smooth;
}

html.db {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  height: 100%;
}

body {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  /*フォント種類*/
  -webkit-text-size-adjust: none;
  letter-spacing: 0.05em;
  background: #fff;
  color: #333;
  /*全体の文字色*/
  line-height: 1.8em;
  /*行間*/
  overflow-x: hidden;
}

body.db {
  overflow: hidden;
}

/*リセット*/
figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav {
  margin: 0;
  padding: 0;
}

/*table全般の設定*/
table {
  border-collapse: collapse;
}

/*画像全般の設定*/
img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/*videoタグ*/
video {
  max-width: 100%;
}

/*iframeタグ*/
iframe {
  width: 100%;
}

/*ul,olタグ*/
ul,
ol {
  margin: 0px;
  padding: 0px;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
  color: #fff;
  /*文字色*/
  transition: 0.3s;
}

/*sectionタグと、詳細ページの共通設定
---------------------------------------------------------------------------*/
section {
  margin: 0 auto;
  padding: 100px 0 0;
  /*ボックス内の余白*/
}

@media screen and (max-width:1280px) {
  section {
    padding: 70px 0 0;
  }
}

/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  text-align: center;
  background: #fff;
}

#splash svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
.tophead {
  display: flex;
  justify-content: space-between;
  position: relative;
}

header {
  width: 200px;
  margin: 60px 0 0 60px;
  z-index: 3;
}

/*ヘッダーのリンクテキストの文字色*/
header a {
  color: #333;
  background: linear-gradient(#333, #333) 0 100%/0 2px no-repeat;
  transition: background .4s;
}

header a:hover {
  color: #B90018;
  transition: all .3s;
  background-size: 100% 2px;
}

/*ロゴ画像*/
header #logo img {
  display: block;
}

header #logo {
  margin-right: auto
}

#header.scroll {
  position: fixed;
  animation-name: anime;
  animation-duration: 0.3s;
  width: 150px;
  margin: 60px 0 0 20px;
}

@keyframes anime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*トップページのメイン画像
---------------------------------------------------------------------------*/
/*全体を囲むブロック*/
#main_area {
  width: 80%;
  min-height: 755px;
  max-width: 1600px;
  background: url("../images/main.jpg") no-repeat center bottom;
  background-size: auto 755px;
  position: relative;
  margin-left: 60px;
  border-radius: 0px 0px 0px 80px;
}

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -23px;
  top: -23px;
  /*テキストの形状*/
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 70px;
  background: #333;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

#main_area .img1 {
  position: absolute;
  top: 40px;
  right: 255px;
  animation-delay: 5.5s;
}

#main_area .img2 {
  position: absolute;
  bottom: 30px;
  right: 110px;
  animation-delay: 6s;
}

/*menubarブロック初期設定
---------------------------------------------------------------------------*/
#menubar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

#menubar li {
  margin-bottom: 20px;
}

#menubar img {
  display: none;
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  #menubar li {
    font-size: 18px;
    margin-bottom: 25px;
  }

  #menubar img {
    display: block;
    margin: 60px auto 0;
  }
}

/*メニューを非表示にしておく*/
#menubar {
  display: none;
}

/*開閉用のスタイル*/
#menubar.db {
  display: block;
}

#menubar.dn {
  display: block;
}

/*メニュー１個あたりの設定*/
#menubar a {
  text-decoration: none;
  text-align: left;
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広くする指定*/
}

/*小さな端末用の設定（開閉ブロック）
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
.s #menubar.db {
  position: fixed;
  overflow: auto;
  z-index: 3;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  /*上下、左右へのブロック内の余白*/
  text-align: center;
  /*内容をセンタリング*/
  color: #333;
  /*文字色*/
  opacity: 1;
  transition: all 1.6s;
}

.s #menubar.db a {}

.s #menubar.dn {
  opacity: 0;
  display: none;
  padding: 70px 20px;
  /*上下、左右へのブロック内の余白*/
  color: #333;
  /*文字色*/
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*開閉用のスタイル*/
#menubar_hdr.db {
  display: flex;
}

#menubar_hdr.dn {
  display: none;
}

/*３本バーを囲むブロック*/
#menubar_hdr {
  position: fixed;
  z-index: 101;
  cursor: pointer;
  right: 0px;
  top: 0px;
  padding: 10px;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: rgba(185, 0, 23, 0.7);
  border-bottom-left-radius: 20%;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
  display: block;
  transition: 0.3s;
  /*アニメーションにかける時間。0.3秒。*/
  border-top: 5px solid #fff;
  /*線の幅、線種、色*/
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(2) {
  transform-origin: center center;
  /*変形の起点。センターに。*/
  width: 45px;
  /*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
  transform: rotate(45deg) translate(3.8px, 10px);
  /*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※2本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
  transform: rotate(-45deg) translate(3.8px, -10px);
  /*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロック*/
main {
  text-align: center;
}

/*mainブロック内のh2タグ*/
main h2 {
  margin: 0 0 70px;
  /*上、左右、下へのタグの外にとるスペース*/
  line-height: 1.5;
  /*行間を少し狭く*/
  font-size: 50px;
  /*文字サイズ。3倍。*/
  text-align: center;
  /*文字をセンタリング*/
  letter-spacing: 0.1em;
  /*文字間隔を少しだけ広くとる設定*/
  font-weight: 400;
  /*文字の太さ*/
  text-underline-offset: 8px;
}

main figure {
  text-align: center;
}

/*h2内のsupanタグ。小文字部分です。*/
main h2 span {
  display: block;
  font-weight: normal;
  color: #777;
  /*文字色*/
  font-size: 13px;
  /*文字サイズ*/
}

/*mainブロック内のh3タグ*/
main h3 {
  margin: 0;
  /*上、左右、下へのタグの外にとるスペース*/
}

/*mainブロックのpタグ*/
main p {
  margin: 0;
  /*上、左右、下へ空けるスペース*/
}

/*紹介（introduction）
---------------------------------------------------------------------------*/
.introduction {
  max-width: 900px;
  display: flex;
  justify-content: center;
}

.introduction h2 {
  font-size: 18px;
  display: flex;
  /* align-items: center; を baseline に変更 */
  align-items: baseline;
  transform: rotateZ(270deg);
  width: 265px;
  margin: 0;
  letter-spacing: 0;
}

/* 棒線の位置が下に行き過ぎる場合の調整 */
.introduction h2:after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: #333;
  margin-left: 10px;
  /* baselineにすると線が下に来るため、少し浮かせる調整 */
  position: relative;
  bottom: 0.3em;
}

.introduction div {
  border-radius: 20px;
  background: #f2f2f2;
  padding: 25px;
  width: 100%;
  text-align: left;
}

/* 段落全体の行間を少し広めに持つと、ルビが上の行に被りません */
.introduction p {
  line-height: 2;
}

/* 親文字（RERA）と普通の文字の足並みを揃える */
ruby {
  ruby-position: over;
  /* ルビを上に配置（念のため） */
  vertical-align: baseline;
  /* 物理的な下のラインに合わせる */
}

/* ルビ文字自体の調整 */
rt {
  font-size: 0.6em;
  /* ルビのサイズ（少し小さめが綺麗です） */
  line-height: 1;
  /* ルビのせいで行間が広がりすぎるのを防ぐ */
  margin-bottom: 2px;
  /* 親文字との距離が近すぎる場合はここで調整 */
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  .introduction {
    max-width: 90%;
    flex-direction: column;
  }

  .introduction h2 {
    transform: rotateZ(0deg);
    /* Z軸を基準点に回転する */
    width: 100%;
    margin: 0 0 20px 0;
  }

  .introduction div {
    padding: 15px;
  }
}

/*ブログ（blog）
---------------------------------------------------------------------------*/
.blog {
  max-width: 800px;
  margin: auto;
  text-align: left;
  margin-bottom: 100px;
}

.blog ul {
  padding: 0 0 30px 0;
  margin-bottom: 30px;
  border-bottom: 1px solid #F0F0F0;
  list-style: none;
}

.blog ul:last-child {
  border-bottom: none;
  padding: 0;
  margin-bottom: 0px;
}

.blog ul li:first-child {
  width: 20%;
}

.blog ul li:last-child {
  width: 80%;
}

.blog ul a {
  text-decoration: none;
  color: #333;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #bbb;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.blog ul a:last-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 0px;
  margin-bottom: 0px;
}

.blog a:hover {
  transform: translateY(6px);
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.blog .btn {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #333;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #eeee;
  border: 0.1rem solid #543618;
  box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
  text-decoration: none;
}

.blog .btn:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}

.blog .btn:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #543618;
  border-right: 3px solid #543618;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  .blog {
    max-width: 90%;
    margin-bottom: 70px;
  }

  .blog a {
    flex-direction: column;
  }

  .blog ul {
    padding: 0 0 20px 0;
    margin-bottom: 20px;
  }

  .blog ul li:first-child {
    width: 100%;
    padding-bottom: 10px;
  }

  .blog ul li:last-child {
    width: 100%;
  }

  .blog_btn {
    width: 100%;
    height: 80px;
    font-size: 25px;
  }

  .blog_btn:active {
    background-position: 0 50%;
  }
}

/*tabの設定
---------------------------------------------------------------------------*/
.tab {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.tab li {
  list-style: none;
  display: table;
  width: 50%;
  font-size: 20px;
}

.tab li span {
  font-size: 14px;
}

.tab li a {
  display: table-cell;
  position: relative;
  background: #fff;
  border-radius: 30px 0 0 0;
  text-align: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  z-index: 1;
  height: 70px;
  vertical-align: middle;
}

.tab li:last-child a {
  border-radius: 0 30px 0 0;
}

/*liにactiveクラスがついた時の形状*/
.tab li.active a {
  background: #333;
  color: #fff;
}

.tab li.active a:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(51, 51, 51, 0);
  border-top-width: 26px;
  border-bottom-width: 26px;
  border-left-width: 27px;
  border-right-width: 27px;
  margin-left: -27px;
  border-top-color: #333333;
  top: 100%;
  left: 50%;
  animation-name: displayAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 50px 20px 30px;
  border-radius: 0 0 30px 30px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

.tab2 {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.tab2 li {
  list-style: none;
  display: table;
  width: 50%;
  font-size: 20px;
}

.tab2 li span {
  font-size: 14px;
}

.tab2 li a {
  display: table-cell;
  position: relative;
  background: #fff;
  border-radius: 30px 0 0 0;
  text-align: center;
  width: 100%;
  color: #333;
  text-decoration: none;
  z-index: 1;
  height: 70px;
  vertical-align: middle;
}

.tab2 li:last-child a {
  border-radius: 0 30px 0 0;
}

/*liにactiveクラスがついた時の形状*/
.tab2 li.active a {
  background: #333;
  color: #fff;
}

.tab2 li.active a:after {
  border: solid transparent;
  content: '';
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  border-color: rgba(51, 51, 51, 0);
  border-top-width: 26px;
  border-bottom-width: 26px;
  border-left-width: 27px;
  border-right-width: 27px;
  margin-left: -27px;
  border-top-color: #333333;
  top: 100%;
  left: 50%;
  animation-name: displayAnime;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

/*エリアの表示非表示と形状*/
.area2 {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
  padding: 50px 20px 30px;
  border-radius: 0 0 30px 30px;
}

/*areaにis-activeというクラスがついた時の形状*/
.area2.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/*サポート部分
---------------------------------------------------------------------------*/
#support {
  max-width: 900px;
  text-align: left;
  margin: auto;
  padding: 100px 0 100px 0;
}

#support .area ul {
  padding: 20px 0 0 30px;
}

#support .area ul ul {
  padding: 0px 0 0 10px;
  margin-top: -10px;
}

#support .area ul ul li {
  padding: 0 0 5px 0px;
}

#support .area li {
  padding: 0 0 15px 0px;
  list-style-position: outside;
}

#support .area strong {
  color: #B90018;
  font-weight: bold;
}

#support .btn {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #333;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: #eeee;
  border: 0.1rem solid #543618;
  box-shadow: 0.2rem 0.2rem 0px 0.1rem #cccccc;
  text-decoration: none;
}

#support .btn:hover {
  transform: translate3d(0.2rem, 0.2rem, 0);
  box-shadow: none;
  opacity: 1;
  transition: all 0.2s;
}

#support .btn:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #543618;
  border-right: 3px solid #543618;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

#support .accordion-header {
  background-color: #F2F2F2;
}

#support .accordion-header.active {
  background-color: #fff;
}

#support .accordion-header span {
  padding-left: 0px;
}

#support .accordion-header span::before {
  display: none;
}

#support .accordion-header:hover {
  background-color: #fff;
}

#support .area .accordion-content ul {
  padding: 0px 10px 10px;
}

#support .area .accordion-content ol {
  padding: 0px 10px 10px 15px;
}

#support .area .accordion-content li {
  padding: 0 0 5px 0;
}

#support .area .accordion-content li:last-child {
  padding: 0px;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {
  #support {
    padding: 50px 0 50px 0;
  }
}

/*料金部分
---------------------------------------------------------------------------*/
#fee {
  padding: 100px 0 100px 0;
}
.fee table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 900px;
  table-layout: fixed;
}

.fee table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 900px;
  table-layout: fixed;
}

.fee table tr {
  background-color: #F2F2F2;
  padding: .35em;
  border-bottom: 2px solid #fff;
}

.fee table th,
.fee table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}

.fee table thead tr {
  background-color: #C42E48;
  color: #fff;
}

.fee table tbody th {
  background: #FAE3E3;
  color: #333;
  text-align: left;
}

.fee .txt {
  text-align: left;
}

.fee .price {
  text-align: left;
}

.fee .price strong {
  color: #B90018;
  font-weight: bold;
}

.fee .non {
  background: #fff
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {
  .fee table {
    border: 0;
    width: 100%
  }

  .fee table tbody th {
    background-color: #C42E48;
    display: block;
    border-right: none;
  }

  .fee table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }

  .fee table tr {
    display: block;
    margin-bottom: .625em;
  }

  .fee table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: 14px;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 8em;
    border-right: none;
  }

  .fee table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #C42E48;
  }

  .fee table td:last-child {
    border-bottom: 0;
  }

  .fee table tbody th {
    color: #fff;
  }
}

/*スタッフ
---------------------------------------------------------------------------*/
.counsel {
  margin: 0 auto 100px;
  width: 900px;
}

.counsel ul {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.counsel li {
  width: 50%;
  padding: 35px 0;
  list-style: none;
}

.counsel img {
  margin: auto;
}

.counsel li strong {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
}

.counsel li span {
  font-size: 12px;
}

.counsel h3 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px;
}

.counsel div {
  text-align: left;
  width: 80%;
  margin: auto;
}

.counsel li:first-child {
  background: #F2F2F2;
}

.counsel li:nth-child(2) {
  animation-delay: 0.2s;
}

.counsel li:nth-child(3) {
  animation-delay: 0.4s;
}

.counsel li:last-child {
  padding: 0;
  animation-delay: 0.6s;
  background: #F2F2F2;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:960px) {
  .counsel {
    width: 100%;
    margin: 0 auto 70px;
  }

  .counsel ul {
    flex-direction: column;
  }

  .counsel li {
    width: 100%;
    padding: 35px 0;
  }
}

/*よくあるご質問部分
---------------------------------------------------------------------------*/
#qa {
  max-width: 900px;
  text-align: left;
  margin: auto;
  padding: 100px 0 100px 0;
}

.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #151E2F;
}

.accordion-header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(0deg);
}

.accordion-header.active {
  color: #B90018;
  font-weight: bold;
}

.accordion-header.active span::before {
  color: #B90018;
}

.accordion-content {
  display: none;
  background: #F2F2F2;
  padding: 20px;
}

.accordion-content a {
  color: #B90018;
}

.accordion-header span {
  padding-left: 25px;
  position: relative;
}

.accordion-header span::before {
  position: absolute;
  content: "Q";
  top: -3px;
  left: 0;
  color: #151E2F;
  font-size: 17px;
}

/* hover */
.accordion-header:hover {
  background-color: #F2F2F2;
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {
  #qa {
    padding: 50px 0 50px 0;
  }

  .tab2 li {
    font-size: 16px;
  }
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
  text-align: center;
  /*内容をセンタリング*/
  padding: 80px 0;
  /*ボックス内の余白*/
  background: #C42E48;
  color: #fff;
  /*文字色*/
  margin-top: 200px;
}

footer div {
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 1000px;
  margin: 0 auto 40px;
}

footer figure {
  width: 100px;
  margin: 0 auto 30px;
}

footer nav {
  width: 100%;
  text-align: center;
}

footer li {
  list-style: none;
  display: inline-block;
  margin-right: 20px;
}

/*リンクテキスト*/
footer a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
  transition: background .4s;
}

footer a:hover {
  background-size: 100% 2px;
}

/*背景色パターン
---------------------------------------------------------------------------*/
.bg1 {
  width: 100%;
  background: #F2F2F2;
  border-radius: 200px 0 200px 0;
  /*円形にする*/
}

/*---------------------------------------------------------------------------
ここから下は画面幅1150px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  .bg1 {
    border-radius: 40px 0 40px 0;
    /*円形にする*/
  }
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
  display: block;
}

/*ボタンの設定*/
.pagetop a {
  display: block;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed;
  /*スクロールに追従しない(固定で表示)為の設定*/
  right: 20px;
  /*右からの配置場所指定*/
  bottom: 120px;
  /*下からの配置場所指定*/
  color: #fff;
  /*文字色*/
  font-size: 1.5em;
  /*文字サイズ*/
  background: rgba(0, 0, 0, 0.2);
  /*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
  width: 50px;
  /*幅*/
  line-height: 50px;
  /*高さ*/
  border-radius: 25%;
  /*円形にする*/
}

.pagetop.db {
  display: none;
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.color-theme,
.color-theme a {
  color: #ed7d0f !important;
}

.color-check,
.color-check a {
  color: #f00 !important;
}

.c {
  text-align: center !important;
}

.ws {
  width: 95%;
  display: block;
}

.wl {
  width: 95%;
  display: block;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.look {
  display: inline-block;
  padding: 0px 10px;
  background: #eee;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin: 2px 0;
  word-break: break-all;
}

.small {
  font-size: 0.6em;
  letter-spacing: normal !important;
}

.large {
  font-size: 1.8em !important;
}

.block {
  display: block !important;
}

.sh {
  display: block;
}

.pc {
  display: none;
}

.fee_pc {
  display: none !important;
}

.hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.mb_text {
  margin-bottom: 0.5rem;
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以下の追加指定
---------------------------------------------------------------------------*/
@media screen and (max-width:1280px) {

  /*btnの設定
---------------------------------------------------------------------------*/
  main h2 {
    margin: 0 0 50px;
    /*上、左右、下へのタグの外にとるスペース*/
    line-height: 1.2;
    /*行間を少し狭く*/
    font-size: 35px;
    /*文字サイズ。3倍。*/
  }

  /*  main {
    font-size: 1.2em;
  }*/
  #main_area {
    width: 100%;
    min-height: 550px;
    background-size: cover;
    position: relative;
    margin-left: 0px;
    border-radius: 0px;
  }

  #main_area .img1 {
    position: absolute;
    top: 20px;
    right: 220px;
    width: 80px;
  }

  #main_area .img2 {
    position: absolute;
    bottom: 13px;
    right: 50px;
    width: 80px;
  }

  header {
    position: fixed;
    width: 0%;
    padding: 0;
    /*上下、左右へのヘッダー内の余白*/
    height: 0px;
    /*ヘッダーの高さ。変更する場合、数行下にある#mainimgのtopの数値も合わせて変更して下さい。*/
  }

  /*ロゴ画像*/
  header #logo img {
    display: none;
  }

  #header.scroll {
    animation-name: none;
  }

  #mainimg {
    top: 0;
  }

  footer {
    padding: 40px 0;
    /*ボックス内の余白*/
    margin-top: 70px;
  }

  footer div {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 40px;
  }

  footer figure {
    width: 100px;
    margin: 0 auto 30px;
  }

  footer nav {
    width: 100%;
    text-align: center;
  }

  footer li {
    list-style: none;
    display: block;
    margin: 0 0 10px;
  }

  footer span {
    font-size: 12px;
  }

  /*リンクテキスト*/
  footer a {
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#fff, #fff) 0 100%/0 2px no-repeat;
    transition: background .4s;
  }

  footer a:hover {
    background-size: 100% 2px;
  }
}

/*---------------------------------------------------------------------------
ここから下は画面幅980px以上の追加指定
---------------------------------------------------------------------------*/
@media screen and (min-width:1280px) {

  /*全体の設定
---------------------------------------------------------------------------*/
  html,
  body {
    font-size: 16px;
    /*基準となるフォントサイズの上書き*/
  }

  /*トップページのメイン画像
---------------------------------------------------------------------------*/
  /*テキストブロック*/
  #mainimg #text {
    width: 50%;
    /*幅*/
  }

  /*menubarブロック設定
---------------------------------------------------------------------------*/
  /*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
  /*ハンバーガーメニューを非表示にする*/
  #menubar_hdr {
    display: none;
  }

  /*その他
---------------------------------------------------------------------------*/
  .ws {
    width: 48%;
    display: inline;
  }

  .sh {
    display: none;
  }

  .pc {
    display: inline-block;
  }

  .fee_pc {
    display: block !important;
  }

  /*　※注意！　下の閉じカッコ　}　はこのブロックに必要なので、削除しないで下さい。　*/
  #menubar dl {
    display: none;
  }
}

/*読み込み
---------------------------------------------------------------------------*/
.circle-bg {
  position: fixed;
  z-index: 2;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  transform: scale(0);
  bottom: calc(50% - 50px);
  left: calc(50% - 50px);
  transition: all .6s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.circle-bg.db {
  transform: scale(50);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}


/*下層用
---------------------------------------------------------------------------*/
.lower {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/*header（ロゴなどが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
.lower .tophead {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.lower header {
  width: 200px;
  margin: 60px 0 0 60px;
  z-index: 3;
}

.lower main {
  width: 90%;
  margin: auto;
}

.lower .letter {
  margin: 10px 0px 40px;
}

.time {
  color: #C42E48;
}

/*ブログ本文内　リセットCSS（管理画面の内容に合わせる）
---------------------------------------------------------------------------*/
.lower .letter {
  margin: 10px 0px 40px;
}

.lower .letter p {
  margin: 10px 0px 0px;
}

.lower .letter a {
  color: #000;
}

.lower .letter h4,
h3 {
  color: #000;
  margin: 20px 0px 10px;
  font-size: 18px;
}

.lower .letter ul,
ol {
  margin: 0px;
  padding: 0px;
  padding-left: 10px;
}

.lower .letter ul li {
  list-style-type: disc;
  margin-left: 10px;
}


.lower .letter ul li:first-child {
  width: 100%;
}

.lower .letter ul li:last-child {
  width: 100%;
}


/***************************************************
 * Generated by SVG Artista on 5/31/2024, 3:15:48 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
.svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s ease-in 0.8s both;
  animation: animate-svg-fill-1 0.7s ease-in 0.8s both
}

@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

.svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s ease-in 0.9s both;
  animation: animate-svg-fill-2 0.7s ease-in 0.9s both
}

@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

.svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s ease-in 1s both;
  animation: animate-svg-fill-3 0.7s ease-in 1s both
}

@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(255, 255, 255)
  }
}

@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(255, 255, 255)
  }
}

.svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s ease-in 1.1s both;
  animation: animate-svg-fill-4 0.7s ease-in 1.1s both
}

@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(185, 0, 24)
  }
}

@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(185, 0, 24)
  }
}

.svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s ease-in 1.2000000000000002s both;
  animation: animate-svg-fill-5 0.7s ease-in 1.2000000000000002s both
}

@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

.svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s ease-in 1.3s both;
  animation: animate-svg-fill-6 0.7s ease-in 1.3s both
}

@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(196, 46, 72)
  }
}

.svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s ease-in 1.4000000000000001s both;
  animation: animate-svg-fill-7 0.7s ease-in 1.4000000000000001s both
}

@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s ease-in 1.5s both;
  animation: animate-svg-fill-8 0.7s ease-in 1.5s both
}

@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s ease-in 1.6s both;
  animation: animate-svg-fill-9 0.7s ease-in 1.6s both
}

@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s ease-in 1.7000000000000002s both;
  animation: animate-svg-fill-10 0.7s ease-in 1.7000000000000002s both
}

@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.7s ease-in 1.8s both;
  animation: animate-svg-fill-11 0.7s ease-in 1.8s both
}

@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.7s ease-in 1.9000000000000001s both;
  animation: animate-svg-fill-12 0.7s ease-in 1.9000000000000001s both
}

@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.7s ease-in 2s both;
  animation: animate-svg-fill-13 0.7s ease-in 2s both
}

@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.7s ease-in 2.1s both;
  animation: animate-svg-fill-14 0.7s ease-in 2.1s both
}

@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.7s ease-in 2.2s both;
  animation: animate-svg-fill-15 0.7s ease-in 2.2s both
}

@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.7s ease-in 2.3s both;
  animation: animate-svg-fill-16 0.7s ease-in 2.3s both
}

@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.7s ease-in 2.4000000000000004s both;
  animation: animate-svg-fill-17 0.7s ease-in 2.4000000000000004s both
}

@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.7s ease-in 2.5s both;
  animation: animate-svg-fill-18 0.7s ease-in 2.5s both
}

@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.7s ease-in 2.6s both;
  animation: animate-svg-fill-19 0.7s ease-in 2.6s both
}

@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.7s ease-in 2.7s both;
  animation: animate-svg-fill-20 0.7s ease-in 2.7s both
}

@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-21 {
  -webkit-animation: animate-svg-fill-21 0.7s ease-in 2.8s both;
  animation: animate-svg-fill-21 0.7s ease-in 2.8s both
}

@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-22 {
  -webkit-animation: animate-svg-fill-22 0.7s ease-in 2.9000000000000004s both;
  animation: animate-svg-fill-22 0.7s ease-in 2.9000000000000004s both
}

@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-23 {
  -webkit-animation: animate-svg-fill-23 0.7s ease-in 3s both;
  animation: animate-svg-fill-23 0.7s ease-in 3s both
}

@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-24 {
  -webkit-animation: animate-svg-fill-24 0.7s ease-in 3.1000000000000005s both;
  animation: animate-svg-fill-24 0.7s ease-in 3.1000000000000005s both
}

@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-25 {
  -webkit-animation: animate-svg-fill-25 0.7s ease-in 3.2s both;
  animation: animate-svg-fill-25 0.7s ease-in 3.2s both
}

@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-26 {
  -webkit-animation: animate-svg-fill-26 0.7s ease-in 3.3s both;
  animation: animate-svg-fill-26 0.7s ease-in 3.3s both
}

@-webkit-keyframes animate-svg-fill-27 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-27 {
  -webkit-animation: animate-svg-fill-27 0.7s ease-in 3.4000000000000004s both;
  animation: animate-svg-fill-27 0.7s ease-in 3.4000000000000004s both
}

@-webkit-keyframes animate-svg-fill-28 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(26, 18, 16)
  }
}

.svg-elem-28 {
  -webkit-animation: animate-svg-fill-28 0.7s ease-in 3.5s both;
  animation: animate-svg-fill-28 0.7s ease-in 3.5s both
}

@-webkit-keyframes animate-svg-fill-29 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

@keyframes animate-svg-fill-29 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

.svg-elem-29 {
  -webkit-animation: animate-svg-fill-29 0.7s ease-in 3.6000000000000005s both;
  animation: animate-svg-fill-29 0.7s ease-in 3.6000000000000005s both
}

@-webkit-keyframes animate-svg-fill-30 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

@keyframes animate-svg-fill-30 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

.svg-elem-30 {
  -webkit-animation: animate-svg-fill-30 0.7s ease-in 3.7s both;
  animation: animate-svg-fill-30 0.7s ease-in 3.7s both
}

@-webkit-keyframes animate-svg-fill-31 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

@keyframes animate-svg-fill-31 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

.svg-elem-31 {
  -webkit-animation: animate-svg-fill-31 0.7s ease-in 3.8s both;
  animation: animate-svg-fill-31 0.7s ease-in 3.8s both
}

@-webkit-keyframes animate-svg-fill-32 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

@keyframes animate-svg-fill-32 {
  0% {
    fill: transparent
  }

  100% {
    fill: rgb(28, 19, 17)
  }
}

.svg-elem-32 {
  -webkit-animation: animate-svg-fill-32 0.7s ease-in 3.9000000000000004s both;
  animation: animate-svg-fill-32 0.7s ease-in 3.9000000000000004s both
}