@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fondamento:ital@0;1&display=swap");
/*---
-reset
-base：基本のスタイル
-animation：アニメーション設定
-　Utilities：共通パーツ
-each-style ：各スタイル
 ーheader
 -mainvisual
 -common_element：各エリア、見出しまわり、各コンテンツ
 -footer
---*/
/* =======================================================================
　reset
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  height: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  margin-bottom: 1em;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

b, strong {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

th,
td {
  padding: 12px 0.5em;
}

caption, th, td {
  text-align: center;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  outline: none;
  color: #06f;
  text-decoration: none;
}

a:link {
  color: #06f;
}

a:visited {
  color: #39f;
}

a:hover {
  color: #00f;
}

a:active {
  color: #00f;
}

a img {
  border: none;
}

img {
  height: auto;
  width: 100%;
  line-height: 1;
  vertical-align: top;
}

embed, iframe, object {
  margin-bottom: 1.5em;
  max-width: 100%;
}

input, button,
textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

/* =======================================================================
　base
========================================================================== */
html {
  font-size: 62.5%;
}

body {
  background: #122242;
  color: #fff;
  font-size: 1.5rem;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.65;
  font-family: "Noto Serif JP", serif;
  word-wrap: break-word;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.16);
}

section > *:last-child {
  margin-bottom: 0 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.45;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.5rem;
}

/* Larger than phablet */
@media (min-width: 768px) {
  body {
    font-size: 1.9rem;
  }
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 6.3rem;
  }
  h3 {
    font-size: 2.2rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 1.9rem;
  }
}
/* Spacing */
button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

/* Misc*/
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

hr.hr_dot {
  height: 5px;
  display: block;
  border: none;
  background: url(../img/prts_ttle_line_small.png) center center repeat-x;
  background-size: auto 50%;
}

@media (min-width: 768px) {
  hr.hr_dot {
    margin-top: 2.5em;
    margin-bottom: 3em;
  }
}
/* =======================================================================
　Animation
========================================================================== */
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeUP {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*fadeDown*/
@keyframes fadeDown {
  0% {
    opacity: 0;
    padding-top: 4%;
  }
  to {
    opacity: 1;
    padding-top: 0;
  }
}
@-webkit-keyframes fadeDown {
  0% {
    opacity: 0;
    padding-top: 4%;
  }
  to {
    opacity: 1;
    padding-top: 0;
  }
}
/* =======================================================================
　Utilities //共通パーツ u-name
========================================================================== */
.u-sp {
  display: block;
}

.u-pc {
  display: none;
}

.u-f-left {
  float: left;
}

.u-f-right {
  float: right;
}

.u-max-w100 {
  max-width: 100%;
}

.u-txt-center {
  text-align: center;
}

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

.u-txt-right {
  text-align: right !important;
}

.u-txt-space {
  letter-spacing: 1em;
}

.u-f-75 {
  font-size: 75%;
  font-weight: normal;
}

.u-f-85 {
  font-size: 85%;
  font-weight: normal;
}

.u-f-875 {
  font-size: 87.5%;
  font-weight: normal;
}

.u-f-110 {
  font-size: 110%;
}

.u-f-150 {
  font-size: 150%;
}

.u-f-red {
  color: #9C0002;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-indent-1 {
  padding-left: 1em;
  text-indent: -1em;
  display: inline-block;
}

.u-indent-2 {
  padding-left: 2em;
  text-indent: -2em;
  display: inline-block;
}

.u-indent-3 {
  padding-left: 3em;
  text-indent: -3em;
  display: inline-block;
}

.u-indent-4 {
  padding-left: 4em;
  text-indent: -4em;
  display: inline-block;
}

.u-indent-5 {
  padding-left: 5em;
  text-indent: -5em;
  display: inline-block;
}

.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-clear {
  clear: both;
}

.u-clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.u-pos-r {
  position: relative;
}

.c-lead {
  font-size: 1.1em;
}

.c-lead2 {
  font-size: 1.2em;
  margin: 2em 0;
}

.title-figcap {
  font-weight: bold;
  margin-bottom: 2em;
  font-size: 1.6rem;
}

.note-box {
  border: 1px dotted #333;
  padding: 1.5em;
  margin-bottom: 2.5rem;
}

@media all and (max-width: 767px) {
  .br-tab {
    display: none;
  }
  .br-pc {
    display: none;
  }
}
@media all and (min-width: 768px) {
  .u-sp {
    display: none;
  }
  .u-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
  .c-lead {
    font-size: 1.2em;
    margin-bottom: 3.5em;
  }
  .c-lead2 {
    font-size: 1.4em;
    margin: 3em 0;
  }
  .title-figcap {
    font-size: 1.8rem;
  }
}
@media all and (min-width: 1024px) {
  .br-tab {
    display: none;
  }
  .br-sp-tab {
    display: none;
  }
}
/* =======================================================================
　each-style
========================================================================== */
/*ALL*/
/* ----- header/main ----- */
header {
  position: absolute;
  top: 8.5%;
  left: 0;
  width: 100%;
}

.main-wrapper {
  position: relative;
  z-index: 3;
  background: #000000;
}

/* ----- nav ----- */
#local_nav {
  margin-top: 6.95%;
  text-align: left;
  width: 100%;
}

#local_nav li {
  font-weight: normal;
  font-family: "Fondamento", cursive;
  list-style: none;
  font-size: 3.4rem;
  font-size: 4.53vw;
  line-height: 1;
  margin-bottom: 0.4em;
  letter-spacing: 0.06em;
  text-indent: -0.06em;
  cursor: pointer;
  width: 8.75em;
  padding-left: 2.2em;
}

#local_nav li a {
  color: #FFF;
  display: inline-block;
  cursor: pointer;
  line-height: 2.55em;
  width: 100%;
  text-align: left;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  position: relative;
  margin-left: 0.6em;
}

#local_nav li a:hover {
  opacity: 0.8;
}

/*----------------------------------------------------
common_element
----------------------------------------------------*/
/*cont共通*/
.container {
  text-align: center;
  position: relative;
  background-color: #122242;
}

.container::after {
  content: "";
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* PCデザイン1366基準 */
  width: 100%;
  /* 元画像 2000 × 1310 */
  aspect-ratio: 200/131;
  background: url(../img/prts_bg_center.png) no-repeat center/contain;
  pointer-events: none;
  opacity: 0.9;
}

.container-wrapper {
  position: relative;
}

.container-wrapper:before {
  content: "";
  position: fixed;
  right: 0;
  top: -15%;
  width: clamp(260px, 35vw, 500px);
  aspect-ratio: 960/1742; /* 画像の比率 */
  background: url(../img/prts_bg_right.png) no-repeat 0 0;
  background-size: contain;
  z-index: 1;
}

.container-wrapper:after {
  content: "";
  position: fixed;
  left: 0;
  bottom: 0;
  width: clamp(220px, 30vw, 500px);
  aspect-ratio: 960/1742; /* 画像の比率 */
  background: url(../img/prts_bg_left.png) no-repeat 0 0;
  background-size: contain;
  z-index: 1;
}

.ios .container {
  background: url(../img/bg_ptrn.png) center top repeat;
  background-size: 125px auto;
}

.container {
  animation: fade 2.5s ease 0s 1 normal;
  -webkit-animation: fade 2.5s ease 0s 1 normal;
}

main {
  position: relative;
  z-index: 2;
}

main::after {
  content: "";
  position: absolute;
  left: 17.5%;
  top: -3%;
  /* PCデザイン1366基準 */
  width: 22%;
  max-width: 290px;
  aspect-ratio: 274/561;
  background: url(../img/prts_ttle_dots.png) no-repeat center/contain;
  pointer-events: none;
}

#mtl {
  opacity: 0;
  transform: translateY(-10px);
  filter: blur(20px);
  transition: all 0.9s ease;
}

.contents-wrapper {
  position: relative;
  z-index: 2;
}

.sec-info {
  position: relative;
  z-index: 1;
}

/*.contents-wrapper section:not(.sec-intro){
  padding: 5vw 0 7vw;
  max-width: 1160px;
  margin: 0 auto;
  }*/
.contents-wrapper section {
  padding: 5vw 20px 0;
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: clamp(1rem, 5.56vw, 7rem);
}

.contents-wrapper section.sec-info {
  padding-bottom: 0;
}

/*共通矢印*/
.nav-arrow::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 0.5em;
  height: 100%;
  left: -0.9em;
  background: url(../img/nav_arrow.svg) center no-repeat;
  background-size: auto 20%;
}

/*見出しまわり*/
.title_h_lv2 {
  padding-top: 6px;
  font-size: 2.8rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 1.5em;
  width: 100%;
}

.title_h_lv2 b {
  font-weight: normal;
  font-family: "Fondamento", cursive;
  display: inline-block;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.4);
  z-index: 1;
  line-height: 1em;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-indent: 0.05em;
}

.title_h_lv2 span {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1em;
  font-weight: 300;
  font-family: "Noto Serif JP";
  padding-bottom: 1.35em;
}

.line_large {
  background-image: url(../img/prts_ttle_line_large.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 80% auto;
}

.title_h_lv3 {
  font-family: "Fondamento", cursive;
  font-weight: normal;
  color: #fff;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  text-indent: 0.04em;
}

/*INFO*/
.flex-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.flex-item {
  width: 100%;
  margin-bottom: 3rem;
  overflow: hidden;
  filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.4));
}

a.link-movie, a.link-sns {
  transition: filter 0.3s ease;
  filter: brightness(1);
  cursor: pointer;
}

a.link-movie:hover {
  filter: brightness(1.1);
}

a.link-sns:hover {
  filter: brightness(1.2);
}

.title-big {
  letter-spacing: 0.035em;
  color: #fff;
  font-size: 2.6rem;
  font-weight: 600;
  width: 100%;
  max-width: 330px;
  display: inline-block;
}

.title-big span {
  font-size: 2.6rem;
}

.title-big strong {
  color: #fff;
  font-size: 4.1rem;
  font-weight: 600;
  background: linear-gradient(0deg, #ef5a68 30%, #ffbbb1 50%, #ffeeb9 85%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(1.5px 1.5px 0 rgb(255, 255, 255));
}

.sns-embed-wrap {
  width: 100%;
  height: auto;
  padding-top: 56.25%;
  position: relative;
  overflow-y: auto;
  border: solid 1px #9a9a9a;
  background: #17222d;
}

.sns-embed-cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*News*/
.news span.date {
  display: inline-block;
  margin-right: 3rem;
}

.news a {
  text-decoration: underline;
  color: #fff;
  letter-spacing: -0.04em;
}

/*Introduction*/
.intro-lead {
  line-height: 2.6;
  letter-spacing: 0.05em;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  font-weight: 300;
}

.intro-lead span {
  color: #EF5A68;
}

.u-color-pink {
  color: #FC5685;
}

.u-color-gold {
  color: #D89C4B;
}

/*sec-box*/
.sec-box {
  background: rgba(255, 255, 255, 0.1);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.9em 1.5em;
  position: relative;
}

.sec-box > *:last-child {
  margin-bottom: 0;
}

.sec-box:after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%; /* 下にぴったり */
  width: 100%;
  aspect-ratio: 886/44; /* 画像の比率 */
  background: url(../img/prts_shdw.png) no-repeat center;
  background-size: contain;
}

.title-name {
  color: #EF5A68;
  font-weight: normal;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.name-list tr {
  text-align: center;
  display: table;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
}

.name-list td {
  vertical-align: top;
}

/*.name-list tr.list-2 {
  max-width:  380px;
}*/
.name-list .list-2 td, .name-list .list1-2 td {
  width: 50%;
}

.name-list tr.list-2.list-pc-1 {
  max-width: 500px;
}

.name-list tr td {
  display: table-cell;
}

.svg-logo {
  padding: 0.6em 0 0.3em;
  width: 152px;
  height: auto;
}

.bnr-bottom p {
  font-family: sans-serif;
  font-weight: bold;
  margin-bottom: 1.8em;
}

.bnr-bottom img {
  width: 80%;
  max-width: 320px;
  margin-bottom: 1.8em;
}

.info-list {
  margin-top: 2em;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  border-bottom: 1px solid #666;
}

.info-list tr {
  text-align: left;
  margin: 0 auto;
}

.info-list tbody tr {
  border-bottom: 1px dotted #666;
}

.info-list th,
.info-list td {
  text-align: left;
  font-size: 1.4rem;
  vertical-align: top;
  padding: 13px;
  padding-left: 1em;
  padding-right: 1em;
}

.info-list thead th {
  font-size: 1.4rem;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
}

.info-list thead th, .info-list tbody th {
  padding-right: 0;
}

.info-list tbody th {
  color: #EF5A68;
}

.info-list tbody th a {
  color: #EF5A68;
  text-decoration: underline;
}

/*footer */
/* ----- pagetop ----- */
#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  margin: 0 !important;
  z-index: 4;
}

#page-top a {
  width: 50px;
  height: 50px;
  display: block;
  text-align: center;
  font-weight: bold;
}

#page-top a:hover {
  opacity: 0.8;
}

/*footer-----------------------*/
footer {
  padding: 2.25em 0.5em;
  width: 100%;
  background-color: #000000;
  position: relative;
  z-index: 1;
}

footer p {
  font-size: 1.1rem;
  line-height: 1.25em;
  margin: 0;
  letter-spacing: 0.05em;
  color: #fff;
}

/*SP*/
@media all and (max-width: 767px) {
  /* ----- header/main ----- */
  header {
    top: 3.5%;
  }
  /*mainvisual*/
  .main-wrapper h1 {
    width: 32%;
    margin: 0 0 0 auto;
  }
  /* ----- nav ----- */
  #local_nav {
    margin-top: 24.5%;
  }
  #local_nav ul {
    display: flex;
    flex-wrap: wrap;
    background-color: #000;
    padding-bottom: 20px;
  }
  #local_nav li {
    font-size: 6vw;
    width: 8em;
    padding-left: 0.8em;
    margin-bottom: 0;
  }
  #local_nav li a {
    line-height: 2.2em;
  }
  /*----------------------------------------------------
  common_element
  ----------------------------------------------------*/
  /*SP用*/
  .container::after {
    width: 150%;
    opacity: 0.8;
  }
  .sec-box {
    padding: 1.9em 0.7em;
  }
  .contents-wrapper section.sec-info {
    margin-top: 40px;
  }
  .sec-box table {
    margin-left: -10px;
    width: calc(100% + 20px);
  }
  main::after {
    left: -100px;
    top: -220px;
    width: 52%;
    max-width: 340px;
  }
  .container-wrapper:before {
    right: -25%;
    top: -10%;
  }
  .container-wrapper:after {
    left: -25%;
  }
  .name-list .list-4 {
    padding-left: 0.25em;
    padding-right: 0.25em;
  }
  .name-list tr.list-2 {
    width: 85%;
  }
  .name-list tr.list-2.list-pc-1 {
    width: 95%;
  }
  .name-list tr.list-3 {
    max-width: 430px;
  }
  .title_h_lv2 {
    font-size: 3.6rem;
    margin-bottom: 1em;
  }
  .title_h_lv2 span {
    padding: 1em 0 3em;
  }
}
@media all and (max-width: 767px) and (max-width: 480px) {
  /*News*/
  .news p {
    text-align: left;
    display: inline-block;
  }
  .news span.date {
    display: block;
    margin-right: 0;
  }
  .name-list tr.list-2.list-pc-1 td {
    width: 100%;
    display: block;
  }
  .intro-lead {
    letter-spacing: 0;
    line-height: 2.5;
  }
  .info-list th,
  .info-list td {
    font-size: 1.2rem;
    padding-left: 0.75em;
    padding-right: 0.75em;
  }
  .info-list thead th {
    font-size: 1.4rem;
  }
}
@media all and (max-width: 767px) {
  /*footer */
}
/*PC（more than tablet）*/
@media all and (min-width: 768px) {
  /* ----- header/main ----- */
  header {
    width: 100%;
    top: 5.2%;
  }
  /*mainvisual*/
  .main-wrapper {
    filter: drop-shadow(0px 10px 6px rgba(0, 0, 0, 0.6));
  }
  .main-wrapper h1 {
    width: 12.07%;
    margin: 0 0 0 84.55%;
  }
  /* ----- nav ----- */
  #local_nav {
    padding-left: 4.68%;
    margin-top: -20%;
  }
  #local_nav li {
    font-size: clamp(2rem, 2.78vw, 5rem);
    background-position-y: center;
    margin-bottom: 0.32em;
    padding-left: 1.25em;
    padding-right: 1.25em;
    margin-right: 0.75em;
    background-color: rgba(159, 112, 23, 0.4);
    border-radius: 30px;
  }
  #local_nav li a {
    line-height: 1.45em;
  }
  /*----------------------------------------------------
  common_element
  ----------------------------------------------------*/
  /*TAB/PC用*/
  .container {
    background-size: 202px auto;
  }
  .ios .container {
    background-size: 202px auto;
  }
  .contents-wrapper::before {
    background-size: 940px auto;
  }
  .title_h_lv2 {
    font-size: 4.4rem;
    max-width: 760px;
    width: 100%;
  }
  .title_h_lv2 b {
    padding-bottom: 0.45em;
  }
  .title_h_lv2 span {
    font-size: 1.4rem;
    padding-bottom: 2.6em;
  }
  .title_h_lv3 {
    margin-bottom: 0.5em;
    font-size: 3.6rem;
  }
  .flex-box {
    column-gap: 40px;
    flex-wrap: nowrap;
  }
  .flex-item {
    width: 50%;
  }
  .title-big {
    line-height: 1.3;
    margin-bottom: 3em;
    max-width: 595px;
  }
  .title-big span {
    font-size: 4.4rem;
  }
  .title-big strong {
    font-size: 6rem;
  }
  .title-big small {
    letter-spacing: -0.1em;
    text-indent: -0.1em;
    font-size: 90%;
  }
  .sec-box {
    padding: 3.85em 3em;
  }
  .name-list tr {
    min-width: 300px;
  }
  .name-list th, .name-list td {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .name-list tr.list-2 {
    max-width: 480px;
  }
  .name-list tr.list-3 {
    max-width: 500px;
  }
  .name-list .list-3 td {
    width: 33.33%;
  }
  .info-list th,
  .info-list td {
    font-size: 1.7rem;
  }
  .info-list tbody td {
    font-size: 1.6rem;
  }
  .info-list thead th {
    font-size: 1.4rem;
  }
  .info-list th,
  .info-list td {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .info-list thead th {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
@media all and (min-width: 768px) and (max-width: 1023px) {
  .contents-wrapper::before {
    background-size: 768px auto;
  }
  .title-big span {
    font-size: 3.2210834553vw;
  }
  .title-big strong {
    font-size: 5.0512445095vw;
  }
  .title-big {
    max-width: 58.1622678397vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1023px) {
  .title_h_lv2 {
    font-size: 4.3010752688vw;
  }
  .title_h_lv2 span {
    font-size: 1.2707722385vw;
  }
  .title_h_lv3 {
    font-size: 2.85rem;
  }
}
@media all and (min-width: 768px) {
  /*footer */
  /* –––– page-top ---- */
  #page-top a {
    width: 60px;
    height: 60px;
  }
  /*footer-----------------------*/
  footer small {
    font-size: 1.5rem;
  }
}
@media print {
  .container {
    background-attachment: scroll;
  }
}