@charset "UTF-8";


html {
  box-sizing: border-box;
  font-size: 13px;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

@media screen and (max-width: 374px) {
  html {
    font-size: 3.2vw;
  }
}

@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 2;
  word-break: break-all;
  word-wrap: break-word;
  color: #272727;
  padding-top: 50px;
}

@media screen and (min-width: 1260px) {
  body {
    padding-top: 80px;
  }
}

p {
  margin: 0 0 1.5em;
}

.extraMargin1 {
  margin-bottom: 3.8em;
}

.noMarginBottom {
  margin-bottom: 0;
}

p:last-child {
  margin-bottom: 0;
}

.size18 {
  font-size: 1.125em;
}

@media screen and (min-width: 768px) {
  .extraMargin1 {
    margin-bottom: 4.75em;
  }
}

strong {
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease-out;
}

a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .onlyPC {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  a.callPhone {
    cursor: default;
  }

  a.callPhone:hover {
    opacity: 1;
  }

  .onlySP {
    display: none;
  }
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  width: 100%;
}

/* ========== header用スタイル ========== */

.mainHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 10000;
  background-color: #FFF;
}

.navToggle {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1em;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  outline: none;
  text-align: center;
  width: 50px;
  height: 50px;
  color: #FFF;
  background-color: #0C7C66;
}

@media screen and (min-width: 1260px) {
  .navToggle {
    display: none;
  }

  .mainHeader {
    height: 80px;
  }
}

.navToggle.isActive .navToggleInner,
.navToggle.isActive .navToggleInner::before,
.navToggle.isActive .navToggleInner::after {
  background-color: #FFF;
}

.navToggleBox {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.navToggleInner {
  display: block;
  top: 50%;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.navToggleInner,
.navToggleInner::before,
.navToggleInner::after {
  width: 18px;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.navToggleInner::before,
.navToggleInner::after {
  content: '';
  display: block;
}

.navToggleInner::before {
  top: -8px;
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.navToggleInner::after {
  bottom: -8px;
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.navToggle.isActive .navToggleInner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.navToggle.isActive .navToggleInner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.navToggle.isActive .navToggleInner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.mainHeaderInner {
  background-color: #FFF;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 20px;
}

.mainLogo {
  text-align: center;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.025em;
  font-family: 'Kiwi Maru', sans-serif;
  font-size: 1em;
  font-weight: 500;
}

.mainLogo > a {
  display: flex;
  align-items: center;
}

.mainLogo img {
  width: 2.230769em;
  margin-right: 0.681818em;
}

.siteTtl {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}
.mainLogo small,
.siteTtl_s {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 4.181818em;
  height: 0.590909em;
  margin: 0.5em auto 0;
  background: url(../images/common/logo_txt.svg) no-repeat center center;
  background-size: contain;
  font-size: 1em;
}

@media screen and (min-width: 1260px) {
  .mainHeaderInner {
    padding-left: 40px;
    padding-right: 40px;
  }

  .mainLogo {
    font-size: 1.375em;
  }

  .mainLogo img {
    width: 2.272727em;
  }
}

.mainNavWrap {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50px;
  height: calc(100vh - 50px);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  z-index: -1;
  background-color: #0C7C66;
  padding: 20px 7.692308% 40px;
  transform: translateY(-100%);
  transition: transform 0.2s ease-out;
  color: #FFF;
}

.mainNavWrap.isActive {
  transform: translateY(0);
}

.mainNav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainNav > li {
  border-bottom: 1px solid #FFF;
  line-height: 1.2;
  overflow: hidden;
}

.mainNav > li > a {
  display: flex;
  align-items: center;
  padding: 1em 2.5em 1em 0;
  font-size: 1.230769em;
  font-weight: 700;
  position: relative;
}

.hasChild > a::before,
.hasChild > a::after {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background-color: #FFF;
  position: absolute;
  top: 50%;
  right: 1.25em;
}

.hasChild > a::after {
  transition: transform 0.2s ease-out;
  transform: rotate(90deg);
}

.hasChild > a.opened::after {
  transform: rotate(0deg);
}

.navChild,
.navChild > dt {
  display: none;
}

.navChild,
.navChild > dd {
  margin: 0;
}

.childNav {
  font-size: 14px;
  margin: 1.5em 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.childNav > li {
  width: 50%;
  margin: 0 0 1.75em 0;
  padding-left: 1em;
  letter-spacing: 0;
}

.subNav {
  font-size: 14px;
  margin: 3.5em 0 0;
  padding: 0;
  list-style: none;
}

.subNav > li {
  margin: 0 0 1em;
}

.subNav > li:last-child {
  margin-bottom: 0;
}

.contactNav {
  font-size: 16px;
  margin: 2em 0 0;
  padding: 0;
  list-style: none;
}

.contactNav > li {
  margin: 0 auto 2em;
  text-align: center;
  width: 16.25em;
  height: 3.25em;
}

.contactNav > li:last-child {
  margin-bottom: 0;
}

.contactNav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.contactNav > li:nth-child(1) a {
  color: #0C7C66;
  background-color: #FFF;
  font-weight: 500;
}

.contactNav > li:nth-child(1) i {
  margin-right: 0.5em;
  font-size: 1.125em;
}

.contactNav > li:nth-child(2) a {
  color: #FFF;
  background-color: #272727;
  font-weight: 700;
  font-size: 1.25em;
}

.contactNav > li:nth-child(2) i {
  margin-right: 0.5em;
  font-size: 0.9em;
}

@media screen and (min-width: 768px) {
  .mainNav > li > a {
    font-size: 1.125em;
  }
  .childNav {
    font-size: 16px;
  }
}

@media screen and (min-width: 1260px) {
  .subNav,
  .contactNav {
    display: none;
  }

  .mainNavWrap {
    width: auto;
    position: static;
    left: auto;
    top: auto;
    height: auto;
    overflow-y: visible;
    z-index: 0;
    background-color: transparent;
    padding: 0;
    transform: translateY(0);
    color: inherit;
    margin-left: 2em;
  }

  .mainNav {
    display: flex;
  }
  
  .mainNav > li {
    border-bottom: none;
    overflow: visible;
  }
  
  .mainNav > li > a {
    text-align: center;
    padding: 0 1.4em;
    height: 80px;
    transition: background-color 0.2s ease-out, color 0.2s ease-out;
  }

  .mainNav > li:hover > a {
    background-color: #0C7C66;
    color: #FFF;
  }

  .mainNav > li > a:hover {
    opacity: 1;
  }

  .hasChild > a::before,
  .hasChild > a::after {
    display: none;
  }

  .navChild {
    display: flex;
    position: absolute;
    left: auto;
    right: -40px;
    top: 80px;
    width: 100vw;
    transition: height 0.2s ease-out;
    height: 0;
    overflow: hidden;
  }

  .mainNav > li:hover .navChild {
    height: 190px;
  }

  .navChild > dt {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    background-color: #272727;
    color: #FFF;
    width: 32.8125vw;
    font-size: 1.25em;
    font-weight: 700;
  }

  .navChild > dt > span {
    width: 100%;
    max-width: 300px;
  }

  .navChild > dd {
    color: #FFF;
    display: flex;
    align-items: center;
    height: 100%;
    background-color: #0C7C66;
    padding: 0 2em 0 3.385416vw;
    width: calc(100vw - 32.8125vw);
  }

  .childNav {
    margin-top: 0;
    width: 100%;
  }

  .childNav > li {
    width: auto;
    margin: .8em 4vw .8em 0;
    letter-spacing: 0.025em;
    font-weight: 700;
    position: relative;
  }


  .childNav.multipleLines > li {
    min-width: 10em;
  }

  .childNav > li:first-child {
    display: none;
  }

  .childNavService > li:first-child{
    display: block;
  }

  .childNav > li::before {
    content: '';
    display: block;
    width: 5px;
    height: 8px;
    background: url(../images/common/arrow_nav.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: 0.4em;
  }
}

@media (min-width: 1400px) {
  .childNav > li {
    margin: 1em 4vw 1em 0;
  }
}

/* ========== /header用スタイル ========== */

/* ========== footer用スタイル ========== */

.mainFooter {
  background-color: #272727;
  color: #FFF;
  padding: 60px 0 40px;
  text-align: center;
}

.mainFooter .mainLogo small {
  background-image: url(../images/common/logo_txt_white.svg);
}

.address1 {
  margin: 0 0 50px;
  font-weight: 500;
}

.address1 dd {
  margin: 0;
}

.sns1 {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns1 > li {
  font-size: 16px;
  margin: 0 10px;
  line-height: 1;
}

.snsIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #FFF;
  color: #272727;
}

.copyright {
  font-size: 10px;
}

.contactNavFixed {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  font-size: 16px;
  height: 3.75em;
}

@media screen and (max-width: 390px) {
  .contactNavFixed {
    font-size: 4.102564vw;
  }
}

.contactNavFixed > li {
  width: 50%;
  text-align: center;
}

.contactNavFixed a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.contactNavFixed > li:nth-child(1) a {
  color: #FFF;
  background-color: #0C7C66;
  font-weight: 500;
}

.contactNavFixed > li:nth-child(1) i {
  margin-right: 0.5em;
  font-size: 1.125em;
}

.contactNavFixed > li:nth-child(1) i:last-child {
  display: none;
}

.contactNavFixed > li:nth-child(2) a {
  color: #FFF;
  background-color: #272727;
  font-weight: 700;
  font-size: 1.25em;
}

.contactNavFixed > li:nth-child(2) i {
  margin-right: 0.5em;
  font-size: 0.9em;
}

.footerNavWrap {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footerNav {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.125em;
  font-weight: 500;
}

.footerNav > li {
  margin: 1em 0 0 0;
}

.footerNav > li:first-child {
  margin-top: 0;
}

.footerNavChild {
  margin: 0 0 0 2em;
  padding: 0;
  list-style: none;
}

.footerNavChild > li {
  margin: 1em 0 0;
}

@media screen and (max-width: 767px) {
  .mainFooter {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 768px) {
  .contactNavFixed {
    bottom: calc(50% - 5em);
    width: 3em;
    font-size: 1.25em;
    height: 10em;
  }
  .contactNavFixed.websystem {
    height: 12.5em;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }

  .contactNavFixed > li {
    width: 100%;
    line-height: 1.1;
  }
  .contactNavFixed.websystem > li {
    width: 100%;
    height: 100%;
    line-height: 1.1;
  }

  .contactNavFixed a {
    padding: 0 0.5em;
    flex-direction: column;
  }
  .contactNavFixed.websystem a {
    padding: 0 0.5em;
    flex-direction: row;
  }

  .contactNavFixed > li:nth-child(2) {
    display: none;
  }
  
  .contactNavFixed > li:nth-child(1) a {
    border: 1px solid #FFF;
  }
  
  .contactNavFixed > li:nth-child(1) i:first-child {
    display: none;
  }

  .contactNavFixed > li:nth-child(1) i:last-child {
    margin-right: 0;
    margin-top: 0.5em;
    display: inline-block;
    font-size: 0.9em;
  }
}

@media screen and (max-width: 959px) {
  .mainFooter .mainLogo {
    margin: 0 auto 2em;
    font-size: 1.461538em;
    display: inline-flex;
  }

  .footerNavWrap {
    display: none;
  }
}

@media screen and (min-width: 960px) {
  .mainFooter {
    text-align: left;
  }

  .footerInner {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    border-top: 1px solid #6C6C6C;
    margin: 3.75em 0 0;
    padding-top: 3.75em;
  }

  .address1 {
    margin-left: 5vw;
    margin-bottom: 0;
  }

  .sns1 {
    margin-left: auto;
    align-self: center;
    margin-bottom: 0;
  }

  .copyright {
    text-align: right;
    font-size: 0.75em;
  }
}

@media screen and (min-width: 1250px) {
  .address1 {
    margin-left: 7vw;
  }
}

@media screen and (min-width: 1720px) {
  .address1 {
    margin-left: 120px;
  }
}

@media screen and (max-width: 1350px) {
  .mainNav > li > a{
    font-size: 1em;
  }
}

/* ========== /footer用スタイル ========== */

/* ========== 共通スタイル ========== */

.innerWrap1 {
  margin: 0 auto;
  width: 100%;
  max-width: 1720px;
  padding: 0 5.128205vw;
}

.innerWrap2 {
  margin: 0 auto;
  width: 100%;
  max-width: 1550px;
  padding: 0 5.128205vw;
}

@media screen and (min-width: 768px) {
  .innerWrap1,
  .innerWrap2 {
    padding: 0 5vw;
  }
}

@media screen and (min-width: 1550px) {
  .innerWrap2 {
    padding: 0 145px;
  }
}

@media screen and (min-width: 1720px) {
  .innerWrap1 {
    /* padding: 0 86px; */
    padding: 0 80px;
  }
}

/* ========== /共通スタイル ========== */

.sectionArea {
  margin: 6.25em 0 0;
}

.sectionArea:last-child:not(.noMarginBottom) {
  margin-bottom: 6.25em;
}

.sitePag + .sectionArea {
  margin-top: 3em;
}

.noMarginTop {
  margin-top: 0;
}

.noMarginBottom {
  margin-bottom: 0;
}

.bg1 {
  position: relative;
  padding-right: 5.128205vw;
  padding-bottom: 4.5em;
}

.bg1::before {
  content: '';
  display: block;
  width: 94.871795vw;
  height: 70%;
  background-color: #F0F0F0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.bg2 {
  background-color: #F0F0F0;
  padding: 4.5em 0;
}

.bg3 {
  background-color: #0C7C66;
  padding: 4.5em 0;
}

.bg3 p,
.bg4 p {
  color: #FFF;
}

.bg4 {
  background: #0C7C66 url(../images/top/message_bg.webp) no-repeat center center;
  background-size: cover;
  padding: 4.5em 0;
}

.bg4 em {
  font-style: normal;
  color: #FFD95C;
}

.bg5 {
  background-color: #FFF;
  border-radius: 10px;
  padding: 3em 5.128205vw;
}

.bg6 {
  background-color: #E6F2EF;
  padding: 3.75em 2em;
}

.bg7 {
  background-color: #E6F2EF;
  padding: 4em 0;
}

.bg8 {
  background-color: #0C7C66;
  padding: 0 0 4.5em;
}

.bg10 {
  background-color: #0C7C66;
  padding: 2em;
  border-radius: 10px;
  color: #FFF;
}

p + .bg2,
p + .bg8 {
  margin-top: 4em;
}

.contactSibling {
  padding-bottom: 30em;
}

.colorWhite {
  color: #FFF;
}

.withEmphasis {
  color: #FFD95C;
}

.mainTitle1 {
  font-size: 1.384615em;
  font-weight: 700;
  line-height: 1.64;
  margin: 0 0 1.5em;
}

.centeredTitle {
  text-align: center;
}

.mainTitle1 p {
  font-size: 1.555556em;
  margin: 0;
  line-height: 1.2;
}

.mainTitle1 p[lang="en"] {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 2em;
}

.mainTitle1 .titleText {
  font-weight: inherit;
  font-size: inherit;
  margin: 0.5em 0 0;
  color: #0C7C66;
}

.mainTitle1 p[lang="en"] + strong {
  margin-top: 0;
}

.bg3 .mainTitle1,
.bg3 .mainTitle1 .titleText,
.bg4 .mainTitle1,
.bg4 .mainTitle1 .titleText {
  color: #FFF;
}

.bg5 .mainTitle1 .titleText {
  color: #0C7C66;
}

.bg5 .mainTitle1 p[lang="en"] {
  color: #272727;
}

.twoColumn1 {
  margin: 0 0 3.846154em;
}

.twoColumn1:last-child {
  margin-bottom: 0;
}

.mainTitle3 {
  font-size: 1.384615em;
  font-weight: 700;
  line-height: 1.64;
  margin: 0 0 1.5em;
}

.mainTitle3 .titleText {
  font-size: 1.555556em;
  font-weight: inherit;
  margin: 0;
}

.mainTitle3 p {
  color: #0C7C66;
  margin: 0.5em 0 0;
}

@media screen and (min-width: 768px) {
  .sitePag + .sectionArea {
    margin-top: 5em;
  }

  .bg1::before {
    width: 94.791667vw;
    height: 67%;
  }

  .bg2,
  .bg3,
  .bg4 {
    padding: 8em 0;
  }

  .bg5 {
    padding: 5em 6.349206%;
  }

  .bg6 {
    padding-left: 3.75em;
    padding-right: 3.75em;
  }

  .bg7 {
    padding-top: 6.25em;
    padding-bottom: 6.25em;
  }

  .bg8 {
    padding-bottom: 6.25em;
  }

  p + .bg2,
  p + .bg8 {
    margin-top: 6.25em;
  }

  .bg9 {
    background: linear-gradient(to bottom, #FFF 0%, #FFF 50%, #E6F2EF 50%, #E6F2EF 100%);
    padding-left: 2em;
    padding-right: 2em;
  }

  .bg10 {
    padding: 6.25em 4.275em;
  }

  .contactSibling {
    padding-bottom: 30em;
  }

  .mainTitle1,
  .mainTitle3 {
    font-size: 1.25em;
  }

  .mainTitle1 p,
  .mainTitle3 .titleText {
    font-size: 1.8em;
  }

  .mainTitle1 p[lang="en"] {
    font-size: 3em;
  }
}

@media screen and (min-width: 960px) {
  .twoColumn1 {
    margin-bottom: 6.25em;
    display: flex;
    align-items: flex-start;
  }

  .twoColumn1 .mainTitle1 {
    width: 22.5rem;
    padding-right: 1rem;
  }

  .twoColumn1 .secondColumn {
    width: calc(100% - 22.5rem);
    padding-top: 0.5em;
  }
}

.textBlock1 {
  margin: 0 0 2em;
}

.textBlock1 p {
  width: 100%;
}

.textBlock1Text {
  margin: 0 0 1em;
}

.textBlock1Image {
  line-height: 1;
  margin: 0;
  padding: 0;
  width: 80%;
  text-align: center;
}

.leftImage .textBlock1Image {
  margin-right: auto;
}

.rightImage .textBlock1Image {
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .textBlock1 {
    display: flex;
    align-items: center;
  }

  .textBlock1Text,
  .textBlock1Image {
    width: 50%;
  }

  .textBlock1Image img {
    width: 74.603175%;
  }

  .leftImage .textBlock1Image {
    margin-right: 0;
  }

  .leftImage .textBlock1Text {
    order: 1;
  }
  
  .rightImage .textBlock1Image {
    margin-left: 0;
  }
}

.linkButton1 {
  font-size: 1.076923em;
  font-weight: 500;
}

.linkButton1 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4em;
  border-radius: 2em;
  color: #FFF;
  background-color: #272727;
  width: 100%;
  box-shadow: 0 0.555556em 0.555556em rgba(64, 64, 64, 0.16);
  overflow: hidden;
}

.linkButton1.centeredButton {
  text-align: center;
}

.linkButton1 span {
  border-radius: 2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: 0.3s linear;
  -webkit-mask-image: -webkit-radial-gradient(white, black); /* Safari border-radius overflow bug */
}

.linkButton1.centeredButton a {
  width: auto;
}

.linkButton1.centeredButton a span {
  padding: 0 1.5em;
}

.linkButton1 span::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  background: #FFF;
  transform: translateX(-100%);
  border-radius: 2em;
  z-index: -1;
}

.linkButton1 a:hover {
  opacity: 1;
}

.linkButton1 a:hover span {
  animation: hover .6s forwards;
  opacity: 1;
}

.linkButton1 a:hover span::before {
  animation: hover-in .3s forwards alternate, hover-out .3s .3s forwards alternate;
}

.linkButton1 span::after {
  content: '';
  display: block;
  width: 1.333333em;
  height: 0.5em;
  background: url(../images/common/arrow_white.svg) no-repeat center center;
  background-size: contain;
  margin: 0 0 0 1em;
}

.linkButton1 a:hover span::after {
  animation: hover-arr .6s forwards;
}

@keyframes hover {
  0%, 100% {
    color: #FFF;
  }
  50% {
    color: #272727;
  }
}

@keyframes hover-arr {
  0%, 100% {
    background-image: url(../images/common/arrow_white.svg);
  }
  50% {
    background-image: url(../images/common/arrow_black.svg);
  }
}

@keyframes hover-in {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes hover-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@media screen and (min-width: 768px) {
  .linkButton1 {
    font-size: 1.125em;
  }

  .linkButton1 a {
    height: 3.777778em;
    width: auto;
  }

  .linkButton1 a span {
    padding: 0 1.646em;
  }
}

.centeredText {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .centeredTextPC {
    text-align: center;
  }
}

.newsList1 {
  margin: 0 0 3.8em;
  padding: 0 5.128205vw;
  list-style: none;
}

.newsList1 + .linkButton1 {
  text-align: center;
}

.newsList1 + .linkButton1 a {
  width: auto;
}

.newsList1 + .linkButton1 a span {
  padding: 0 1.5em;
}

.newsList1 > li {
  margin: 0;
  padding: 1.75em 0;
  border-bottom: 1px solid #272727;
}

.newsList1 > li:nth-child(1) {
  padding-top: 0;
}

.newsDate2 {
  display: block;
}

.newsText2 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.strong1 {
  font-size: 1.076923em;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5em;
}

.alignedLeft {
  text-align: left;
}

@media screen and (min-width: 768px) {
  .newsList1 {
    padding: 0;
  }

  .newsList1 > li {
    display: flex;
    align-items: flex-start;
    font-size: 1.125em;
  }

  .newsDate2 {
    width: 6em;
  }

  .newsText2 {
    width: calc(100% - 9em);
    margin-left: 3em;
  }

  .newsList1 + .linkButton1 {
    text-align: right;
  }

  .strong1 {
    font-size: 1.25em;
    font-weight: 700;
  }

  .marginLeft1 {
    margin-left: 3em;
  }
}

.textList1 {
  margin: 0 0 1.5em;
  padding: 0 0 0 1.5em;
  list-style: none;
}

.textList1:last-child {
  margin-bottom: 0;
}

.textList1 > li {
  text-indent: -1em;
  padding-left: 1em;
}

.textList1.noMarginBottom {
  margin-bottom: 0;
}

.contactArea1 {
  padding: 6.153846em 0 1em;
  background: linear-gradient(to bottom, #0C7C66 0%, #0C7C66 66%, #272727 66%, #272727 100%);
  margin-top: 7.692308em;
}

.contactCard1 {
  margin: 0 auto;
  width: 94.285714%;
  background-color: #FFF;
  box-shadow: 0 0.76923em 0.76923em rgba(64, 64, 64, 0.16);
  border-radius: 10px;
  padding: 3em 5.128205vw;
  position: relative;
}

.contactCard1 .secondColumn p {
  text-align: center;
}

.buttonList1 {
  margin: 3em 0 0;
  padding: 0;
  list-style: none;
}

.buttonList1 > li {
  font-size: 1.230769em;
  margin-bottom: 2em;
  padding-bottom: 0.555556em;
}

.buttonList1 > li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .mainTitle1 {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .contactArea1 {
    margin-top: 12.5em;
  }

  .contactCard1 {
    width: 100%;
  }

  .buttonList1 > li {
    font-size: 1.125em;
    width: 16.944444em;
  }
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .buttonList1 {
    display: flex;
  }

  .buttonList1 > li {
    margin-bottom: 0;
  }

  .buttonList1 > li:last-child {
    margin-left: 3.333333em;
  }

  .buttonList1 a {
    width: 100%;
  }
}

@media screen and (min-width: 960px) {
  .contactArea1 .secondColumn {
    padding-top: 5.5em;
  }

  .contactCard1 .secondColumn p {
    text-align: left;
  }
}

@media screen and (min-width: 960px) and (max-width: 1139px) {
  .buttonList1 > li {
    margin-left: auto;
    margin-right: auto;
  }

  .buttonList1 a {
    width: 100%;
  }
}

@media screen and (min-width: 1140px) {
  .buttonList1 {
    display: flex;
  }

  .buttonList1 > li {
    margin-bottom: 0;
  }

  .buttonList1 > li:last-child {
    margin-left: 3.333333em;
  }

  .buttonList1 a {
    width: 100%;
  }
}

.subPageTitleWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #0C7C66;
  width: 100%;
  min-height: 13.461538em;
  margin: 0 0 1.8em;
  padding: 2em 0;
}

.subPageTitleWrap.hasBackground {
  min-height: 27.692308em;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mainTitle2 {
  font-size: 1.384615em;
  font-weight: 700;
  color: #FFF;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.mainTitle2 p {
  font-size: 2.222222em;
  margin: 0;
}

.mainTitle2 p[lang="en"] {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}

.mainTitle2 .titleText {
  font-size: inherit;
  font-weight: inherit;
  margin: 0.5em 0 0;
}

.subPageTitleWrap > p {
  font-family: 'Kiwi Maru', sans-serif;
  font-weight: 500;
  width: 89.74359%;
  margin: 3em auto 0;
  text-align: center;
  color: #FFF;
}

.subPageTitleWrap > p ~ p {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .subPageTitleWrap {
    min-height: 23.75em;
  }

  .subPageTitleWrap.hasBackground {
    min-height: 42.125em;
  }

  .mainTitle2 {
    font-size: 1.25em;
  }

  .mainTitle2 p {
    font-size: 3.5em;
  }

  .subPageTitleWrap > p {
    font-size: 1.125em;
    font-weight: 500;
    margin-top: 5em;
  }
}

.sitePag {
  list-style: none;
}

.sitePag > li {
  display: inline;
  font-size: 0.923077em;
  line-height: 1.5;
}

.sitePag > li ~ li::before {
  content: '>';
  display: inline-block;
  margin: 0 0.5em;
}

.sitePag i {
  color: #B7B7B7;
  font-size: 1.166667em;
}

.subTitle1 {
  font-size: 1.692308em;
  font-weight: 700;
  line-height: 1.7;
  margin: 0 0 1.5em;
}

.subTitle1 .newsDate2 {
  font-size: 0.6em;
  display: inline-block;
  line-height: 1.5;
}

.subTitle2 {
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.7;
  border-bottom: 1px solid;
  padding-bottom: 1em;
  margin: 3em 0 1.5em;
}

.subTitle3 {
  text-align: center;
  font-size: 1.538462em;
  font-weight: 700;
  margin: 0 0 1.5em;
}

.color1 {
  color: #0C7C66;
}

.contentInner1 {
  padding: 0 5.128205vw;
  margin: 0 0 4em;
}

.contentInner1:last-child {
  margin-bottom: 0;
}

.contentInner1 p {
  margin-bottom: 2em;
}

.contentInner1 p:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .sitePag {
    text-align: right;
  }

  .sitePag > li {
    font-size: 1em;
  }

  .sitePag i {
    font-size: 1.125em;
  }

  .subTitle1 {
    font-size: 1.875em;
    margin-bottom: 2em;
  }

  .contentInner1 {
    padding: 0 0 0 6.451613vw;
    margin-bottom: 8.125em;
  }

  .subTitle3 {
    font-size: 1.875em;
  }
}

@media screen and (min-width: 1550px) {
  .contentInner1 {
    padding-left: 6.25em;
  }
}

.dataTable1 {
  margin: 0;
}

.dataTable1 > dt {
  margin: 0;
  padding: 1.5em 1.5em 0.5em 1.5em;
}

.dataTable1 > dd {
  margin: 0;
  padding: 0.5em 1.5em 1.5em 2.5em;
}

.dataTable1 > dt:nth-of-type(odd),
.dataTable1 > dd:nth-of-type(odd) {
  background-color: #F0F0F0;
}

.dataTable1 > dd:last-child:not(:nth-of-type(odd)) {
  padding-bottom: 0;
}

.dataTable2 {
  margin: 0;
}

.dataTable2 > dd {
  margin: 0 0 1em;
}

.dataTable2 > dd:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .dataTable1 {
    font-size: 1.125em;
  }
}

@media screen and (min-width: 960px) {
  .dataTable1 {
    display: flex;
    flex-wrap: wrap;
  }

  .dataTable1 > dt {
    width: 15em;
    padding: 2em 1em 2em 2em;
  }

  .dataTable1 > dd {
    width: calc(100% - 15em);
    padding: 2em 2em 2em 0;
  }
}

.list1 {
  margin: 0 0 3em;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.list1:last-child {
  margin-bottom: 0;
}

.list1 > li {
  width: 42.857143%;
  margin: 3em 3.5714285% 0;
}

.list1 > li:nth-child(-n+2) {
  margin-top: 0;
}

.list1 figure {
  margin: 0 0 1em;
  line-height: 1;
  overflow: hidden;
  background-color: #272727;
}

.list1 figure img {
  display: block;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}

.list1 figure a:hover img,
.list1 figure a.hover img {
  transform: scale(1.1);
  opacity: 0.7;
}

.list1 figure a:hover {
  opacity: 1;
}

.list1 p {
  line-height: 1.7;
  font-weight: 500;
}

.webLink1 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #272727;
  color: #FFF;
  font-size: 0.846154em;
  width: 6.909091em;
  height: 1.636364em;
  line-height: 1;
  margin: 0.5em 0 0 auto;
  border-radius: 0.818182em;
}

.webLink1 i {
  font-size: 0.727273em;
  margin-left: 0.5em;
}

.webLink2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #272727;
  color: #FFF;
  font-size: 0.875em;
  width: 8.785714em;
  height: 1.714286em;
  line-height: 1;
  margin: 0.5em 0 0;
  border-radius: 0.857143em;
}

@media screen and (min-width: 768px) {
  .list1 > li {
    width: 30.15873%;
    margin: 6.25em 0 0 4.761905%;
  }

  .list1 > li:nth-child(3) {
    margin-top: 0;
  }

  .list1 > li:nth-child(3n+1) {
    margin-left: 0;
  }

  .list1 p {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .list1 p span {
    width: 100%;
  }

  .webLink1 {
    font-size: 0.75em;
    margin: 0;
  }
}

.pagination1 {
  margin: 0;
  padding: 0 5.128205vw;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pagination1 > li {
  font-size: 1.25em;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin: 0;
  width: 2.222222em;
  height: 2.333333em;
}

@media screen and (max-width: 767px) {
  .pagination1 > .numLink {
    display: none;
  }
  .pagination1 > .nextLink {
    margin-left: auto;
  }

}

.pagination1 > li > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #F0F0F0;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
  border-radius: 4px;
}

.pagination1 a:hover,
.pagination1 .current {
  color: #FFF;
  background-color: #0C7C66;
  opacity: 1;
}

.pagination1 .pagPrev,
.pagination1 .pagNext {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 0.444444em auto;
}

.pagination1 .pagPrev {
  background-image: url(../images/common/arrow_prev_black.svg);
}

.pagination1 .pagNext {
  background-image: url(../images/common/arrow_next_black.svg);
}

.pagination1 .pagPrev:hover {
  background-image: url(../images/common/arrow_prev_white.svg);
}

.pagination1 .pagNext:hover {
  background-image: url(../images/common/arrow_next_white.svg);
}

@media screen and (min-width: 768px) {
  .pagination1 {
    padding: 0;
    justify-content: center;
  }

  .pagination1 > li {
    margin: 0 0.722222em;
  }
}

.indented1 {
  padding-left: 1.5em;
  display: inline-block;
}

.dlBlock1 {
  margin: 3em 0 0;
  background-color: #FFF;
  border-radius: 10px;
  padding: 2em;
}

.dlBlock1:first-child {
  margin-top: 0;
}

.dlBlock1 > dt {
  color: #0C7C66;
  font-size: 1.538462em;
  font-weight: 700;
  margin: 0 0 0.5em;
  line-height: 1.5;
}

.dlBlock1 > dd {
  margin: 0 0 1.5em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #707070;
}

.dlBlock1 > dd:last-child {
  margin-bottom: 0;
}

.dlBlock1.noLastLine > dd:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

@media screen and (min-width: 768px) {
  .dlBlock1 {
    margin-top: 4em;
    padding: 3.75em 8.430233vw;
  }

  .innerWrap2 .dlBlock1 {
    padding-left: 4.516129vw;
    padding-right: 4.516129vw;
  }

  .dlBlock1 > dt {
    font-size: 1.5em;
    line-height: 2;
  }
}

@media screen and (min-width: 1550px) {
  .innerWrap2 .dlBlock1 {
    padding-left: 4.375em;
    padding-right: 4.375em;
  }
}

@media screen and (min-width: 1720px) {
  .dlBlock1 {
    padding-left: 9.0625em;
    padding-right: 9.0625em;
  }

  .innerWrap2 .dlBlock1 {
    padding-left: 4.375em;
    padding-right: 4.375em;
  }
}

.flowList {
  margin: 0 0 6.5em;
  padding: 0;
  list-style: none;
  counter-reset: number 0;
}

.flowList:last-child {
  margin-bottom: 0;
}

.flowList > li {
  margin: 0 0 4.5em;
}

.flowList > li:last-child {
  margin-bottom: 0;
}

.flowWrap1 {
  margin: 0 0 1.5em; 
  position: relative;
}

.flowWrap1:last-child {
  margin-bottom: 0;
}

.flowWrap1::before {
  display: block;
  line-height: 1;
  font-family: 'Jost', sans-serif;
  font-size: 5.897436vw;
  font-weight: 700;
  color: #0C7C66;
  position: absolute;
  top: 6vw;
  left: 0.5vw;
  text-align: center;
  width: 2.5em;
}

.flowList > li .flowWrap1::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
}

.flowTitle {
  font-size: 1.076923em;
  margin: 0 0 1em;
  line-height: 1.5;
}

.flowList .linkButton1 a {
  width: auto;
}

.flowList .linkButton1 a span {
  padding: 0 1.646em;
}

@media screen and (max-width: 767px) {
  .flowTitle {
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 48.717949vw auto;
    padding: 3.5em 0 0 53vw;
    min-height: 48.717949vw;
  }

  .flowList .linkButton1 {
    text-align: center;
  }
}

@media screen and (min-width: 390px) and (max-width: 767px) {
  .flowWrap1::before {
    font-size: 1.75em;
    top: 1.1em;
    left: 0.15em;
  }

  .flowTitle {
    background-size: 13.571429em auto;
    min-height: 13.571429em;
    padding-left: 14.5em;
  }
}

.flowTitle p {
  font-family: 'Jost', sans-serif;
  font-size: 1.428571em;
  font-weight: 700;
  color: #0C7C66;
  margin-bottom: 0;
}

.flowTitle p[lang="en"] {
  overflow-wrap: break-word;
}

.flowTitle .titleText {
  font-size: inherit;
  font-weight: 500;
  margin: 0.25em 0 0;
}

@media screen and (min-width: 768px) {
  .flowList {
    padding-left: 6.451613vw;
    margin-bottom: 8.75em;
  }

  .flowList > li {
    margin-bottom: 6.5em;
  }

  .flowWrap1 {
    margin-bottom: 3.75em;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 21.290323vw auto;
    min-height: 21.290323vw;
    padding: 1em 0 0 27.096774vw;
  }

  .flowWrap1::before {
    font-size: 2.580645vw;
    top: 2.75vw;
    left: 0.25vw;
  }

  .flowTitle {
    font-size: 1.125em;
    margin-bottom: 1.75em;
  }
}

@media screen and (min-width: 1550px) {
  .flowList {
    padding-left: 6.25em;
    border-left: 2px solid #0C7C66;
  }

  .flowWrap1 {
    background-size: 20.625em;
    min-height: 20.625em;
    padding-left: 26.25em;
  }

  .flowWrap1::before {
    font-size: 2.5em;
    top: 1em;
    left: 0.1em;
  }

  .flowTitle p {
    font-size: 1.666667em;
  }
}

.flowWrap2 {
  background-color: #F0F0F0;
  border-radius: 10px;
  padding: 2em;
  margin: 3em 0;
}

.flowWrap2:last-child {
  margin-bottom: 0;
}

.flowSubtitle1 {
  font-size: 1em;
  font-weight: 500;
  padding: 0 0 0 1em;
  position: relative;
  margin: 2em 0 0;
}

.flowSubtitle1:first-child {
  margin-top: 0;
}

.flowSubtitle1::before {
  content: '';
  display: block;
  width: 0.3125em;
  height: 1em;
  background-color: #0C7C66;
  position: absolute;
  left: 0;
  top: 0.5em;
}

.flowWrap2 p {
  padding-left: 1em;
}

.flowWrap2 .noIndent {
  padding-left: 0;
  margin-top: 2.5em;
}

@media screen and (min-width: 768px) {
  .flowWrap2 {
    padding: 3em 3.125em;
  }
}

.flowList .buttonList1 {
  margin-bottom: 3em;
}

.flowList .buttonList1 > li {
  font-size: 1em;
  margin-left: auto;
  margin-right: auto;
  max-width: 20em;
}

@media screen and (min-width: 768px) and (max-width: 959px) {
  .flowList .buttonList1 {
    display: block;
  }

  .flowList .buttonList1 > li {
    width: 100%;
    margin-bottom: 2em;
  }
}

@media screen and (min-width: 960px) {
  .flowList .buttonList1 {
    display: flex;
  }

  .flowList .buttonList1 > li {
    margin: 0 1em 0 0;
    width: auto;
    max-width: none;
  }

  .flowList .buttonList1 > li:last-child {
    margin-right: 0;
  }
}

@media screen and (min-width: 1260px) {
  .flowList .buttonList1 > li {
    margin-right: 3.75em;
  }
}

.subTitle4 {
  color: #FFF;
  background-color: #0C7C66;
  text-align: center;
  font-size: 1.25em;
  font-weight: 500;
  padding: 0.75em 1em;
  margin: 0 0 2em;
  line-height: 1.5;
}

.subTitle5 {
  text-align: center;
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 2.5em;
}

.subTitle6 {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 2em;
}

.subTitle6 .titleText {
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 0.5em;
}

.subTitle6 p {
  color: #0C7C66;
  font-weight: 500;
  font-size: 0.6em;
}

.subTitle6 p[lang="en"] {
  font-family: 'Jost', sans-serif;
}

.subTitle7 {
  text-align: center;
  font-size: 2em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.5em;
}

.subTitle8 {
  color: #0C7C66;
  font-size: 1.692308em;
  font-weight: 700;
  line-height: 1.5;
  margin: 3em 0 1em;
}

.subTitle8:first-child {
  margin-top: 0;
}

.subTitle9 {
  font-size: 1.692308em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1em;
}

.subTitle10 {
  font-size: 1.384615em;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 1.25em;
}

.subTitle11 {
  font-size: 1.230769em;
  font-weight: 500;
  line-height: 1.625;
  margin: 0 0 1em;
}

.subTitle11 p {
  color: #0C7C66;
  font-weight: 700;
  font-size: 1.375em;
  margin-bottom: 0;
}

.subTitle11 p[lang="en"] {
  font-family: 'Jost', sans-serif;
}

.subTitle11 .titleText {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

.hasBackground2 {
  padding: 4.5em 5.128205vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
  margin: 0 auto 4.5em;
}

.hasBackground2:last-child {
  margin-bottom: 0;
}

.bg8 > p {
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .spFullWidth {
    margin-left: -5.128205vw;
    margin-right: -5.128205vw;
  }
}

.spFullWidth > p {
  padding-left: 5.128205vw;
  padding-right: 5.128205vw;
}

.spFullWidth2 {
  margin-left: -5.128205vw;
  margin-right: -5.128205vw;
}

@media screen and (min-width: 768px) {
  .subTitle4 {
    margin-bottom: 3em;
    padding: 1em;
  }

  .subTitle5 {
    font-size: 1.375em;
  }

  .subTitle6 {
    text-align: center;
    font-size: 1.875em;
  }

  .subTitle7 {
    font-size: 1.625em;
    margin-bottom: 2em;
  }

  .subTitle8 {
    font-size: 1.5em;
  }

  .subTitle9 {
    font-size: 1.75em;
  }

  .subTitle10 {
    font-size: 1.375em;
    margin-bottom: 1.818182em;
  }

  .subTitle11 {
    font-size: 1.125em;
    margin-bottom: 1.5em;
  }
  
  .subTitle11 p {
    font-size: 1.666667em;
  }

  .hasBackground2 {
    padding: 6.25em 5vw;
    margin-bottom: 6.25em;
  }

  .spFullWidth > p {
    padding-left: 5.128205%;
    padding-right: 5.128205%;
  }
  
  .spFullWidth2 {
    margin-left: -5vw;
    margin-right: -5vw;
  }
}

@media screen and (min-width: 1720px) {
  .hasBackground2 {
    padding-left: 86px;
    padding-right: 86px;
  }

  .spFullWidth2 {
    margin-left: -86px;
    margin-right: -86px;
  }
}

.textLink {
  color: #0C7C66;
}

.list3 {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  max-width: 1153px;
}

.list3 > li {
  font-size: 1.230769em;
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0C7C66;
  border: 1px solid #0C7C66;
  border-radius: 10px;
  background-color: #FFF;
  min-height: 3.75em;
  width: 31.428571%;
  margin: 1.25em 0 0 2.8571435%;
}

.list3 > li:nth-child(-n+3) {
  margin-top: 0;
}

.list3 > li:nth-child(3n+1) {
  margin-left: 0;
}

@media screen and (min-width: 768px) {
  .list3 > li {
    font-size: 1.5em;
    margin-top: 1.666667em;
  }
}

.colorWhite {
  color: #FFF;
}

.withEmphasis {
  color: #FFD95C;
}

.marginTop1 {
  margin-top: 4em;
}

.marginBotom1 {
  margin-bottom: 2em;
}

@media screen and (min-width: 768px) {
  .marginTop1 {
    margin-top: 6.25em;
  }
}
