@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Poppins:wght@700&display=swap");
.section .image-wrap {
  text-align: center;
}

.recommend__link:hover .recommend__image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.section .image {
  max-width: 100%;
  height: auto;
}

/* Reset
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

main, article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing="0"' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Fonts
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
:lang(ja) {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

:lang(en) {
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.3em;
  font-weight: 700;
  /*font-variant-ligatures: none;*/
}

html {
  font-size: 62.5%;
}

body {
  line-height: 2.2;
  font-size: 1.5rem;
  color: #333;
  letter-spacing: 0.1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* common
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
html {
  height: 100%;
}

body {
  background: #FFF;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

p, ul, ol, dl {
  margin: 0 0 30px;
}

h1, h2, h3, h4, h5 {
  line-height: 1.6;
  margin: 0 0 30px;
  letter-spacing: 0.3em;
  font-weight: bold;
  font-size: 2.4rem;
}

li {
  margin: 0 0 0 2.2em;
}

ul {
  list-style: disc;
}
ul ul {
  list-style: circle;
}

ol {
  list-style: decimal;
}
ol ol {
  counter-reset: number-child-list;
}
ol ol li {
  counter-increment: number-child-list;
  list-style: none;
  margin-left: 2.5em;
}
ol ol li::before {
  content: "(" counter(number-child-list) ")";
  width: 2.5em;
  display: inline-block;
  margin-left: -2.5em;
}

.hidden {
  display: none;
}

table {
  width: 100%;
  margin: 60px 0;
  padding: 20px 0;
  border-collapse: collapse;
}
table:first-child {
  margin-top: 0;
}
table th, table td {
  padding: 30px;
  text-align: left;
  border-top: 1px solid #00A76A;
  border-bottom: 1px solid #00A76A;
}
table th p, table th ul, table th ol, table th dl, table td p, table td ul, table td ol, table td dl {
  margin: 0 0 20px;
}
table th :not(input):not(select):not(textarea):not(span):last-child, table td :not(input):not(select):not(textarea):not(span):last-child {
  margin-bottom: 0 !important;
}
table th {
  width: 30%;
  font-weight: bold;
  letter-spacing: 0.2em;
}
table tbody {
  border-top: 3px solid #00A76A;
  border-bottom: 3px solid #00A76A;
}
table tbody tr.combine > td {
  border-top: none;
  border-bottom-style: dashed;
}
table tbody tr:last-child > th, table tbody tr:last-child > td {
  border-bottom: none;
}
table tbody th[rowspan] ~ td {
  border-bottom-style: dashed;
}
table thead th {
  width: auto;
  text-align: center;
  font-weight: 900;
  color: #00A76A;
  border-top: none;
}
table tfoot th,
table tfoot td {
  border-bottom: none;
}
table caption {
  font-weight: bold;
  text-align: left;
}

hr {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border: none;
  vertical-align: bottom;
}

em {
  font-style: italic;
}

strong {
  font-weight: bold;
}

sup {
  vertical-align: top;
  line-height: 1.8;
  font-size: x-small;
}

ins {
  color: #C00;
}

a {
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #E73817;
}
a:hover span {
  cursor: pointer;
}
a.inactive, .inactive a {
  cursor: default;
  pointer-events: none;
}
a:not([class]) {
  text-decoration: underline;
  color: #E73817;
}
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    color: #333;
    text-decoration: none;
    pointer-events: none;
  }
}

.btn-area {
  margin: 80px 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

input,
select,
textarea,
button {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  background: transparent;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  line-height: 1.8;
  overflow: visible;
}

input[type=submit],
button {
  cursor: pointer;
}

.italic {
  font-style: italic;
}

.note {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.6;
}

.flow-root {
  display: flow-root;
}

.float-clear {
  clear: both;
}

@media screen and (max-width: 1023px) {
  p, ul, ol, dl {
    margin: 0 0 20px;
  }
  h1, h2, h3, h4, h5 {
    margin: 0 0 20px;
    font-size: 1.6rem;
  }
  table {
    margin: 40px 0;
    padding: 0;
  }
  table tbody {
    border-top-width: 2px;
    border-bottom-width: 2px;
  }
  table th, table td {
    padding: 15px 5px;
    font-size: 1.3rem;
    width: auto;
  }
  table.basic-table > thead {
    display: none;
  }
  table.basic-table > tbody, table.basic-table > tbody > tr, table.basic-table > tbody > tr > th, table.basic-table > tbody > tr > td, table.basic-table > tr, table.basic-table > tr > th, table.basic-table > tr > td {
    display: block;
    text-align: left;
  }
  table.basic-table > tbody > tr > td {
    border-top: none;
  }
  table.basic-table > tbody > tr > td:not(:last-child) {
    border-bottom: none;
  }
  table.basic-table > tbody > tr > td:nth-child(n+2) {
    padding-top: 0;
  }
  table.basic-table > tbody > tr > th, table.basic-table > tr > th {
    border: none;
  }
  table.basic-table td p, table.basic-table td ul, table.basic-table td ol, table.basic-table td dl {
    margin: 0 0 10px;
  }
  table.basic-table td :not(input):not(select):not(textarea):not(span):last-child {
    margin-bottom: 0 !important;
  }
  tr:last-child table.basic-table td {
    border-bottom: none;
  }
  table.basic-table tr.combine + tr:not(.combine) > th {
    border-top: 1px solid #00A76A;
    margin-top: -1px;
  }
  .btn-area {
    margin: 40px 0;
  }
  input,
  select,
  textarea,
  button {
    font-size: 1.4rem;
  }
  .note {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1024px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  br.sp {
    display: inline;
  }
}
.wrapper {
  overflow: hidden;
}

.contents {
  display: flow-root;
  position: relative;
  padding: 0 50px;
  counter-reset: section-count;
}

.page-header {
  position: relative;
  min-height: 350px;
  margin: 75px 0 120px;
}
.page-header__hero {
  height: 100%;
  padding-top: max(42.3076923077%, 530px);
  position: relative;
}
.page-header__hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}
.page-header__hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 35%;
  bottom: -1px;
  background: #FFF;
  padding-top: 50%;
  width: 100%;
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
  -webkit-transform: skewX(-73deg);
          transform: skewX(-73deg);
}
.page-header__hero-image {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-header__title-wrap {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  right: 0;
  background: #E73817;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-width: 45%;
}
.page-header__category {
  color: #FFF;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0 0 10px;
}
.page-header__title {
  color: #FFF;
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  margin: 0;
}
.page-header__en-title {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  font-size: min(10vw, 12rem);
  line-height: 1;
  letter-spacing: min(1.7vw, 0.3em);
  text-align: center;
  text-stroke: 2px #FFF;
  -webkit-text-stroke: 2px #FFF;
  color: transparent;
}
.page-header__en-title--color-sub {
  text-stroke-color: #00A76A;
  -webkit-text-stroke-color: #00A76A;
}
.page-header__lead {
  color: #E73817;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
  min-width: 45%;
  float: right;
  margin: 0;
}

.section {
  margin: 0 0 120px;
  padding: 0 max(calc(100vw - 50px * 2 - 80vw) / 2, calc(100vw - 50px * 2 - 1000px) / 2);
  counter-increment: section-count;
}
.section--color-bg {
  background: #FFFAEB;
  padding-top: 100px;
  padding-bottom: 100px;
}
.section--color-bg:last-child {
  margin-bottom: 50px;
}
.section--color-bg > :last-child {
  margin-bottom: 0;
}
.page-header + .section--color-bg {
  margin-top: calc(50px - 120px);
}
.section__heading {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #E73817;
  margin: 0 0 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__heading-count {
  width: 100px;
  margin: 0 30px 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  color: #00A76A;
  font-size: 8rem;
  letter-spacing: 0.05em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section__heading-count::before {
  content: counter(section-count, decimal-leading-zero);
  font-size: 8rem;
}
.section__heading-count::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 100px 0 0;
  border-color: #00A76A transparent transparent transparent;
}
.section__sub-heading {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.15em;
  margin: 50px 0;
}
.section__sub-heading:first-child {
  margin-top: 0;
}
.section__sub-heading--large {
  font-size: 2.4rem;
}
.section .image-wrap {
  margin: 50px 0;
}
.section__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section__flex-item--left {
  margin-right: 50px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.section__flex-item--right {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.section__flex-item--image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 45%;
}
.section__flex-item--image .image-wrap {
  margin-top: 0;
  margin-bottom: 0;
}

.wrap-link {
  text-decoration: none;
}

.recommend {
  margin: 0 calc(50px * 2) calc(50px);
  padding-top: 50px;
  border: 1px solid #E73817;
  position: relative;
}
.recommend__heading {
  font-size: 6rem;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  line-height: 1;
  text-align: center;
  color: #00A76A;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15%;
  right: 15%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
}
.recommend__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
}
.recommend__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
  width: 35%;
  margin: 0;
}
.recommend__item:last-child {
  text-align: right;
}
.recommend__image-wrap {
  margin: 0 0 0 calc(50px * -1);
}
.recommend__item:last-child .recommend__image-wrap {
  margin: 0 calc(50px * -1) 0 0;
}
.recommend__text {
  display: block;
  min-height: 50px;
  margin: 0 20px;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.abreast-list__title {
  font-weight: 500;
  float: left;
  margin: 0 1em 0 0;
}
.abreast-list__title::after {
  content: "：";
}
.abreast-list__description {
  overflow: hidden;
}

.button-link {
  display: inline-block;
  vertical-align: baseline;
  color: #FFF !important;
  line-height: 1.5;
  padding: 0.3em calc(1em + 10px) 0.3em 1em;
  margin: 0.5em 0;
  font-size: 90%;
  letter-spacing: 0.15em;
  font-weight: 700;
  position: relative;
}
.button-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #E73817;
  border-radius: 30px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.button-link:hover::before {
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
}
.button-link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  border: 1px solid #FFF;
  border-left: none;
  border-bottom: none;
  width: 6px;
  height: 6px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1023px) {
  .contents {
    padding: 0 15px;
  }
  .page-header {
    display: flow-root;
    overflow: hidden;
    margin: 40px 0 60px;
    min-height: 200px;
  }
  .page-header__hero {
    width: 170%;
    padding-top: min(70vw, 350px);
    margin: 0 -35%;
  }
  .page-header__hero::after {
    left: 45%;
  }
  .page-header__title-wrap {
    position: relative;
    right: auto;
    bottom: auto;
    padding: 15px;
    float: right;
    margin: -7vw 0 0 5vw;
  }
  .page-header__title-wrap:first-child {
    margin-top: calc(100px + min(2.6vw, 18px));
  }
  .page-header__category {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
  .page-header__title {
    font-size: 2.8rem;
    letter-spacing: 0.15em;
  }
  .page-header__en-title {
    letter-spacing: min(1.7vw, 0.3em);
    height: min(70vw, 350px);
    bottom: auto;
    font-size: min(10vw, 6rem);
    text-stroke-width: 1px;
    -webkit-text-stroke-width: 1px;
  }
  .page-header__title-wrap:first-child + .page-header__en-title {
    height: 200px;
  }
  .page-header__lead {
    font-size: 1.4rem;
    margin-top: 20px;
  }
  .section {
    margin: 0 0 60px;
    padding: 0 calc(calc(100vw - 15px * 2 - 84vw) / 2);
  }
  .section--color-bg {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section--color-bg:last-child {
    margin-bottom: 15px;
  }
  .page-header + .section--color-bg {
    margin-top: calc(15px - 60px);
  }
  .section__heading {
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin: 0 0 40px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .section__heading-count {
    width: 40px;
    margin: 0 10px 0 0;
    font-size: 3.5rem;
    letter-spacing: 0;
  }
  .section__heading-count::before {
    font-size: 3.5rem;
  }
  .section__heading-count::after {
    border-width: 9px 40px 0 0;
  }
  .section__sub-heading {
    font-size: 1.5rem;
    letter-spacing: 0.15em;
    margin: 30px 0;
  }
  .section__sub-heading:first-child {
    margin-top: 0;
  }
  .section__sub-heading--large {
    font-size: 1.7rem;
  }
  .section .image-wrap {
    margin: 30px 0;
  }
  .section__flex {
    display: block;
  }
  .section__flex-item--left {
    margin-right: 0;
  }
  .section__flex-item--image {
    width: auto;
  }
  .recommend {
    margin: 0 calc(15px * 2) calc(15px);
    padding-top: 15px;
  }
  .recommend__heading {
    font-size: 2.8rem;
    letter-spacing: 0.2em;
    text-indent: 0;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    -webkit-transform: translate(0.1em, 0);
            transform: translate(0.1em, 0);
    padding: 0;
    margin: 0 0 -0.5em;
  }
  .recommend__item {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    width: calc((100% - 15px) / 2);
    margin: 0;
    text-align: center !important;
  }
  .recommend__link:hover .recommend__image {
    -webkit-transform: none;
            transform: none;
  }
  .recommend__image-wrap {
    margin: 0 0 0 calc(15px * -1);
  }
  .recommend__item:last-child .recommend__image-wrap {
    margin: 0 calc(15px * -1) 0 0;
  }
  .recommend__text {
    min-height: 15px;
    margin: 0 10px;
    padding: 10px 0;
  }
}
/* header
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 75px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.header.pos-absolute {
  position: absolute;
}

.site-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  z-index: 3;
  top: 0;
  left: 0;
  width: min(15vw, 180px);
  height: 150px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  /*-webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);*/
  background-color: rgb(255, 255, 255);
}
.on-scroll .site-title {
  width: 150px;
  height: 125px;
}

.site-title__link {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  line-height: 1.4;
}
.site-title__image {
  width: 120px;
  height: auto;
  margin: 0 0 10px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.on-scroll .site-title__image {
  width: 100px;
  margin-bottom: 5px;
}

.site-title__path {
  fill: #E73817;
}
.site-title__text {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
}
.site-title__coop {
  font-weight: 900;
  color: #E73817;
  display: block;
}

.social-media {
  border: 1px solid #E73817;
  margin: 0;
  background: #FFF;
}
.social-media__item {
  margin: 0;
  list-style: none;
}
.social-media__item:not(:last-child) {
  border-bottom: 1px solid #E73817;
}
.social-media__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 10px 15px;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  min-height: 40px;
}
.social-media .yt-icon,
.social-media .ig-icon {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 40px;
  height: 40px;
}
.social-media .yt-icon {
  background-image: url("../common_images/icn_youtube.svg");
}
.social-media .ig-icon {
  background-image: url("../common_images/icn_instagram.png");
}

.nav {
  position: relative;
  margin: 0;
  padding-left: 100px;
  height: 100%;
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  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-transition: 0.2s ease;
  transition: 0.2s ease;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.nav::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), color-stop(20%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.8)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.8) 100%);
}
.nav > .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  position: relative;
  inset: auto;
  border: none;
  background: transparent;
  margin-inline: 10px;
}
.nav > .social-media .social-media__item {
  border: none !important;
}
.nav > .social-media .social-media__link {
  display: block;
  padding: 0;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  overflow: hidden;
  min-height: 0;
}
.nav > .social-media .yt-icon,
.nav > .social-media .ig-icon {
  display: block;
  background: #E73817;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  width: 24px;
  height: 24px;
}
.nav > .social-media .yt-icon {
  -webkit-mask-image: url("../common_images/icn_youtube_mask.svg");
          mask-image: url("../common_images/icn_youtube_mask.svg");
}
.nav > .social-media .ig-icon {
  -webkit-mask-image: url("../common_images/icn_instagram_mask.svg");
          mask-image: url("../common_images/icn_instagram_mask.svg");
}
@media screen and (max-width: 1280px) {
  .nav {
    padding-left: 0;
  }
}

.nav-mode body {
  overflow: hidden !important;
}

.nav-horizontal {
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.nav-horizontal__title {
  display: none;
}
.nav-horizontal__inner {
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(1.2vw, 30px);
  height: 100%;
}
.nav-horizontal__list {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0 auto;
}
.nav-horizontal__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0 1.2vw;
  padding: 0 min(1.2vw, 30px);
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: default;
  -webkit-transition: 0.2s 0.3s ease;
  transition: 0.2s 0.3s ease;
}
.nav-horizontal__item:hover {
  color: #FFF;
  background: #00A76A;
}
.nav-horizontal__item::before {
  content: "";
  background: rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 75px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  -webkit-transition: 0.2s 0.3s ease;
  transition: 0.2s 0.3s ease;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}
.nav-horizontal__item:hover::before {
  visibility: visible;
  opacity: 1;
}
.nav-horizontal__item-label {
  min-height: 0vw;
  font-size: min(1.1vw, 1.3rem);
  white-space: nowrap;
}
.nav-horizontal__child-list {
  visibility: hidden;
  position: absolute;
  z-index: -1;
  list-style: none;
  margin: 0;
  top: 100%;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transform: translate(0, -100%);
          transform: translate(0, -100%);
  -webkit-transition: visibility 0.2s 0.3s ease, opacity 0.2s 0.3s ease, -webkit-transform 0.2s 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: visibility 0.2s 0.3s ease, opacity 0.2s 0.3s ease, -webkit-transform 0.2s 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: visibility 0.2s 0.3s ease, opacity 0.2s 0.3s ease, transform 0.2s 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: visibility 0.2s 0.3s ease, opacity 0.2s 0.3s ease, transform 0.2s 0.3s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 0.2s 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 180px 50px 5vw;
}
.nav-horizontal__item:hover .nav-horizontal__child-list {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.nav-horizontal__child-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45%;
  margin: 0 2.5%;
  font-size: 1.4rem;
  border-bottom: 1px solid #00A76A;
}
.nav-horizontal__child-item--wide, .nav-horizontal__child-item:first-child:last-child {
  width: 95%;
}
.nav-horizontal__child-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 0;
}
.nav-horizontal__child-image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0 20px 0 0;
  width: 12vw;
  height: auto;
}
.nav-horizontal .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-horizontal .profile__image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 20px 0 0;
}
.nav-horizontal .profile__image {
  width: 6vw;
  max-width: 100px;
  height: auto;
}
.nav-horizontal .profile__job {
  font-weight: 700;
  font-size: 1.2rem;
}
.nav-horizontal .profile__name {
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-horizontal .profile__description {
  font-size: 1.2rem;
  font-weight: 500;
}
.nav-horizontal .social-media {
  display: none;
}

.nav-retractable {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  /*&__title:hover &__title-inner {
  	top: 1px;
  	left: 1px;
  	right: 1px;
  	bottom: 1px;
  }*/
}
.nav-retractable__title {
  position: relative;
  z-index: 5;
  right: 0;
  top: 0;
  cursor: pointer;
  width: min(8vw, 100px);
  height: 75px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-retractable__title::before, .nav-retractable__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: 1px solid #E73817;
  width: 58%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-retractable__title::before {
  top: calc(50% - 4px);
}
.nav-retractable__title::after {
  top: calc(50% + 4px);
}
.nav-retractable__title:hover::before {
  top: calc(50% - 6px);
}
.nav-retractable__title:hover::after {
  top: calc(50% + 6px);
}
.nav-retractable--open .nav-retractable__title::before, .nav-retractable--open .nav-retractable__title::after {
  top: 50% !important;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.nav-retractable--open .nav-retractable__title::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.nav-retractable__title-inner {
  position: absolute;
  z-index: -1;
  /*top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  transition: 0.2s ease;
  border: 1px solid $color-main;*/
  overflow: hidden;
  text-indent: -100vw;
}
.nav-retractable__inner {
  visibility: hidden;
  position: fixed;
  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;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
  -webkit-transition: 0.4s ease;
  transition: 0.4s ease;
}
.nav-retractable--open .nav-retractable__inner {
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.nav-retractable__list {
  list-style: none;
  margin: 0;
  width: 83vw;
  max-width: 1000px;
  height: 90vh;
  height: min(90vh, 550px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: auto;
}
.nav-retractable__item {
  margin: 30px 20px;
  width: calc((100% - 120px) / 3);
  height: auto !important;
}
.nav-retractable__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.8rem;
  font-weight: 900;
  color: #E73817;
  margin: 10px 0 20px;
  position: relative;
}
.nav-retractable__item-label::after {
  content: "";
  border-top: 2px solid #E73817;
  -webkit-box-flex: 2;
      -ms-flex: 2 2 auto;
          flex: 2 2 auto;
  margin: 0.4em 0 0 10px;
}
.nav-retractable__child-image {
  display: none;
}
.nav-retractable__child-list {
  list-style: none;
  margin: 0;
}
.nav-retractable__child-item {
  margin: 10px 0;
}
.nav-retractable .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-retractable .profile__image-wrap {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 10px 0 0;
}
.nav-retractable .profile__image {
  width: 40px;
  height: auto;
}
.nav-retractable .profile__job {
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-retractable .profile__name {
  font-weight: 700;
  font-size: 1.3rem;
}
.nav-retractable .profile__description {
  display: none;
}
.nav-retractable .social-media {
  position: absolute;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  inset: auto 30px 30px auto;
}
.nav-retractable .social-media__item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
}
.nav-retractable .social-media__item:not(:last-child) {
  border-bottom: none;
  border-right: 1px solid #E73817;
}

.nav-mypage {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: min(12vw, 180px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 10px 0 10px 10px;
  list-style: none;
  text-align: center;
  position: relative;
  z-index: 2;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.on-scroll .nav-mypage {
  width: min(12vw, 150px);
  margin-top: 15px;
}

.nav-mypage__entry, .nav-mypage__login {
  margin: 0;
}
.nav-mypage__entry-link, .nav-mypage__login-link {
  width: 100%;
  height: 65px;
  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;
  text-indent: 0.3em;
  position: relative;
}
.nav-mypage__entry-link::before, .nav-mypage__login-link::before {
  content: "";
  position: absolute;
  z-index: -2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-mypage__entry-link:hover::before, .nav-mypage__login-link:hover::before {
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.on-scroll .nav-mypage__entry-link, .on-scroll .nav-mypage__login-link {
  height: 50px;
}

.nav-mypage__entry-link {
  color: #FFF !important;
}
.nav-mypage__entry-link::before {
  background: #E73817;
}
.nav-mypage__login-link {
  color: #FFF !important;
}
.nav-mypage__login-link::before {
  background: #00A76A;
}

@media screen and (max-width: 1023px) {
  .header {
    height: 40px !important;
  }
  .site-title {
    z-index: 5;
    width: 90px !important;
    height: 70px !important;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .on-scroll .site-title {
    height: 40px !important;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .on-scroll .site-title__link {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
  .site-title__image {
    width: 70px !important;
    margin: 0 0 2px !important;
  }
  .on-scroll .site-title__image {
    width: 56px !important;
    margin: 0 !important;
  }
  .site-title__text {
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    position: relative;
    padding: 1.4em 0 0;
    white-space: nowrap;
    display: block;
  }
  .on-scroll .site-title__text {
    font-size: 1rem;
    padding: 0 0 0 6.3em;
    text-indent: 0;
  }
  .site-title__coop {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  .on-scroll .site-title__coop {
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .social-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .social-media__item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .social-media__item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #E73817;
  }
  .social-media__link {
    font-size: min(2.8vw, 1.2rem);
  }
  .nav {
    margin: 0 0 0 -1px;
  }
  .nav > .social-media {
    gap: 5px;
    margin-inline: auto 10px;
  }
  .nav > .social-media .social-media__link {
    width: 20px;
    height: 20px;
  }
  .nav > .social-media .yt-icon,
  .nav > .social-media .ig-icon {
    width: 20px;
    height: 20px;
  }
  .nav-horizontal {
    display: none;
  }
  .nav-retractable {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .nav-retractable__title {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 40px;
    height: 40px;
  }
  .nav-retractable__title::before, .nav-retractable__title::after {
    widrh: 58%;
    top: calc(50% - 3px);
  }
  .nav-retractable__title::after {
    top: calc(50% + 3px);
  }
  .nav-retractable__title:hover::before {
    top: calc(50% - 3px);
  }
  .nav-retractable__title:hover::after {
    top: calc(50% + 3px);
  }
  .nav-retractable__title-inner {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: transparent;
  }
  .nav-retractable__inner {
    top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: auto;
    overflow: auto;
    -webkit-transform: translate3d(100%, 0, 0);
            transform: translate3d(100%, 0, 0);
  }
  .nav-retractable--open .nav-retractable__inner {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .nav-retractable__list {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    max-width: none;
    height: auto;
    max-height: none;
    display: block;
    overflow: visible;
    padding: 50px 20px 30px;
  }
  .nav-retractable__item {
    margin: 0 0 20px;
    width: auto;
    min-height: calc(3.6em + 10px);
    position: relative;
  }
  .nav-retractable__item::before, .nav-retractable__item::after {
    content: "";
    position: absolute;
    top: 0.4em;
    right: 0;
    width: 12px;
    border-top: 1px solid #E73817;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  .nav-retractable__item::after {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .nav-retractable__item--open::before {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .nav-retractable__item--open::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .nav-retractable__item-label {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .nav-retractable__item-label::after {
    border-top: 1px solid #000;
    margin-right: 20px;
  }
  .nav-retractable__child-image {
    display: none;
  }
  .nav-retractable__child-list {
    display: none;
    padding-bottom: 15px;
  }
  .nav-retractable__child-item {
    margin: 0;
    padding: 5px 0;
  }
  .nav-retractable .profile__image {
    width: 40px;
    height: auto;
  }
  .nav-retractable .social-media {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    position: relative;
    inset: auto;
    margin-inline: 15px;
    margin-block: auto 15px;
  }
  .nav-retractable .social-media__link {
    letter-spacing: 0.1em;
  }
  .nav-mypage {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: auto !important;
    margin: 0 0 0 auto !important;
    margin: 0 !important;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-mypage__entry-link, .nav-mypage__login-link {
    width: 70px;
    height: 40px !important;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-size: 1rem;
  }
  .nav-mypage__entry-link::before, .nav-mypage__login-link::before {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }
}
@media screen and (max-width: 350px) {
  .nav-mypage__entry-link, .nav-mypage__login-link {
    width: 70px;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
  }
}
/* footer
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.footer {
  position: relative;
  height: 200px;
  margin: auto 50px 50px;
  padding: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00A76A;
}

.pagetop-button {
  position: absolute;
  top: 0;
  left: 100%;
}
.pagetop-button__link {
  display: block;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  position: relative;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 1.1rem;
  color: #E73817;
  background: #FFF;
  padding: 35px 10px 25px;
}
.pagetop-button__link::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  color: #E73817;
  border: 1px solid;
  border-bottom: none;
  border-left: none;
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
          transform: translate(-50%, 0) rotate(-45deg);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  top: 10px;
  left: 50%;
}
.pagetop-button__link:hover {
  padding: 30px 10px 30px;
}
.pagetop-button__link:hover::before {
  top: 5px;
}

.coop-links {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.coop-links__item {
  margin: 0 30px 0 0;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
}
.coop-links__link {
  color: #FFF;
}
.coop-links__link:hover {
  color: #333;
}

.copyright {
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFF;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 1023px) {
  .footer {
    height: auto;
    margin: auto 15px 15px;
    padding: 20px 15px;
    display: block;
  }
  .pagetop-button__link {
    font-size: 1rem;
    padding: 20px 5px 15px !important;
  }
  .pagetop-button__link::before {
    top: 5px !important;
  }
  .coop-links {
    display: block;
  }
  .coop-links__item {
    margin: 0 0 5px;
    font-size: 1.1rem;
    letter-spacing: 0.2em;
  }
  .copyright {
    font-size: 1rem;
    margin: 20px 0 0;
  }
}