@charset "utf-8";

/* ------------------
 グローバル変数
------------------ */
:root {
  /* 色 */
  --bg-color: #F1F1EF;
  --main-color: #31705A;
  --sub-color: #039347;
  --gradient: linear-gradient(to right, var(--sub-color) 0%, var(--main-color) 100%);

  /* 文字サイズ */
  --main-txt: 1.6rem;
  --font-40: 4rem;
  --font-32: 3.2rem;
  --font-24: 2.4rem;
  --font-20: 2rem;
  --font-18: 1.8rem;

  /* 余白 */
  --space-65: 65px;
}
@media screen and (max-width: 767px) {
  :root {
    /* 文字サイズ */
    --main-txt: 1.5rem;
    --font-40: 2.8rem;
    --font-32: 2.4rem;
    --font-24: 1.8rem;
    --font-20: 1.8rem;
    --font-18: 1.6rem;

      /* 余白 */
      --space-65: 35px;
  }
}

/* ------------------
 フォント
------------------ */
body {
  font-family: 'Noto Sans JP','Helvetica Neue',Arial,'Hiragino Kaku Gothic ProN','Hiragino Sans',Meiryo,sans-serif;
  font-size: var(--main-txt);
  line-height: 2;
  position: relative;
  @media screen and (max-width: 767px) {
    line-height: 1.8;
  }
}

/* ------------------
 config、パーツ
------------------ */
/* スマホメニュー非表示 */
.spNav_btn,.spNav_panel {display: none;}

/* スマホ閲覧時のみ表示 */
.sp_block {display: none;}

:where(a:hover) {
  opacity: 0.8;
}

/* レイアウト */
.container {
  max-width: 1024px;
  width: 90%;
  margin: var(--space-65) auto;
}
.paragraph:not(:last-child) {
  margin-bottom: 3em;
  @media screen and (max-width: 767px) {
    margin-bottom: 2em;
  }
}
.sentence:not(:last-child) {
  margin-bottom: 1em;
}

.flex_box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex_box.flex_box.column2 > * {
  max-width: calc(50% - 10px);
  width: 100%;
}
.flex_box.column3 > * {
  max-width: calc(100% / 3 - 40px / 3);
  width: 100%;
  a {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.flex_box.column3 .top_heading {
  justify-content: center;
  align-items: center;
}

.bg_section {
  width: 100%;
  padding: var(--space-65) 0;
  background: var(--bg-color);
  & > * {
    max-width: 1024px;
    width: 90%;
    padding: 2em;
    background: #fff;
    margin-inline: auto;
    @media screen and (max-width: 767px) {
      padding: 1em;
    }
  }
}

.block_indent {
  padding-left: 1em;
}

/* テキスト */
.main_txt {
  margin-bottom: 1em;
  text-indent: 1em;
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  a[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(/eco/grad/common/img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
}
a.link_txt {
  color: var(--main-color);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
a.external_link {
  color: var(--main-color);
  text-decoration: underline;
  &::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(/eco/grad/common/img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
  &:hover {
    text-decoration: none;
  }
  &[href$=".pdf"]::after {
    width: 20px;
    height: 20px;
    background: url(/eco/grad/common/img/icon_pdf.webp) no-repeat center center;
    transform: translateY(3px);
  }
  &[href$=".docx"]::after {
    width: 15px;
    height: 16px;
    background: url(/eco/grad/common/img/word_icon.gif) no-repeat center center;
    transform: translateY(3px);
  }
  &[href$=".doc"]::after {
    width: 15px;
    height: 16px;
    background: url(/eco/grad/common/img/word_icon.gif) no-repeat center center;
    transform: translateY(3px);
  }
}
.green_txt {
  color: var(--main-color);
}
.lightgreen_txt {
  color: var(--sub-color);
}
a.link_txt {
  color: var(--main-color);
  text-decoration: underline;
  &:hover {
    text-decoration: none;
  }
}
.center_txt {
  text-align: center;
  img {
    margin-inline: auto;
  }
}
.indent_txt {
  text-indent: -1em;
  padding-left: 1em;
}
.bold_txt {
  font-weight: bold;
}

/* リスト関連 */
.bullet_list li {
  display: flex;
  &::before {
    content: "?";
    display: block;
  }
}
/* 先頭「数値」のリスト */
.decimal_list {
  margin-left: 1.1em;
  li {
    list-style-type: decimal;
  }
}
/* （1）、（2）など */
.num_indent {
  text-indent: -2.6em;
  padding-left: 2.6em;
}

/* 定義リスト */
.dl_item {
  div {
    display: flex;
    gap: 0 0.2em;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      margin-bottom: 0.5em;
    }
  }
  dt {
    @media print, screen and (min-width: 768px) {
      white-space: nowrap;
    }
  }
}

/* もっと見るボタン */
.btn_link {
  text-align: start;
  a {
    padding: 0.2em 4em;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    background: var(--gradient);
    font-weight: bold;
    color: #fff;
    &::after {
      content: "";
      display: inline-block;
      width: 10px;
      height: 10px;
      border-top: 2px solid #fff;
      border-right: 2px solid #fff;
      transform: rotate(45deg);
    }
    @media screen and (max-width: 767px) {
      padding: 0.2em 2em;
    }
  }
}

/* テーブル */
.table_outer {
  width: 100%;
  margin-inline: auto;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  .table_outer > table {
    white-space: nowrap;
  }
}
.cmn_table {
  width: 100%;
  th {
    padding: 0.5em 4em;
    font-weight: normal;
    text-align: center;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a[target="_blank"]::after {
    content: "";
    width: 12px;
    height: 12px;
    display: inline-block;
    background: url(/eco/grad/common/img/icon_window.webp) no-repeat center center;
    background-size: contain;
    margin-inline: 3px;
  }
  a[href$=".pdf"]::after {
    width: 20px;
    height: 20px;
    background: url(/eco/grad/common/img/icon_pdf.webp) no-repeat center center;
    transform: translateY(3px);
  }
  a:hover {
    text-decoration: none;
  }
  @media print, screen and (min-width: 768px) {
    th:first-child {
      width: 225px;
    }
  }
  @media screen and (max-width: 767px) {
    th {
      padding: 0.5em 2em;
    }
  }
}
.cmn_table thead {
  border-top: 1px solid #ccc;
  background: var(--bg-color);
}
.cmn_table tbody {
  border-top: 1px solid #ccc;
}
.cmn_table tbody tr {
  border-bottom: 1px solid #ccc;
}

/* Q&A */
.qa_box {
	width: 100%;
	transition: all .5s;
	margin: 0 auto 20px;
	&[open] {
		margin: 0 auto 30px;
	}
	&:last-of-type {
		margin-bottom: var(--space-80)
	}
	span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		font-size: var(--headline);
		font-weight: bold;
	}
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}
.qa_box--q {
	width: 100%;
  padding: 1em 2em;
	display: flex;
	align-items: center;
  justify-content: space-between;
  gap: 10px;
	margin-bottom: 20px;
	background: var(--bg-color);	
	position: relative;
	list-style: none;
  font-size: var(--font-20);
  font-weight: bold;
  color: var(--main-color);
	&::-webkit-details-marker {
		display:none;
	}
	&:hover {
		cursor: pointer;
	}
  &::after {
    content: "";
    width: 25px;
    height: 3px;
    display: inline-block;
    background: var(--main-color);
    @media screen and (max-width: 767px) {
      width: 20px;
      min-width: 20px;
    }
  }
  &::before {
    content: "";
    width: 3px;
    height: 25px;
    display: inline-block;
    background: var(--main-color);
    position: absolute;
    right: 2.5em;
    top: 50%;
    transform: translateY(-50%);
    @media screen and (max-width: 767px) {
      right: 1.45em;
      height: 20px;
    }
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 1em;
    margin-bottom: 0.5em;
  }
}
.qa_box[open] .qa_box--q::before {
  content: none;
}
.qa_box--a {
	width: 100%;
}


/* ------------------
 header
------------------ */
.header {
  width: 100%;
  height: 100px;
  padding: 0 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 5px solid var(--main-color);
  @media screen and (max-width: 767px) {
    height: 75px;
    padding: 5px 10px;
  }
}
.header_logo {
  width: 265px;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0 10px;
  span {
    font-size: 2.2rem;
    line-height: 1.3;
    white-space: nowrap;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
  }
  span::first-line {
    font-size: 1.4rem;
  }
  .header_logo--en {
    color: var(--main-color);
    font-size: 1.4rem;
  }
  @media screen and (max-width: 767px) {
    height: auto;
    gap: 0;
    img {
      height: 40px;
    }
    span {
      font-size: 1.4rem;
    }
    span.header_logo--en::first-line {
      font-size: 1rem;
    }
  }
}
.pc_nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content:flex-start;
  gap: 0.6em 15px;
}
.pc_nav--top {
  height: 40px;
  padding: 0 2em;
  display: flex;
  align-items: center;
  gap: 2em;
  background: var(--bg-color);
  a {
    color: var(--main-color);
  }
}
.pc_nav--list {
  padding-right: calc(2em - 10px);
  display: flex;
  align-items: center;
}
.pc_nav--item {
  position: relative;
  padding-bottom: 0.25em;
  border-bottom: 2px solid transparent;
  & > a {
    padding: 0 10px;
    display: flex;
    align-items: center;
    color: #000;
  }
  & > a:hover {
    text-decoration: 2px underline var(--main-color);
    text-underline-offset: 1ex;
    opacity: 1;
  }
  & > a:has(+ .pc_nav--dropdown):hover {
    text-decoration: none;
  }
}
.pc_nav--dropdown {
  height: 0;
  white-space: nowrap;
  background: #fff;
  transition: all .3s;
  overflow: hidden;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 3;
  transform: translateY(100%);
  li:not(:last-child) {
    border-bottom: 1px dotted #000;
  }
  a {
    display: block;
    padding: 0.25em;
    color: #000;
  }
}
.pc_nav--item:has(.pc_nav--dropdown) {
  padding: 0 10px 0.25em;
}
.pc_nav--item:has(.pc_nav--dropdown):hover {
  border-bottom: 2px solid var(--main-color);
  &::after {
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background: var(--main-color);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(0px - 0.5em - 2px);
    margin-inline: auto;
    z-index: 5;
  }
}
.pc_nav--item:has(.pc_nav--dropdown):hover > .pc_nav--dropdown {
  height: auto;
  padding: 0.5em;
}

/* ------------------
 main
------------------ */

/*　お知らせ */
.news {
  width: 100%;
  height: 230px;
  overflow: auto;
  margin-top: 1em;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
section:has(.news) {
  max-width: calc(100% - 356px);
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}
.news_item {
  width: 100%;
  padding: 0.8em 0;
  border-top: 1px solid #ccc;
  display: flex;
  align-items: flex-start;
  gap: 5px 1.5em;
  time {
    white-space: nowrap;
  }
  h3 {
    font-size: var(--main-color);
    font-weight: normal;
    line-height: 2;
  }
  h2 {
    font-size: var(--main-color);
    font-weight: normal;
    line-height: 2;
  }
  &:last-child {
    border-bottom: 1px solid #ccc;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
  }
  a:hover {
    text-decoration: none;
  }
  @media screen and (max-width: 767px) {
    padding: 0.5em 3%;
    flex-wrap: wrap;
    h3 {
      line-height: 1.8;
    }
  }
}

/* ------------------
 footer
------------------ */
.footer {
  width: 100%;
  background: var(--gradient);
  & > .container {
    padding: var(--space-65) 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    color: #fff;
    margin: 0 auto;
  }
}
.address {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 30px;
}
.address_head {
  font-size: 2rem;
  padding-bottom: 0.5em;
  @media screen and (max-width: 767px){
    font-size: 1.8rem;
  }
}
.footer_nav {
  padding: 0 1.5em;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  @media screen and (max-width: 767px){
    display: none;
  }
}
.spNav_panel > .footer_nav  {
  padding: 25px 20px;
}
.footer_nav--item {
  a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
  }
  a[target="_blank"]::after {
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    background: url(/eco/grad/common/img/external_icon_w.webp) no-repeat center center;
  }
  a:hover {
    text-decoration: underline;
    opacity: 1;
  }
  a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.copyright {
  width: 100%;
  height: 60px;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
}

/* ------------------
下層ページ共通
------------------ */
/* パンくずリスト */
.breadcrumb {
  width: 100%;
  border-bottom: 1px solid #ccc;
  margin: 0 auto var(--space-65);
  @media screen and (max-width: 767px){
    width: 95%;
    overflow: auto;
  }
}
.breadcrumb_list {
  max-width: 1024px;
  width: 100%;
  padding: 0.5em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 15px;
  line-height: 1.5;
  margin-inline: auto;
  @media screen and (max-width: 767px){
    width: auto;
    flex-wrap: nowrap;
  }
}
.breadcrumb_item {
  color: var(--main-color);
  a {
    text-decoration: underline;
		color: var(--main-color);
    &:hover {text-decoration: none;}
    @media screen and (max-width: 767px){
      font-size: var(--font-14);
    }
  }
  &:has(a[href]) {
    display: flex;
    align-items: center;
    gap: 0 15px;
  }
  &:has(a[href])::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: rotate(45deg);
  }
  @media screen and (max-width: 767px){
    white-space: nowrap;
  }
}

/* ページタイトル */
.page_title {
  width: 100%;
  height: 189px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-40);
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

/* 見出し */
.cmn_heading {
  width: 100%;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--main-color);
  margin-bottom: 1em;
  font-size: var(--font-32);
  color: var(--main-color);
  font-weight: bold;
  line-height: 1.5;
}
.cmn_heading--s {
  font-size: var(--main-txt);
}

/* 小見出し */
.cmn_subheading {
  font-size: var(--font-20);
  font-weight: bold;
  color: var(--main-color);
  margin-bottom: 1em;
}

/* リード文 */
.cmn_lead {
  max-width: 1024px;
  width: 90%;
  margin: 0 auto 2em;
}

/* ページ内リンク */
.page_nav {
  max-width: 1024px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  justify-content: space-between;
  margin: 0 auto var(--space-65);
  a {
    padding: 0.2em 3em;
  }
  a::after {
    transform: rotate(135deg) translate(-5px, -3px);
  }
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
}

/* 関連リンク */
.related_pages {
  width: 100%;
  padding: var(--space-65) 0;
  background: var(--bg-color);
}
.related_pages--list {
  max-width: 1024px;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-inline: auto;
}
.related_pages--item {
  max-width: calc(50% - 10px);
  width: 100%;
  a {
    width: 100%;
    padding: 1em 1.5em;
    display: flex;
    align-items: center;
    background: #fff;
    font-size: var(--font-24);
    color: #000;
    font-weight: bold;
  }
  @media screen and (max-width: 767px){
    max-width: 100%;
    a {
      padding: 0.8em 1.2em;
    }
  }
}

.related_page02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  & > * {
    max-width: 328px;
    width: 100%;
  }
  a {
    width: 100%;
    height: 100%;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--font-32);
    font-weight: bold;
    color: #000;
    text-align: center;
    line-height: 1.5;
    background: var(--bg-color);
  }
  span {
    font-size: var(--font-24);
    color: var(--main-color);
  }
}

/* ------------------
Backtop
------------------ */
#backtop {
  position: fixed;
  display: block;
  width: 50px;
  height: 50px;
  right: 3%;
  bottom: 50px;
  border-radius: 50%;
  background: rgba(50,50,50,0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: -10;
}
#backtop::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-25%) rotate(-45deg);
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}
#backtop.active {
  opacity: 0.6;
  visibility: visible;
  z-index: 50;
}

@media screen and (max-width: 1279px) {
/* 推奨動作環境1280pxに固定 */
  body {
    width: 1280px;
  }
}

@media screen and (min-width: 768px) {
/* PCの場合はtelリンクを無効 */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    color: #000;
  }
}

@media screen and (max-width: 767px) {
	
	/* ------------------
	 config
	------------------ */
	/* スマホ閲覧時、横幅可変 */
  body {
    width: 100%;
  }
	/* スマホのみ表示する要素を表示、PCのみ表示する要素を非表示 */
	.sp_block {display: block;}
	.pc_block,.pc_nav {display: none;}
	
  /* ------------------
  スマホメニュー
  ------------------ */
  /* ボタン */
  .spNav_btn {
    display: flex;align-items: flex-end;justify-content: center;position: fixed; width: 50px;height: 50px;padding-bottom: 3px;background: var(--main-color);top:15px;right: 15px;transition: all 0.5s;z-index: 100;font-size:1.2rem;color:#fff;font-weight:bold;
    span {position: absolute;display: block;height: 2px;background: #fff;margin: auto;}
    
    /* 閉じた状態 */
    &[aria-pressed="false"] span {width: 25px;transition: all 0.5s;}
    &[aria-pressed="false"] span:nth-child(1) {top: 10px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(2) {top: 17px;left: 0;right: 0;}
    &[aria-pressed="false"] span:nth-child(3) {top: 24px;left: 0;right: 0;}
    
    /* 開いた状態 */
    &[aria-pressed="true"] span {width: 25px;transition: all 0.5s;}
    &[aria-pressed="true"] span:nth-child(1) {top: 12px;transform: rotate(45deg);left: 13px;}
    &[aria-pressed="true"] span:nth-child(2) {display: none;}
    &[aria-pressed="true"] span:nth-child(3) {top: 12px;transform: rotate(-45deg);left: 13px;}
  }

  /* メニューパネル */
  .spNav_panel {
    display: block;
    height: 100vh;
    width: 260px;
    position: fixed;
    top: 0;
    right: 0;
    transition: all 0.5s;
    background: var(--main-color);
    box-shadow: -8px 0px 8px -1px rgba(0, 0, 0, 0.2);
    overflow: auto;
    z-index: 99;
    
    /* パネルが閉じている状態 */
    &[aria-hidden="true"] {
      visibility: hidden;
      pointer-events: none;
      transform: translateX(100%);
    }

    /* パネルが開いている状態 */
    &[aria-hidden="false"] {
      visibility: visible;
      transform: translateX(0);
    }
  }

  /* メニューパネル内の項目 */
  .spNav_list {
    width: 100%;
    padding: 56px 0 0;
    font-size: 1.5rem;
    margin-bottom: 120px;
  }
  .spNav_list--item {
    border-bottom: 1px solid var(--bg-color);
    a {
      display: block;
      padding: 12px 20px;
      color: #fff;
      &[target="_blank"]::after {
        content: "";
        width: 12px;
        height: 12px;
        display: inline-block;
        background: url(/eco/grad/common/img/icon_window.webp) center center / contain no-repeat;
        margin-inline: 3px;
        filter: brightness(0) invert(1);
      }
    }
  }
  .spNav_accordion--title {
    width: 100%;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-align: start;
    &::after {
      display: inline-flex;
      justify-content: center;
      align-items: center;
    }
    
    /* アコーディオン開閉時の状態表示 */
    &[aria-expanded="false"]::after {content: "+";font-size: var(--font-24);}
    &[aria-expanded="true"]::after {content: "-";font-size: var(--font-24);}

    /* アコーディオン内の項目 */
    &[aria-expanded="false"] + .spNav_accordion {
      max-height: 0;
      height: auto;
    }
    &[aria-expanded="true"] + .spNav_accordion {
      max-height: 1000px;
    }
  }
  .spNav_accordion {
    overflow: hidden;
    background: #fff;
    transition: all 0.5s;
    a {
      width: 100%;
      padding-left: 2em;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #000;
      border-bottom: 1px dashed #ccc;
    }
    a::after {
      content: "";
      width: 8px;
      height: 8px;
      display: inline-block;
      border-top: 1px solid var(--main-color);
      border-right: 1px solid var(--main-color);
      transform: rotate(45deg);
    }
  }
  /* bodyをタッチ不可に */
  #onbody {position: absolute;height: 100%;width: 100%; top: 0;left: 0;background: rgba(0, 0, 0, 0.6);z-index: 98;overflow: hidden;pointer-events: none;}
  body:has(#onbody[aria-hidden="true"]) {height: 100%; overflow: hidden;}

  .spNav_icon {
    padding:0 20px;
  }
}

/* 印刷用設定 */
@media print {
  body {
    width:1280px!important;
    zoom: 0.68;
    -webkit-print-color-adjust: exact;
  }
}
@page {
  size: A4;margin: 5px;
}