@charset "UTF-8";
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*                                                        */
/* ● style_top.css                                       */
/*    トップページ専用CSS                                 */
/*    ・ページ固有の処理を記述                            */
/*                                                        */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    各種import                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    カラー設定                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* カラー定義
 ------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    mixin 定義                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* 疑似要素

       ::before, ::after で親要素にフィットさせる処理 （ボタンの背景など）
 ------------------------------------ */
/* サイトロゴ

  想定しているHTML構造 ※見出しレベル h1～h6 は任意

        <h1 class="SiteLogo">
          <a href="<$mt:Link template="メインページ"$>">
            <span class="Main">福井県立病院</span>
            <span class="Sub">Fukui Prefectural Hospital</span>
          </a>
        </h1>

  適用例 ）
    .SiteLogo{
        @include config.site-logo();
    }
------------------------------------------------------------------------ */
/* 基本ページ幅

  適用例 ）
    .hogehoge{
        @include config.page-width-default();
    }
------------------------------------------------------------------------ */
/* スクロールバーをカスタマイズ

  適用例 ）
    .hogehoge{
        @include config.customScrollBar();
    }
------------------------------------------------------------------------ */
/* flex 関連のプロパティをまとめて定義

  適用例 ）
    .hogehoge{
        @include config.flex();
    }
    .hogehoge{
        @include config.flex(center, flex-end);
    }
------------------------------------------------------------------------ */
/* テキストを任意の行数で切る （引数で行数を指定）

   適用例 ）
    .hogehoge{
        @include config.custom_txt_overflow(2);
    }
 ------------------------------------------------------------------------ */
/* clearfix

  適用例 ）
    .hogehoge{
        @include config.clearfix();
    }
------------------------------------------------------------------------ */
/* dotline

  適用例 ）
    .hogehoge{
        @include config.dotline();
    }
------------------------------------------------------------------------ */
/* lattice パターン

  適用例 ）
    .hogehoge{
        @include config.lattice();
    }
------------------------------------------------------------------------ */
/* エリアのデザインパターン

  適用例 ）
    .hogehoge{
        @include config.decorated_area();
    }
------------------------------------------------------------------------ */
/* レスポンシブ 対応用 ブレイクポイントによる条件分岐
   適用例 ）
   @include config.media-query(under-bp-m) {
      $breakpoint-m よりも小さいウィンドウ幅の処理をここに書く
   }
 ------------------------------------------------------------------------ */
/* 単位を除去して数値のみ返す関数
 ------------------------------------------------------------------------ */
/* hover

  適用例 ）
    .hogehoge{
      @include config.hvr-txt-underline();
    }
------------------------------------------------------------------------ */
/* hvr-childimg-zoom()
 ------------------------------------------------------------------------ */
/* hvr-default()
 ------------------------------------------------------------------------ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    World                                         */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.World {
  padding-top: 0px !important;
}
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Header                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
@media screen and (min-width: 768px), print {
  header {
    position: fixed;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Contents                                      */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.ContentsDivision {
  padding-top: 0px;
}
.ContentsDivision::before {
  display: none;
}
.ContentsDivision .Page,
.ContentsDivision .Page main {
  display: contents !important;
}

/* --------------------------------------------------- */
/* メインビジュアル                                    */
/* --------------------------------------------------- */
.MainImageArea {
  position: relative;
  padding: 0 0 0;
  /* メインスライダ
  --------------------------------------------------- */
}
.MainImageArea .MainImageBlock .BlockContents .SliderList {
  list-style: none;
  padding-bottom: 0 !important;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .ImageItem .Image {
  text-align: center;
  background: #fff;
  overflow: hidden;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .ImageItem .Image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.3333333333;
}
@media screen and (min-width: 1220px) {
  .MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .ImageItem .Image img {
    aspect-ratio: 1.7777777778;
  }
}
@media screen and (max-width: 767px) {
  .MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .ImageItem .Image img {
    aspect-ratio: 1.1428571429;
  }
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .ImageItem::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  background: rgba(100, 130, 190, 0.2);
  background: rgba(43, 90, 161, 0.2);
  background: rgba(51, 51, 51, 0.2);
  z-index: 1;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem {
  color: #fff;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  position: absolute;
  z-index: 3;
  line-height: 1.75;
  text-shadow: 0 0 1em rgb(43, 90, 161);
}
@media screen and (min-width: 768px), print {
  .MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    right: 17.5%;
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 767px) {
  .MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading {
    top: 15%;
    right: 10%;
    font-size: 4.5vw;
  }
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading {
  font-weight: 700;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading .Credit {
  font-size: 1.3rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading .Credit {
    font-size: 1rem;
    line-height: 1.2;
  }
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem .Heading .Credit {
  position: absolute;
  top: calc(100% + 3rem);
  right: 0%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  -webkit-writing-mode: lr;
      -ms-writing-mode: lr;
          writing-mode: lr;
  padding: 0.5em;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li > .inner .TextItem::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 2;
  top: initial;
  bottom: 5%;
  left: 0%;
  height: 40%;
  width: 100%;
  background: url(../img/common/decoration/wave_lines.svg) no-repeat 50% 0%;
  background-size: contain;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li.animating .ImageItem .Image img {
  position: relative;
  -webkit-animation: anim_slide_img_zoom 10s linear forwards;
          animation: anim_slide_img_zoom 10s linear forwards;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  opacity: 1;
}
.MainImageArea .MainImageBlock .BlockContents .SliderList li.animating .ImageItem .Image {
  /* anim */
}
@-webkit-keyframes anim_slide_img_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes anim_slide_img_zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.MainImageArea {
  /* 重要なお知らせ
  --------------------------------------------------- */
}
.MainImageArea .ImportantNewsBlock {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 1em rgba(51, 51, 51, 0.15);
          box-shadow: 0 0 1em rgba(51, 51, 51, 0.15);
  border-radius: 0.5em;
  position: sticky;
  bottom: 0px;
  margin-bottom: -5rem;
}
.MainImageArea .ImportantNewsBlock .BlockHeader {
  color: #fff;
  background: rgb(255, 79, 75);
  border-radius: 0.5em 0 0 0.5em;
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.MainImageArea .ImportantNewsBlock .BlockHeader .Heading {
  display: contents;
}
.MainImageArea .ImportantNewsBlock .BlockContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: #fff;
  border-radius: 0 0.5em 0.5em 0;
}
.MainImageArea .ImportantNewsBlock .BlockContents .BlogList li {
  border: none;
}
.MainImageArea .ImportantNewsBlock .BlockContents .BlogList li > a {
  border: none;
}
.MainImageArea .ImportantNewsBlock .BlockContents .BlogList li > a .TextItem .Date {
  color: rgb(255, 79, 75);
}
@media screen and (max-width: 767px) {
  .MainImageArea .ImportantNewsBlock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .MainImageArea .ImportantNewsBlock .BlockHeader {
    border-radius: 0.5em 0.5em 0 0;
    width: initial;
    padding: 0.5em 1em;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .MainImageArea .ImportantNewsBlock .BlockContents {
    border-radius: 0 0 0.5em 0.5em;
  }
}

/* --------------------------------------------------- */
/* 新着情報                                            */
/* --------------------------------------------------- */
.NewsArea {
  overflow: hidden;
}
.NewsArea::before {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: url(../img/common/decoration/pickup_bg.jpg) no-repeat 50% 100%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
  z-index: -1;
}
.NewsArea {
  /* 新着情報
  --------------------------------------------------- */
}
.NewsArea .NewsBlock {
  gap: 2.5rem;
}
.NewsArea .NewsBlock .BlockContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 5rem;
}
.NewsArea .NewsBlock .BlockContents .Paragraph {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 15px;
}
.NewsArea .NewsBlock .BlockContents .Paragraph .ParagraphHeader .Heading {
  color: #fff;
  background: rgb(43, 90, 161);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 2em 0.5em;
  border-radius: 0 0 0 3em;
}
.NewsArea .NewsBlock .BlockContents .Paragraph .ParagraphContents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .NewsArea .NewsBlock .BlockContents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5em;
  }
  .NewsArea .NewsBlock .BlockContents .Paragraph {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .NewsArea .NewsBlock .BlockContents .Paragraph .ParagraphHeader .Heading {
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
    padding: 0.5em 1em;
    border-radius: 0 3em 0 0;
  }
}
.NewsArea {
  /* ピックアップメニュー
  --------------------------------------------------- */
}
.NewsArea .PickUpBlock {
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .NewsArea .PickUpBlock {
    gap: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 200px;
            flex: 1 0 200px;
  }
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) a {
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) a .ImageItem .Image .Icon {
    font-size: 100px;
  }
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) a .ImageItem::after {
    content: "";
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    background-size: contain;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    top: initial;
    left: 50%;
    right: initial;
    bottom: 0.5em;
    width: 30%;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background: rgba(51, 51, 51, 0.3);
  }
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) a .TextItem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1em;
  }
  .NewsArea .PickUpBlock .PickUpList.icon_type > li:nth-child(-n+5) a .TextItem .Heading {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/* --------------------------------------------------- */
/* 各種センター                                        */
/* --------------------------------------------------- */
.CenterArea {
  padding: 15rem 0 10rem;
}
.CenterArea::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  background: rgb(238, 244, 252);
  z-index: -1;
  left: calc((100% - 1200px) / 2 + 14em);
  top: 10rem;
}
@media screen and (max-width: 767px) {
  .CenterArea {
    padding: 10rem 0 5rem;
  }
  .CenterArea::after {
    top: 5rem;
    left: 20%;
  }
}
.CenterArea {
  /* センター
  --------------------------------------------------- */
}
.CenterArea .CenterBlock .BlockFooter .BannerList {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3rem;
}
@media screen and (max-width: 767px) {
  .CenterArea .CenterBlock .BlockFooter .BannerList {
    gap: 1.5rem;
  }
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li {
  width: calc((100% - 90px) / 4);
}
@media screen and (max-width: 767px) {
  .CenterArea .CenterBlock .BlockFooter .BannerList > li {
    width: calc((100% - 1.5rem) / 2);
  }
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  .CenterArea .CenterBlock .BlockFooter .BannerList > li > a {
    padding: 5px;
  }
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li > a img {
  width: 100%;
  aspect-ratio: 3.3333333333;
  -o-object-fit: contain;
     object-fit: contain;
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li > a {
  position: relative;
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li > a::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: 0%;
  left: 0%;
  right: 0%;
  bottom: 0%;
  border: 1px solid #fff;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: -1;
}
html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):hover, html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):focus {
  color: rgb(70, 132, 219);
}
html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):hover::after, html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):focus::after {
  border-color: currentColor;
}
.CenterArea .CenterBlock .BlockFooter .BannerList > li > a::after {
  background: #fff;
  -webkit-box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 1em rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):hover::after, html.PcView .CenterArea .CenterBlock .BlockFooter .BannerList > li > a:not(.NoLink):focus::after {
  content: "";
  position: absolute;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
}

/* --------------------------------------------------- */
/* 初めての方へ                                        */
/* --------------------------------------------------- */
.BeginnerArea {
  padding: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgb(220, 235, 235)));
  background: linear-gradient(to bottom, #fff, rgb(220, 235, 235));
  /* 初めての方へ
  --------------------------------------------------- */
}
.BeginnerArea .BeginnerBlock {
  background: #fff;
  border-radius: 30px;
  position: relative;
  top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 50px;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .BeginnerArea .BeginnerBlock {
    padding: 25px;
    gap: 2.5rem;
  }
}
.BeginnerArea .BeginnerBlock .BlockHeader .Heading {
  width: 100%;
}
.BeginnerArea .BeginnerBlock .BlockHeader .Heading .Sub {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.BeginnerArea .BeginnerBlock .BlockHeader .Heading .Sub::after {
  content: "";
  height: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: rgb(70, 132, 219);
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.BeginnerArea .BeginnerBlock .BlockContents .Paragraph {
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .BeginnerArea .BeginnerBlock .BlockContents .Paragraph {
    border-top: 1px dashed rgba(51, 51, 51, 0.25);
    font-size: 87.5%;
    padding: 15px 0;
    gap: 0;
  }
}
.BeginnerArea .BeginnerBlock .BlockContents .Paragraph .ParagraphHeader .Heading {
  font-size: 125%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
.BeginnerArea .BeginnerBlock .BlockContents .Paragraph .ParagraphHeader .Heading .Icon {
  font-size: 200%;
}
.BeginnerArea .BeginnerBlock .BlockContents .Paragraph .ParagraphContents {
  padding-left: 3em;
}
.BeginnerArea .BeginnerBlock .BlockContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px), print {
  .BeginnerArea .BeginnerBlock .BlockContents {
    gap: 30px;
  }
  .BeginnerArea .BeginnerBlock .BlockContents .Paragraph {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .BeginnerArea .BeginnerBlock .BlockContents {
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}