@charset "UTF-8";

:root {
  --bl: #000;
  --gray-02: #ccc;
  --grad-01: linear-gradient(90deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-01-rev: linear-gradient(270deg, var(--MAIN) 0%, var(--LMAIN) 100%);
  --grad-02: linear-gradient(90deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-02-rev: linear-gradient(270deg, var(--LACC) 0%, var(--ACC) 100%);
  --grad-03: linear-gradient(90deg, var(--LOTH) 0%, var(--OTH) 100%);
  --grad-03-rev: linear-gradient(270deg, var(--LOTH) 0%, var(--OTH) 100%);
  --transition: all 0.3s ease-in-out;
  --oversize: calc((100% - 100vw) / 2);
}

/* ==================================
リセット・調整・ファンデーション
===================================== */
/* 高さを画像自体の高さにする */
:where(img) {
  /* max-width: 100%; */
  height: auto;
  vertical-align: bottom;
}

/* 下層ページの画像に共通のアスペクト比設定 */
/* :where(#dcms_layoutPageBlock) :where(img) {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
} */

/*---------- アクセシビリティ ----------*/
/* アイコンをスクリーンリーダーに読み上げられないようにする */
i,
[class*="material-icons"],
[class*="material-symbols"] {
  speak: none;
}
/*---------- マテリアルアイコンのフォントサイズを親要素から継承させる ----------*/
[class*="material-icons"],
[class*="material-symbols"] {
  font-size: inherit;
}

/*---------- ボタンのアイコンを「→」に変更 ----------*/
/* :where(.lib-link__btn):not([class*="ico-after-"]):not([class*="ico-before-"]) > .txt:after {
  content: "\ea03";
  font-size: 1em;
} */

/* ==================================
タイポ
===================================== */
/* ゴシックとか */
.ff-notosans {
  font-family: "Noto Sans JP", serif;
}
.ff-lato {
  font-family: "Lato", sans-serif;
  /* letter-spacing: 0.05rem; */
}
.ff-oswald {
  font-family: "Oswald", sans-serif;
}
.ff-poppins {
  font-family: "Poppins", sans-serif;
}
.ff-zenmarugo {
  font-family: "Staatliches", sans-serif;
}
.ff-montserrat {
  font-family: "Montserrat", sans-serif;
}
.ff-staatliches {
  font-family: "Zen Maru Gothic", sans-serif;
}
.ff-m-plus-rounded-1c {
  font-family: "M PLUS Rounded 1c", sans-serif;
  transform: rotate(0.07deg);
}
/* 明朝とか */
.ff-notoserif {
  font-family: "Noto Serif JP", serif;
}
.ff-yumincho {
  font-family: "Yu Mincho", "YuMincho", serif;
}

/* font-weight */
.fw-600 {
  font-weight: 600 !important;
}
.fw-800 {
  font-weight: 800 !important;
}
.fw-900 {
  font-weight: 900 !important;
}

/* ==================================
ユーティリティー
===================================== */
/*---------- 字幅 ----------*/
.u-l-0 {
  letter-spacing: 0;
}
.u-l-1 {
  letter-spacing: 1px;
}
.u-l-2 {
  letter-spacing: 2px;
}
.u-l-3 {
  letter-spacing: 3px;
}
.u-l-4 {
  letter-spacing: 4px;
}
.u-l-5 {
  letter-spacing: 5px;
}

/*---------- 画像の比率 ----------*/
.u-aspect img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.u-aspect.--4x3 img {
  aspect-ratio: 4 / 3;
}
.u-aspect.--16x9 img {
  aspect-ratio: 16 / 9;
}
.u-aspect.--21x9 img {
  aspect-ratio: 21 / 9;
}
.u-aspect.--1x1 img {
  aspect-ratio: 1 / 1;
}
.u-aspect.--2x1 img {
  aspect-ratio: 2 / 1;
}
.u-aspect.--3x1 img {
  aspect-ratio: 3 / 1;
}
.u-aspect.--4x1 img {
  aspect-ratio: 4 / 1;
}
.u-aspect.--7x8 img {
  aspect-ratio: 7 / 8;
}
.u-aspect.--9x16 img {
  aspect-ratio: 9 / 16;
}
.u-aspect.--3x4 img {
  aspect-ratio: 3 / 4;
}

/* 画像全体を枠内に入れたいとき */
.u-aspect.--contain img {
  object-fit: contain;
}

/* メディア一覧の画像 */
.media-post__thumb img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/*---------- 角丸 ----------*/
[class*="u-rounded-"] {
  overflow: hidden;
}
.u-rounded-_25 {
  border-radius: 0.25rem !important;
}
.u-rounded-_5 {
  border-radius: 0.5rem !important;
}
.u-rounded-_75 {
  border-radius: 0.75rem !important;
}
.u-rounded-1 {
  border-radius: 1rem !important;
}
.u-rounded-1_5 {
  border-radius: 1.5rem !important;
}
.u-rounded-1_25 {
  border-radius: 1.25rem !important;
}
.u-rounded-2 {
  border-radius: 2rem !important;
}
.u-rounded-3 {
  border-radius: 3rem !important;
}
[class*="u-rounded-"].--t-only {
  border-bottom-right-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--b-only {
  border-top-right-radius: unset !important;
  border-top-left-radius: unset !important;
}
[class*="u-rounded-"].--r-only {
  border-top-left-radius: unset !important;
  border-bottom-left-radius: unset !important;
}
[class*="u-rounded-"].--l-only {
  border-top-right-radius: unset !important;
  border-bottom-right-radius: unset !important;
}

/*---------- はみ出させる ----------*/
.u-over {
  margin-inline: var(--oversize);
}
/* 右に */
.u-r-over {
  margin-right: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-r-md-over {
    margin-right: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-r-lg-over {
    margin-right: var(--oversize);
  }
}
/* 左に */
.u-l-over {
  margin-left: var(--oversize);
}
@media print, screen and (min-width: 768px) {
  .u-l-md-over {
    margin-left: var(--oversize);
  }
}
@media print, screen and (min-width: 992px) {
  .u-l-lg-over {
    margin-left: var(--oversize);
  }
}

/*---------- Swiper ----------*/
/* 滑らかに */
.u-swiper-liner .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* ========================================
パーツ
======================================== */
/*---------- アイコン（アイコンフォント想定。大きさはp-*やfs-*、個別にwidth・height指定して調整。） ----------*/
.c-icon {
  aspect-ratio: 1 / 1;
  speak: none;
}
.c-icon img {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  speak: none;
}

/*---------- アイコンとテキスト（ボタンによく使う） ----------*/
/* 余白の微調整は「gap-*」 */
.c-icon-text {
  display: grid !important;
  grid-template-columns: repeat(2, auto);
  column-gap: 0.5em;
  justify-content: center;
  align-items: center;
}
/* アイコンだけ右寄せ */
.c-icon-text.--r {
  grid-template-columns: 1fr auto;
}
/* アイコンだけ左寄せ */
.c-icon-text.--l {
  grid-template-columns: auto 1fr;
}
@media print, screen and (min-width: 992px) {
  .c-icon-text {
    column-gap: 1em;
  }
}

/*---------- 背景のベース ----------*/
/* 背景画像を敷く場合、
   背景画像に各色のフィルターをかける場合
   疑似要素を配置したいときのベース */
.p-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}
/* 疑似要素のファンデーション */
.p-bg::before,
.p-bg::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: inherit;
  pointer-events: none;
  speak: none;
}
/* 黒透明フィルター */
.p-bg.--bl::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bl);
  opacity: 0.3;
}
/* 白透明フィルター */
.p-bg.--wh::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--WHT);
  opacity: 0.3;
}
/* メインカラーフィルター */
.p-bg.--main::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--MAIN);
  opacity: 0.3;
}
.p-bg.--lmain::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LMAIN);
  opacity: 0.3;
}
/* アクセントカラーフィルター */
.p-bg.--accent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--ACC);
  opacity: 0.3;
}
.p-bg.--laccent::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LACC);
  opacity: 0.3;
}
/* 補助色カラーフィルター */
.p-bg.--other::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--OTH);
  opacity: 0.3;
}
.p-bg.--lother::before {
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--LOTH);
  opacity: 0.3;
}
/* 色の濃さ（opacity） */
.p-bg.--light::before {
  opacity: 0.1;
}
.p-bg.--md::before {
  opacity: 0.5;
}
.p-bg.--strong::before {
  opacity: 0.7;
}
.p-bg.--strongest::before {
  opacity: 0.9;
}

/*---------- ホバーアクション ----------*/
.c-hover {
  transition: var(--transition);
  color: inherit;
  text-decoration: none;
}
.c-hover:hover {
  text-decoration: none;
}
/*---------- 下線がつく ----------*/
.c-hover.--underline:hover {
  text-decoration: underline;
}
/*---------- LMAINの背景色がつく----------*/
.c-hover.--bg-main:hover {
  background-color: var(--MAIN);
}
.c-hover.--bg-accent:hover {
  background-color: var(--ACC);
}
.c-hover.--bg-other:hover {
  background-color: var(--OTH);
}
.c-hover.--bg-lmain:hover {
  background-color: var(--LMAIN);
}
.c-hover.--bg-laccent:hover {
  background-color: var(--LACC);
}
.c-hover.--bg-lother:hover {
  background-color: var(--LOTH);
}
.c-hover.--bg-gry:hover {
  background-color: var(--GRY);
}
.c-hover.--bg-lgry:hover {
  background-color: var(--LGRY);
}
/*---------- 透過する（0.8） ----------*/
.c-hover.--opacity:hover {
  opacity: 0.8;
}
/*---------- 少し上に浮く ----------*/
.c-hover.--up:hover {
  transform: translateY(-0.125rem);
}
/*---------- 画像が拡大する ----------*/
.c-hover.--scale-up img {
  transition: var(--transition);
}
.c-hover.--scale-up:hover img {
  transform: scale(1.1);
}

/*---------- レイアウト ----------*/
/* display: grid;で重ねる */
.l-overlap {
  display: grid;
}
.l-overlap > * {
  grid-area: 1 / -1;
}
.c-hover.--overlap .--after {
  opacity: 0;
  transition: var(--transition);
}
.c-hover.--overlap:hover .--after {
  opacity: 1;
}
#tinymce .l-overlap > *,
.editor_block .l-overlap > * {
  grid-area: unset !important;
  z-index: 1 !important;
  opacity: 1 !important;
}

/* 子要素を中央配置 */
/* 縦 */
.l-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* 縦横中央 */
.l-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* ==================================
幅
===================================== */
.w-90 {
  width: 90% !important;
}
.w-80 {
  width: 80% !important;
}
.w-70 {
  width: 70% !important;
}
.w-60 {
  width: 60% !important;
}
.w-50 {
  width: 50% !important;
}
.w-40 {
  width: 40% !important;
}
.w-30 {
  width: 30% !important;
}
.w-20 {
  width: 20% !important;
}
.w-10 {
  width: 10% !important;
}

/* ==================================
テキストシャドウ
===================================== */
.text-shadow {
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}


/* ==================================
ヘッダー
===================================== */
/* @media print, screen and (min-width: 992px) {
#wrapper {
  padding-top: 0 !important;
}
}

.lib-header__outer {
  background-color: transparent;
}

.is-scroll .lib-header__outer {
    background-color: #fff;
} */

/*MV*/
.lib-fv__control.lib-swiper__control {
  display: none;
}

.lib-fv__thumb {
  height: auto !important;
}

.p-top-mv-slider img {
  /* object-fit: contain; */
  width: 100%;
  height: 177%;
  /* aspect-ratio: 1 / 1; */
  mask-image: url(/dcms_media/other/mv-mask2.svg);
  mask-repeat: no-repeat;
  mask-position: 50% 100%;
  mask-size: 100% 100%;
  -webkit-mask-image: url(/dcms_media/other/mv-mask2.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 98% 95%;
  -webkit-mask-size: 131% 122%;
}

.embellishments09 {
  position: relative;
}

.embellishments09::before {
  content: '';
  position: absolute;
  top: -26%;
  left: -18%;
  width: 45%;
  height: 45%;
  background-image: url('/dcms_media/image/mv-bg01.png');
  background-size: cover;
  background-position: center;
  z-index: 2;
}

.embellishments09::after {
  content: '';
  position: absolute;
  top: 80%;
  left: 3%;
  width: 96%;
  height: 9%;
  background-image: url('/dcms_media/image/mv-bg02.png'),url('/dcms_media/image/mv-bg03.png');
  background-size: contain;
  background-position: 7% 81%,93% 12%;
  background-repeat: no-repeat;
  z-index: 1;
}


.lib-fv__outer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 1;
}

@media print, screen and (min-width: 992px) {
.fs-md-50 {
  font-size: 50px;
}
}

.lib-fv__thumb::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 14%;
  width: 89%;
  height: 91%;
  background-image: url('/dcms_media/image/mv-bg04.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  /* z-index: 1; */
}

@media print, screen and (max-width: 991px) {
.lib-fv__thumb::before {
  top: 4%;
  width: 87%;
  height: 88%;
}
}

.lib-fv__txtarea {
  top: 30%;
  align-items: stretch;
}

/* ========================================
フッター
======================================== */
.lib-footer__outer {
  border-top: none !important;
  padding-top: 10rem;
}

#contents {
  padding-bottom: 0;
}

.lib-footer__guidance>li~li:before {
  top: 15%;
}

@media print, screen and (min-width: 992px) {
.lib-footer__outer.lib-footer-BS01 .lib-footer__guidance>li~li:before {
  background-color: var(--LMAIN);
}
}

@media print, screen and (min-width: 576px) {
.lib-footer__copyright {
  font-size: 1rem;
  
}

.lib-footer__outer.lib-footer-BS01 .lib-footer__utility {
  margin-top: 50px;
}
}

@media print, screen and (min-width: 992px) {
.lib-footer__outer.lib-footer-BS01 .lib-footer__utility {
  position: absolute;
  bottom: 0;
  right: 10%;
}
}

.lib-footer__title>a {
  border-top: none;
  border-bottom: none;
  background-color: transparent;
  justify-content: center;
}

.js-footer {
  background-image: url(/dcms_media/image/footer-bg.jpg);
  width: 100%;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position-y: bottom;
  min-height: 55rem;
  position: relative;
}

@media print, screen and (max-width: 768px) {
  .js-footer {
    min-height: 47rem;
  }
}


/* ========================================
CTA
======================================== */

/* ========================================
TOP
======================================== */
/*--------------全体---------------*/
body {
  background-color: var(--OTH);
}

/*--------------子供たちの笑顔をつなぐ---------------*/
@media print, screen and (min-width: 991px) {
  .fs-md-60 {
    font-size: 60px;
  }

.fs-md-90 {
  font-size: 90px;
}
}

@media print, screen and (min-width: 1110px) {
  .fs-xxl-80 {
    font-size: 80px;
  }
  }

/*--------------お仕事内容・藤江の想い---------------*/
@media print, screen and (min-width: 991px) {
  .fs-md-72 {
    font-size: 72px;
  }
  }

  .before-line {
    position: relative;
  }

  @media print, screen and (min-width: 991px) {
    .before-line:before {
      content: "";
      width: 1px;
      height: 90%;
      display: block;
      background-color: var(--MAIN);
      position: absolute;
      left: -10px;
      top: 15%;
  }
}

/*--------------藤江コラム（メディア機能）---------------*/
.lib-media__slider .swiper-wrapper .lib-media__time>p {
  font-size: 16px;
  font-family: "Zen Maru Gothic", sans-serif; 
  color: var(--LMAIN);
}

.lib-media__txt {
  display: none;
}

.lib-media__slider .swiper-wrapper .lib-media__time {
  border-top: none;
  order: 1;
  align-items: flex-start;

}

.lib-media__title {
  font-size: 20px;
  order: 2;
  font-family: "Zen Maru Gothic", sans-serif; 
}

.lib-media__title a {
  color: var(--LMAIN);
}

.lib-media__thumb .thumb {
  height: auto;
  background-color: transparent;
}

.js-media__outer_3cols .lib-media__category {
  display: none !important;
}

.lib-card__thumb .thumb {
  max-height: 100%;
}

.lightwidget {
    max-width: 700px;
    margin: 0 auto;
}

.css-ekq38o {
  overflow: auto;
}

/*スライド*/
@media print, screen and (min-width: 553px) {
.swiper-wrapper {
  position: relative;
}

/* 各スライドアイテムの位置をずらすためのスタイル */
/* 1番目のスライド */
.lib-media__slider .swiper-slide:nth-child(1) {
  transform: translateY(0px) !important; /* Swiperのtransformを上書き */
  /* z-index: 3; 手前に表示 */
}

/* 2番目のスライド */
.lib-media__slider .swiper-slide:nth-child(2) {
  margin-top: 30px; /* 30px下にずらす */
  /* z-index: 2; 重なり順を調整 */
}

/* 3番目のスライド */
.lib-media__slider .swiper-slide:nth-child(3) {
  margin-top: 60px; /* 60px下にずらす */
  /* z-index: 1; 重なり順を調整 */
}
}

/*--------------ボタン---------------*/
.button-with-arrow {
  /* 背景のグラデーションを設定 */
  background: linear-gradient(to left, #ff8c00, #ff4500);
  /* パディングで内側の余白を調整 */
  padding: 15px 30px;
  /* 角丸にする */
  border-radius: 50px;
  /* 文字色を白に */
  color: #fff;
  /* テキストの装飾をなくす */
  text-decoration: none;
  /* フォントサイズと太さを設定 */
  font-size: 1.2em;
  font-weight: bold;
  /* フレックスボックスで子要素を配置 */
  /* display: flex; */
  /* 垂直方向の中央に配置 */
  align-items: center;
  /* 水平方向に均等にスペースを空ける */
  justify-content: space-between;
  /* ボタンの幅を調整（必要に応じて変更） */
  max-width: 350px;
  /* ホバー時のカーソルをポインターに */
  cursor: pointer;
  /* ボーダー消す */
  border: none;
  /* アニメーションの時間を設定 */
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* ホバー時のアニメーション */
.button-with-arrow:hover {
  /* 少しだけ下に移動 */
  transform: translateY(2px);
  /* 影を強くする */
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* 白い丸のスタイル */
.arrow-circle {
  /* 丸のサイズを設定 */
  width: 35px;
  height: 35px;
  /* 背景色を白に */
  background-color: #fff;
  /* 丸くする */
  border-radius: 50%;
  /* 矢印アイコンを中央に配置するためのFlexbox */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 左側のマージンを調整 */
  margin-left: 20px;
  /* 少しぼかした影をつける（画像に似せる） */
  box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.5);
  /* アニメーションの時間を設定 */
  transition: box-shadow 0.3s ease-in-out;
}

/* 矢印アイコンのスタイル */
.arrow-icon {
  /* 親要素から絶対位置で配置 */
  position: relative;
  /* サイズは不要 */
  width: auto;
  height: auto;
}

/* 矢印の上半分を作成 */
.arrow-icon::before {
  content: ''; /* 擬似要素にはcontentプロパティが必要 */
  position: absolute;
  top: -7px; /* 上の位置を調整 */
  left: 0; /* 左の位置を調整 */
  width: 10px; /* 横幅 */
  height: 2px; /* 縦幅 */
  background-color: #ff4500; /* 色 */
  transform: rotate(45deg); /* 45度回転 */
  transform-origin: left top; /* 回転の中心を左上に設定 */
}

/* 矢印の下半分を作成 */
.arrow-icon::after {
  content: '';
  position: absolute;
  top: 6px; /* 下の位置を調整 */
  left: 0;
  width: 10px;
  height: 2px;
  background-color: #ff4500;
  transform: rotate(-45deg); /* -45度回転 */
  transform-origin: left bottom; /* 回転の中心を左下に設定 */
}

/* ホバー時に矢印が動くアニメーション */
.button-with-arrow:hover .arrow-circle {
  /* 影を少し強める */
  box-shadow: 0 0 20px 8px rgba(255, 255, 255, 0.7);
}

.button-with-arrow:hover .arrow-icon {
  /* 右に少し移動 */
  transform: translateX(3px);
  transition: transform 0.2s ease-in-out;
}


/*--------------あしらい---------------*/
.embellishments01 {
  position: relative;
}

.embellishments01::before {
  content: '';
  position: absolute;
  top: -145%;
  left: -51%;
  width: 166%;
  height: 186%;
  background-image: url('/dcms_media/image/top010.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.embellishments02  {
  position: relative;
  z-index: 3;
}

.embellishments02::after {
  content: '';
  position: absolute;
  top: 5%;
  left: 76%;
  width: 20%;
  height: 19%;
  background-image: url('/dcms_media/image/top016.png');
  background-size: contain;
  background-position: center;
  z-index: -1;
  background-repeat: no-repeat;
}

.embellishments02::before {
  content: '';
  position: absolute;
  top: 64%;
  left: -3%;
  width: 117%;
  height: 70%;
  background-image: url('/dcms_media/image/top011.png');
  background-size: cover;
  background-position: center;
  z-index: -1;
}


@media print, screen and (max-width: 768px) {
  .embellishments02::before {
    top: 53%;
}
}

@media print, screen and (max-width: 475px) {
  .embellishments02::before {
    top: 47%;
}
}

.embellishments03 {
  position: relative;
}

.embellishments03::before {
  content: '';
  position: absolute;
  top: -4%;
  right: 3%;
  width: 27%;
  height: 14%;
  background-image: url('/dcms_media/image/top012.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.embellishments04 {
  position: relative;
}

.embellishments04::before {
  content: '';
  position: absolute;
  top: -11%;
  right: -14%;
  width: 184%;
  height: 162%;
  background-image: url('/dcms_media/image/top015.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media print, screen and (max-width: 992px) {
  .embellishments04::before {
    top: 12%;
}
}

.embellishments05 {
  position: relative;
}

.embellishments05::before {
  content: '';
  position: absolute;
  top: -33%;
  left: -10%;
  width: 37%;
  height: 188%;
  background-image: url('/dcms_media/image/top022.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.embellishments06 {
  position: relative;
}

.embellishments06::before {
  content: '';
  position: absolute;
  top: 77%;
  left: 42%;
  width: 23%;
  height: 17%;
  background-image: url('/dcms_media/image/top018.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media print, screen and (max-width: 992px) {
  .embellishments06::before {
    top: 28%;
    left: 3%;
}
}

@media print, screen and (max-width: 450px) {
  .embellishments06::before {
    top: 38%;
    width: 37%;
    height: 12%;
}
  }

  .embellishments06::after {
    content: '';
    position: absolute;
    top: -8%;
    left: 52%;
    width: 40%;
    height: 27%;
    background-image: url('/dcms_media/image/top017.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 5;
}

@media print, screen and (max-width: 992px) {
.embellishments06::after {
  top: -17%;
}
}

  .embellishments07 {
    position: relative;
  }
  
  .embellishments07::before {
    content: '';
    position: absolute;
    top: 80%;
    left: 0%;
    width: 20%;
    height: 28%;
    background-image: url('/dcms_media/image/top019.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media print, screen and (max-width: 992px) {
  .embellishments07::before {
    top: 82%;
    left: 75%;
  }
  }

  .embellishments08 {
    position: relative;
  }

  .embellishments08::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0%;
    width: 20%;
    height: 20%;
    background-image: url('/dcms_media/image/top020.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media print, screen and (max-width: 992px) {
  .embellishments08::before {
    top: 4%;
}
}

.embellishments08::after {
  content: '';
  position: absolute;
  top: 48%;
  left: 85%;
  width: 15%;
  height: 10%;
  background-image: url('/dcms_media/image/top021.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

@media print, screen and (max-width: 992px) {
  .embellishments08::after {
    top: 92%;
    left: 78%;
}
}
/* ========================================
下層
======================================== */
