@charset "UTF-8";
/* polygon( [左上], [右上], [右下], [左下] ) の座標を指定 */
.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%;
}
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

html {
  height: -webkit-fill-available;
  color: #1a1a1a;
  overflow-y: scroll !important;
  background-color: #fff;
}
html.noscroll {
  overflow: hidden !important;
}

body {
  margin: 0;
  overflow: visible;
  padding: 0;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 16px;
  color: #1a1a1a;
  line-height: 1.8;
  font-weight: 400;
  font-style: normal;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

* {
  box-sizing: border-box;
}

a img {
  transition: 0.3s;
}
a img:hover {
  transform: translateY(-6px);
}

_::-webkit-full-page-media,
_:future,
:root * {
  -webkit-font-smoothing: antialiased;
}

.youtubewrap {
  width: 100%;
  margin: auto;
}

.axis {
  font-size: 80%;
}
.axis::first-letter {
  font-size: 125%;
}

.pagetop {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}
.pagetop a {
  display: block;
  background-color: #ccc;
  border-radius: 50px;
  text-align: center;
  font-family: "fontello";
  color: #fff;
  text-decoration: none;
  width: 60px;
  height: 60px;
  font-size: 1.5em;
  line-height: 60px;
  opacity: 0.8;
}

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  -webkit-transform: translate(0, 40px);
  transition: 0.8s;
}

.fade-anime {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

header {
  width: 100%;
  height: auto;
  padding: 1em 0 1em 2em;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  transform: translateY(-100%);
  opacity: 0;
}
header.is-fixed {
  transform: translateY(0);
  opacity: 1;
}
header.is-hidden {
  transform: translateY(-100%);
}
header .logo {
  width: 160px;
  height: auto;
}
@media (max-width: 1080px) {
  header {
    width: 100%;
    height: 80px;
    padding: min(20px, 3vw);
  }
  header .logo {
    width: 100px;
  }
  header button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    background-image: url(../img/header/nav-button-open.png);
    background-position: center;
    background-size: 80%;
    background-repeat: no-repeat;
    border-radius: 50%;
    transition: 0.3s;
  }
  header.actives {
    position: fixed;
  }
  header.actives button {
    background-image: url(../img/header/nav-button-close.png);
    z-index: 1004;
    position: relative;
  }
}

nav#global {
  margin-left: auto;
}
nav#global > ul {
  margin: auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
nav#global > ul > li a {
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
  line-height: 1;
  color: #2a3685;
  text-decoration: none;
  font-weight: bold;
  display: block;
}
@media (min-width: 1081px) {
  nav#global ul > li {
    margin-left: 1.5em;
  }
  nav#global ul > li a {
    padding: 0.5em 0;
    text-align: center;
    position: relative;
  }
  nav#global ul > li a:not(:last-of-type)::before {
    background: rgba(0, 0, 0, 0);
    bottom: 1em;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
  }
  nav#global ul > li:not(:last-of-type) a::after {
    background: #fabe00;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 0;
    position: absolute;
    transition: all 0.2s ease-in-out;
    width: 0;
    z-index: 0;
  }
  nav#global ul > li:not(:last-of-type) a:hover::after {
    width: 100%;
  }
  nav#global ul > li#recruit-list {
    margin-left: 1em;
  }
  nav#global ul > li#recruit-list a {
    position: relative;
    padding: 12px 24px 12px 40px;
    background-color: #009ce5;
    clip-path: polygon(0.65em 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
    color: #fff;
    transition: 0.2s;
  }
  nav#global ul > li#recruit-list a::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fabe00;
    clip-path: polygon(0.65em 0%, 100% 0%, 100% 100%, 0% 100%);
    transition: all 0.2s ease-in-out;
    z-index: -1;
  }
  nav#global ul > li#recruit-list a:hover {
    color: #fff;
  }
  nav#global ul > li#recruit-list a:hover::after {
    width: 100%;
  }
  nav#global ul > li#recruit-list.is-active a {
    color: #fff;
  }
  nav#global ul > li#recruit-list.is-active a::after {
    width: 100%;
  }
}
@media (max-width: 1080px) {
  nav#global {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    background-clip: content-box;
    z-index: 1000;
    padding-top: 80px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
  }
  nav#global ul {
    display: block;
    padding: 0;
    margin: 0;
  }
  nav#global ul li {
    margin: 0;
    width: 100%;
    background-color: #fff;
    padding: 1em 1.25em;
    background-image: url(../img/header/sp-nav-arrow.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: height 100%;
    border-bottom: 2px solid #f4f5fa;
    transition: opacity 0.3s, visibility 0.3s;
  }
  nav#global ul li.sp {
    display: block !important;
  }
  nav#global.actives {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .is-resizing nav#global {
    transition: none !important;
  }
}

#recruit {
  display: none;
  position: fixed;
  top: 90px;
  right: 2em;
  background: #fff;
  padding: 1em 0;
  z-index: 1000;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1003;
  list-style: none;
}
#recruit li a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-decoration: none;
  color: #2a3685;
  padding: 0.5em 1.5em;
  padding-right: 4.5em;
  background-image: url(../img/public/arrow-off.svg);
  background-repeat: no-repeat;
  background-position: right 1.5em center;
  background-size: 1em;
  display: block;
  transition: 0.2s;
}
#recruit li a:hover {
  background-color: #2a3685;
  color: #fff;
  background-image: url(../img/public/arrow-white.svg);
}
#recruit li.close {
  padding: 0.5em 1.5em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  background-color: #009ce5;
  background-image: none;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  cursor: pointer;
  transition: 0.2s;
}
#recruit li.close:hover {
  background-color: #2a3685;
  color: #fff;
}
@media (max-width: 1080px) {
  #recruit {
    top: inherit;
    right: inherit;
    bottom: 20px;
    left: 20px;
  }
}

.dropmenu {
  *zoom: 1;
  list-style-type: none;
}
.dropmenu:before, .dropmenu:after {
  content: "";
  display: table;
}
.dropmenu:after {
  clear: both;
}
.dropmenu li {
  position: relative;
  margin: 0;
  padding: 0;
}
.dropmenu li ul {
  width: 100%;
  background-color: #ddd;
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li {
  width: 100%;
  float: left;
  border-top: 1px solid #ccc;
}
.dropmenu li ul li:last-of-type {
  border-bottom: 1px solid #ccc;
}

#fade-in li ul {
  visibility: hidden;
  opacity: 0;
  transition: 0s;
}
#fade-in li ul li a {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}
#fade-in li:hover ul {
  visibility: visible;
  opacity: 1;
}
#fade-in li:hover ul li a {
  visibility: visible;
  opacity: 1;
}

.slider {
  width: 100%;
  margin: auto;
  margin-bottom: 3rem;
}
.slider li img {
  width: 100%;
}

main {
  width: 100%;
  min-width: 768px;
  overflow: hidden;
  margin-top: 200px;
  transition: opacity 1s;
}
@media (max-width: 1080px) {
  main {
    margin-top: 120px;
  }
}
@media (max-width: 768px) {
  main {
    min-width: 100%;
  }
}

.inner {
  max-width: 1200px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 100%;
  }
}

section {
  width: 100%;
  padding: 0 min(272px, 4vw);
  margin-bottom: clamp(60px, 7.81vw, 150px);
}
@media (max-width: 768px) {
  section {
    padding: 0 6%;
    margin-bottom: 60px;
  }
}
section.even {
  background-color: #f2fafe;
  padding-top: min(80px, 10vw);
  padding-bottom: min(80px, 10vw);
}
@media (max-width: 768px) {
  section.even {
    padding-top: min(50px, 10vw);
    padding-bottom: min(50px, 10vw);
  }
}
section:last-of-type {
  margin-bottom: 0;
}
section.cta {
  padding-top: min(50px, 7vw);
  padding-bottom: min(50px, 7vw);
  position: relative;
}
section.cta p {
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
section.cta p span.tel {
  display: inline-block;
  margin-left: 1em;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.cta p span.tel {
    margin-left: 0;
  }
}
section.cta .cta-link-button {
  width: 100%;
  max-width: 400px;
  margin: 1.5em auto 0.5em;
  position: relative;
  z-index: 3;
}
@media (min-width: 1081px) {
  section.cta .cta-link-button {
    scale: 120%;
  }
}
@media (max-width: 768px) {
  section.cta .cta-link-button {
    max-width: 270px;
  }
}
section.cta .cta-link-button a,
section.cta .cta-link-button img {
  width: 100%;
  display: block;
}

.axis-logo {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1 !important;
  pointer-events: none;
  background-image: url(../img/footer/a-logo.svg);
  background-position: right 0 bottom 2vw;
  background-repeat: no-repeat;
  background-size: 100%;
  mix-blend-mode: multiply;
}
@media (min-width: 1081px) {
  .axis-logo {
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1080px) {
  .axis-logo {
    width: 460px;
    height: 460px;
  }
}
@media (max-width: 768px) {
  .axis-logo {
    width: min(400px, 80vw);
    height: min(400px, 80vw);
  }
}

h2 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  width: 100%;
  font-size: 2em;
  color: #2a3685;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 1em;
}
h2 span {
  display: inline-block;
}
h2 + div {
  margin-top: 4em;
}
@media (max-width: 768px) {
  h2 + div {
    margin-top: 2em;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.7em;
    line-height: 1.35;
  }
}

h3 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.2em;
  color: #2a3685;
  font-weight: bold;
  text-align: center;
  font-size: 1.75em;
  letter-spacing: 1px;
  line-height: 1.2;
  padding: 0;
  position: relative;
}
h3 span {
  display: inline-block;
}
h3 span span {
  display: inline-block;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.4em;
    line-height: 1.35;
    margin-bottom: 1em;
  }
}

h3::before,
h3::after {
  content: "";
  display: block;
  background-color: #2a3685;
  width: 30px;
  height: 40px;
  flex-shrink: 0;
  position: static;
  z-index: 1;
}

h3::before {
  clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
  order: -1;
  margin-right: 1em;
}

h3::after {
  clip-path: polygon(25px 0%, 100% 0%, calc(100% - 25px) 100%, 0% 100%);
  order: 1;
  margin-left: 1em;
}

@media (max-width: 768px) {
  h3::before,
  h3::after {
    scale: 0.8;
  }
}
footer {
  width: 100%;
  padding: 2em 0;
  color: #fff;
  background-color: #2a3685;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media (max-width: 768px) {
  footer {
    padding: 4vw;
  }
}
footer .address {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  margin-left: 2%;
}
footer .address p {
  line-height: 1.6;
  margin-top: 1.2em;
  margin-left: 2em;
}
@media (max-width: 768px) {
  footer .address {
    margin: 0;
  }
  footer .address p {
    text-align: center;
    line-height: 1.35;
    margin: 1.5em auto 0;
  }
}
footer .footer-logo {
  width: min(45%, 220px);
}
footer .footer-logo img {
  width: 100%;
  vertical-align: middle;
}
@media (max-width: 768px) {
  footer .footer-logo {
    margin: auto;
  }
}

/* --- 共通変数 --- */
:root {
  --nav-color: #2a3685;
  --nav-color-orange: #fabe00;
  --skew-angle: -20deg;
  --arrow-width: 60px;
  --arrow-width-sp: 40px;
}

/* --- レイアウトの共通定義 --- */
.nav-grid, ul.footer-link-button, .link-button, #contact #form-btn {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin: 0 auto;
  list-style: none;
}
@media (max-width: 1080px) {
  .nav-grid, ul.footer-link-button, .link-button, #contact #form-btn {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .nav-grid, ul.footer-link-button, .link-button, #contact #form-btn {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.2em;
    padding-left: 0;
  }
}

/* --- ボタンパーツのデザイン（.nav-item） --- */
.nav-item {
  width: 100%;
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch;
  text-decoration: none !important;
  height: 34px;
  transition: transform 0.2s, opacity 0.3s;
}
.nav-item:hover {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .nav-item {
    height: 30px;
  }
}

/* テキスト部分（白背景） */
.nav-text {
  font-feature-settings: "palt";
  flex: 1 1 auto;
  background-color: white;
  border-right: none;
  transform: skewX(var(--skew-angle));
  display: flex;
  align-items: center;
  padding-left: 1em;
  overflow: hidden;
  white-space: nowrap;
}
.nav-text span {
  color: var(--nav-color);
  line-height: 1;
  font-weight: bold;
  transform: skewX(calc(var(--skew-angle) * -1));
  display: block;
  font-size: 14px;
}
@media (max-width: 768px) {
  .nav-text span {
    font-size: 12px;
  }
}

/* 矢印部分（青背景） */
.nav-arrow {
  flex: 0 0 var(--arrow-width);
  width: var(--arrow-width);
  background-color: var(--nav-color-orange);
  transform: skewX(var(--skew-angle));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 1px;
}
.nav-arrow::before {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='12' x2='34' y2='12'%3E%3C/line%3E%3Cpolyline points='26 5 34 12 26 19'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: skewX(calc(var(--skew-angle) * -1));
}
@media (max-width: 768px) {
  .nav-arrow {
    width: var(--arrow-width-sp);
    flex: 0 0 var(--arrow-width-sp);
  }
  .nav-arrow::before {
    width: 1.35em;
    height: 1.35em;
  }
}

.link-button, #contact #form-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1em;
  margin-top: 1em;
}
@media (max-width: 768px) {
  .link-button, #contact #form-btn {
    gap: 0.75em;
  }
}
.link-button li, #contact #form-btn li {
  width: 260px;
}
@media (max-width: 768px) {
  .link-button li, #contact #form-btn li {
    width: 200px;
  }
}
.link-button li a, #contact #form-btn li a {
  display: block;
}
.link-button li a img, #contact #form-btn li a img {
  width: 100%;
  display: block;
}
.link-button .nav-text, #contact #form-btn .nav-text {
  background-color: #2a3685;
}
.link-button .nav-text span, #contact #form-btn .nav-text span {
  color: #fff;
}
.link-button .nav-arrow, #contact #form-btn .nav-arrow {
  background-color: var(--nav-color-orange);
  margin-left: 1px;
  /* 隙間対策 */
}
.link-button .nav-arrow::before, #contact #form-btn .nav-arrow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='12' x2='34' y2='12'%3E%3C/line%3E%3Cpolyline points='26 5 34 12 26 19'%3E%3C/polyline%3E%3C/svg%3E");
}

ul.footer-link-button {
  width: 780px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5em;
  margin-top: 1.2em;
}
@media (max-width: 1080px) {
  ul.footer-link-button {
    display: none;
  }
}
ul.footer-link-button .nav-item {
  height: 30px;
}
ul.footer-link-button .nav-text {
  background-color: white;
  padding-left: 0.75em;
}
ul.footer-link-button .nav-text span {
  color: var(--nav-color);
  font-size: 12px;
}
ul.footer-link-button .nav-arrow {
  width: var(--arrow-width-sp);
  flex: 0 0 var(--arrow-width-sp);
  background-color: var(--nav-color-orange);
  margin-left: 1px;
}
ul.footer-link-button .nav-arrow::before {
  width: 1.35em;
  height: 1.35em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='6' y1='12' x2='34' y2='12'%3E%3C/line%3E%3Cpolyline points='26 5 34 12 26 19'%3E%3C/polyline%3E%3C/svg%3E");
}

.button {
  width: 100%;
  background-color: #999;
  line-height: 40px;
  text-align: center;
  border-radius: 10px;
  margin-top: auto;
}
.button:hover {
  opacity: 0.7;
}
.button a {
  text-decoration: none;
  color: #fff;
  display: block;
}
.button a::after {
  content: "n";
  font-family: "fontello";
  margin-left: 1rem;
}

.headline {
  margin-bottom: 4em;
}
.headline p {
  font-size: 1.125em;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1em;
}

#beginning {
  margin-bottom: min(120px, 6.25vw);
}
#beginning p {
  font-weight: normal;
  line-height: 2;
}
@media (max-width: 768px) {
  #beginning p {
    text-align: justify;
  }
}

#sub-img {
  width: 100%;
  padding: 0 min(272px, 4vw);
  display: block;
  margin: auto;
  margin-bottom: clamp(60px, 7.81vw, 150px);
}
#sub-img img {
  width: 100%;
  max-width: 1366px;
  display: block;
  margin: auto;
}

#information {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
#information h2 {
  clip-path: polygon(0.65em 0%, 100% 0%, calc(100% - 0.65em) 100%, 0% 100%);
  background-color: #2a3685;
  color: #fff;
  text-align: left;
  font-size: 1.625em;
  font-weight: 600;
  line-height: 1;
  padding: 0.5em;
  padding-left: 1.5em;
  background-image: url(../img/toppage/whats-new-bg.jpg);
  background-size: cover;
  background-position: center center;
  letter-spacing: 0;
}
#information h2 span {
  display: inline-block;
  margin-left: 1em;
  font-size: 90%;
  color: #fabe00;
}
@media (max-width: 768px) {
  #information h2 {
    font-size: 1.25em;
    padding-left: 1.25em;
  }
}
#information dl {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  padding: 0 1.5em;
  letter-spacing: 0.05rem;
}
@media (max-width: 1080px) {
  #information dl {
    display: block;
    padding: 0 0.5em;
  }
}
#information dl dt {
  padding: 1em;
  font-weight: 600;
  border-bottom: 1px solid #2a3685;
  display: flex;
  align-items: center;
}
@media (max-width: 1080px) {
  #information dl dt {
    width: 100%;
    border: none;
    padding: 0;
    padding-top: 0.75em;
  }
}
#information dl dd {
  padding: 1em 4em 1em 1em;
  padding-right: 4em;
  border-bottom: 1px solid #2a3685;
  display: flex;
  align-items: center;
  background-image: url(../img/public/arrow-off.svg);
  background-size: 1.4em;
  background-repeat: no-repeat;
  background-position: center right 1em;
}
@media (max-width: 1080px) {
  #information dl dd {
    width: 100%;
    padding: 0.75em 0;
    padding-right: 4em;
    margin-top: -0.5em;
  }
}
#information dl a {
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.2s;
}
#information dl a:hover {
  transform: translateY(-6px);
}
#information .tag {
  width: 70px;
  display: inline-block;
  margin-left: 1em;
}
#information .tag img {
  width: 100%;
}
@media (max-width: 768px) {
  #information .tag {
    width: 60px;
  }
}
#information .link-button, #information #contact #form-btn, #contact #information #form-btn {
  padding: 0 1.5em;
}
@media (max-width: 1080px) {
  #information .link-button, #information #contact #form-btn, #contact #information #form-btn {
    padding: 0 0.5em;
  }
}

.picture-contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.picture-contents .image {
  width: 37.5%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
.picture-contents .image img {
  width: 100%;
}
@media (max-width: 768px) {
  .picture-contents .image {
    margin-bottom: 2em;
  }
  .picture-contents .image img {
    width: 80%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}
.picture-contents .text {
  width: 57%;
  max-width: 680px;
}
@media (max-width: 768px) {
  .picture-contents > .image,
  .picture-contents > .text {
    width: 100%;
  }
}

.product {
  max-width: 980px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
}
.product li {
  width: 48%;
  max-width: 586px;
}
.product li img {
  width: 100%;
}

.recruit-link {
  width: 100%;
  max-width: 980px;
  margin: auto;
  margin-top: clamp(20px, 2.6vw, 50px);
}
.recruit-link img {
  width: 100%;
}

@keyframes bg-scroll {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}
#top-visual {
  width: 100%;
  padding: 0;
  margin: 0;
  background-image: url(../img/toppage/top-bg.jpg);
  background-size: cover;
  background-position: top center;
  background-position: center top;
  animation: bg-scroll 30s linear infinite alternate;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #top-visual {
    height: 100dvh;
    background-size: auto 120%;
  }
}
#top-visual img {
  width: auto;
  height: 100dvh;
  margin: auto;
}
@media (max-width: 768px) {
  #top-visual img {
    width: 100%;
    height: auto;
  }
}

#visual img {
  max-width: 1368px;
  width: 100%;
  margin: auto;
  display: block;
}

.intro {
  font-size: 1.125em;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  .intro {
    margin-bottom: 2em;
    line-height: 1.5;
  }
}
.intro p {
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .intro p {
    text-align: justify;
  }
}
.intro span {
  font-feature-settings: "palt";
}
.intro span.sse {
  font-size: 1.4rem;
}

ul.list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -3em;
}
ul.list > li {
  margin-bottom: 3em;
}
ul.list > li ul.disc {
  margin-left: 1.2em;
}
ul.list > li p {
  width: calc(100% - 1em);
  padding: 0 1em;
}
@media (max-width: 768px) {
  ul.list > li {
    width: 100%;
    margin: auto;
    margin-bottom: 2em;
  }
}

.three-columns > li {
  width: 30%;
}

.two-columns > li {
  width: 47%;
}

.disc > li {
  list-style: disc outside;
  margin-left: 1.2rem;
}

.skew-banner, .skew-banner-reverse {
  /* 平行四辺形の形を作る */
  width: calc(100% - 1em);
  background-color: #f2fafe;
  display: flex;
  align-items: center;
  padding: 0.3em 1em;
  /* 薄い青紫の背景色 */
  transform: skewX(-25deg);
  /* 全体を左に傾ける */
  /* 下の太い線 */
  border-bottom: 3px solid #2a3685;
  /* 表示位置の微調整（傾斜で左に寄るため） */
  margin-left: 10px;
  margin-bottom: 0.75em;
}
.skew-banner span, .skew-banner-reverse span {
  /* テキストの傾きを元に戻す */
  font-size: 1.125em;
  display: inline-block;
  transform: skewX(25deg);
  /* テキストの装飾 */
  color: #2a3685;
  line-height: 1.35;
  font-weight: 600;
}

.skew-banner-reverse {
  background-color: #2a3685;
  border-bottom: 3px solid #f4f5fa;
}
.skew-banner-reverse span {
  color: #fff;
}

.philosophy-section {
  margin: auto;
  list-style: none;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
}
.philosophy-section li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}
@media (max-width: 768px) {
  .philosophy-section li {
    justify-content: center;
  }
}
.philosophy-section li img {
  width: 220px;
  margin-bottom: 0.5em;
  display: block;
}
@media (max-width: 768px) {
  .philosophy-section li img {
    width: 160px;
  }
}
.philosophy-section li p {
  font-size: 1.7em;
  font-family: "Zen Antique Soft", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: center;
  display: inline-block;
  margin-left: 1em;
}
@media (max-width: 768px) {
  .philosophy-section li p {
    font-size: 1.4em;
    margin-left: 0;
  }
}

.company-info {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border: solid 1px #ebebeb;
  border-bottom: none;
}
.company-info tr {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company-info th {
  flex: 0 0 300px;
  background: #f8f8f8;
  font-weight: 100;
  padding: 1.25em;
  border-bottom: solid 1px #ebebeb;
}
@media (max-width: 768px) {
  .company-info th {
    flex: none;
    width: 100%;
    padding: 1em;
  }
}
.company-info td {
  flex: 1;
  min-width: 0;
  padding: 1.25em;
  border-bottom: solid 1px #ebebeb;
}
@media (max-width: 768px) {
  .company-info td {
    width: 100%;
    padding: 1em;
  }
}
.company-info td p {
  margin-bottom: 1em;
}
.company-info td p:last-of-type {
  margin-bottom: 0;
}

.product-lineup {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4em;
}
.product-lineup > li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: clamp(20px, 2.8vw, 30px);
}
.product-lineup > li > * {
  display: flex;
  flex-direction: column;
}
.product-lineup > li > * img {
  width: 100%;
  margin-bottom: 1em;
}
.product-lineup > li .image {
  width: 52%;
}
.product-lineup > li .description {
  width: 44%;
}
.product-lineup > li .points-area {
  padding: clamp(20px, 2.8vw, 30px);
  font-family: "Zen Maru Gothic", sans-serif;
}
.product-lineup > li .points-area h4 {
  font-weight: 900;
  text-align: center;
  line-height: 1;
  color: yellow;
  font-size: clamp(24px, 2.6vw, 48px);
  margin: 0;
  margin-bottom: 0.5em;
}
.product-lineup > li .points-area ul {
  list-style: none;
}
.product-lineup > li .points-area ul li {
  color: #fff;
  font-weight: 700;
  font-size: 1.25em;
  line-height: 1.35;
  margin-bottom: 0.5em;
  text-align: left;
  letter-spacing: -0.05em;
}
@media (max-width: 1080px) {
  .product-lineup > li {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  .product-lineup {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .product-lineup > li {
    width: 100%;
    margin: 0 auto;
  }
  .product-lineup > li > * {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
  }
  .product-lineup > li .description {
    width: 100%;
    margin-bottom: 2em;
  }
  .product-lineup > li .image {
    width: 100%;
  }
}

#houpss {
  border-top: 2px solid #28b0d3;
  border-bottom: 2px solid #28b0d3;
}
#houpss .points-area {
  background-color: #28b0d3;
}

#nupla {
  border-top: 2px solid #00ae7f;
  border-bottom: 2px solid #00ae7f;
}
#nupla .points-area {
  background-color: #00ae7f;
}

.person {
  max-width: 1080px;
  margin: auto;
  background-image: url(../img/contents/shadow.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.person ul {
  list-style: none;
  display: flex;
}
.person ul li {
  width: 20%;
}
.person ul li img {
  width: 100%;
}
.person .jump {
  /* transformをアニメーションの対象にする */
  position: relative;
  z-index: 2;
  transform: translateY(0);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.person .jump img {
  width: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-out;
}

.interview {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(40%, 240px), 340px));
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .interview {
    grid-template-columns: repeat(auto-fit, minmax(min(50%, 200px), 260px));
  }
}
.interview li img {
  width: 100%;
}

.benefits dt {
  font-weight: 700;
  font-size: 1.125em;
  padding-left: 1.5em;
  background-image: url(../img/contents/recruit-dot.svg);
  background-position: left center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.benefits dd {
  margin-bottom: 1em;
}

.select-btn {
  width: 100%;
  max-width: 400px;
  margin: auto;
  margin-bottom: 3em;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.select-btn button {
  width: 50%;
  cursor: pointer;
  transition: 0.2s;
}
.select-btn button img {
  width: 100%;
}
.select-btn button:hover {
  transform: translateY(-6px);
}

#requirements h4 {
  font-size: 1.4em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1em;
}
#requirements #newgraduate,
#requirements #career {
  margin-top: 60px;
  margin-bottom: 120px;
}
#requirements dl {
  list-style: none;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4em;
}
#requirements dl dt {
  width: 30%;
  max-width: 200px;
  font-weight: 700;
  padding: 1em;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  #requirements dl dt {
    width: 100%;
    max-width: none;
    padding-bottom: 0;
    border-bottom: none;
  }
}
#requirements dl dd {
  width: calc(100% - 200px);
  flex: 1 1 auto;
  padding: 1em;
  border-bottom: 1px solid #eee;
}
@media (max-width: 768px) {
  #requirements dl dd {
    width: 100%;
    padding-top: 0;
  }
}
#requirements ul.flow {
  list-style: none;
}
#requirements ul.flow > li {
  display: flex;
  align-items: center;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  #requirements ul.flow > li {
    align-items: start;
  }
}
#requirements ul.flow > li img {
  width: 120px;
  margin-right: 1em;
}
@media (max-width: 768px) {
  #requirements ul.flow > li img {
    width: 80px;
  }
}
#requirements ul.flow > li ol > li {
  margin-bottom: 0.25em;
  margin-left: 1.2em;
  list-style: decimal !important;
}

.entry {
  max-width: 460px;
  margin: auto;
}
.entry img {
  width: 100%;
}

.note-list {
  text-align: center;
  list-style: none;
  font-size: 0.95em;
}
@media (max-width: 768px) {
  .note-list {
    margin-left: 1em;
    text-align: justify;
  }
  .note-list li {
    margin-bottom: 0.25em;
  }
}
.note-list li:before {
  content: "※";
}
@media (max-width: 768px) {
  .note-list li:before {
    -moz-text-align-last: left;
         text-align-last: left;
    text-indent: 1em;
    margin-left: -1em;
  }
}
.intro-bold + .note-list {
  margin-top: -3.5em;
  margin-bottom: 3.5em;
}
@media (max-width: 768px) {
  .intro-bold + .note-list {
    margin-top: -2em;
    margin-bottom: 2em;
  }
}

#contact h4 {
  font-size: 1.3em;
  text-align: center;
  font-weight: 800;
  margin-top: 2em;
  margin-bottom: 1em;
}
#contact h4 + P {
  text-align: center;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  #contact h4 + P {
    text-align: justify;
  }
}
#contact table {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #contact table {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
#contact table th.space {
  letter-spacing: -0.1em;
}
#contact table th span {
  background-color: #e50526;
  color: #fff;
  line-height: 1;
  padding: 0.2em 0.5em;
  border-radius: 4px;
  font-size: 0.9em;
  margin-left: 0.5em;
}
#contact table td input:not([type=radio]):not([type=file]) {
  width: 80%;
  padding: 0.5em;
  max-width: 480px;
  border: 1px solid #dcdcdc;
  height: 32px;
  margin-left: 3%;
  margin-bottom: 0.5em;
}
#contact table td input:not([type=radio]):not([type=file]):last-of-type {
  margin-bottom: 0;
}
#contact table td input:not([type=radio]):not([type=file])#letter01, #contact table td input:not([type=radio]):not([type=file])#letter02 {
  width: 14%;
  min-width: 6em;
  max-width: 80px;
  margin: 10px 0 15px 0;
}
#contact table td input:not([type=radio]):not([type=file])#letter03 {
  width: 62%;
  max-width: 360px;
  margin-left: 3%;
}
#contact table td p {
  margin-left: 3%;
}
#contact table td span {
  padding-left: 2.5%;
  margin-right: 1em;
}
#contact table td label:not(.gender) {
  margin-left: 3%;
  margin-bottom: 0.5em;
  position: relative;
  display: block;
  width: 120px;
  padding-left: 8px;
  border: none;
  border-radius: 0;
  background: #DDD;
  border-radius: 4px;
}
@media (max-width: 768px) {
  #contact table td label:not(.gender) {
    margin-bottom: 0.5em;
  }
}
#contact table td label:not(.gender):before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 0;
  height: 0;
  margin: -2px 0 0 0;
  border: 5px solid transparent;
  border-top: 7px solid #3c3c3c;
}
#contact table td label.gender {
  margin-left: 3%;
  margin-bottom: 0.5em;
  display: block;
}
#contact table td select {
  cursor: pointer;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 120px;
  padding: 7px;
  color: #3c3c3c;
  border: none;
  background: transparent;
}
#contact table td textarea {
  width: 95%;
  margin-left: 3%;
  border: 1px solid #dcdcdc;
  height: 260px;
  padding: 0.5em;
}
@media (max-width: 768px) {
  #contact table td textarea {
    height: 150px;
  }
}
#contact .error-message {
  color: #cc0000;
  margin-top: 2px;
  margin-left: 2em;
  font-size: 0.9em;
}
@media (max-width: 768px) {
  #contact .error-message {
    margin-left: 1em;
  }
}
#contact input.radio {
  transform: scale(1.25);
  margin-right: 2px;
  transform-origin: center;
}
#contact input[type=file] {
  margin-bottom: 2px;
  margin-left: 3%;
}
#contact .policy {
  width: 100%;
  max-width: 800px;
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #ebebeb;
  margin: 0 auto;
  position: relative;
  margin-bottom: 1em;
  padding: 1em;
}
#contact .form-check {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #contact .form-check {
    margin-bottom: 20px;
  }
}
#contact #form-btn {
  justify-content: center;
  margin-top: 0;
}
#information #blog-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #information #blog-wrap {
    flex-direction: column;
  }
}
#information #blog-inbox01, #information #blog-inbox03 {
  width: calc(100% - 260px - 40px);
  max-width: 840px;
}
@media (max-width: 768px) {
  #information #blog-inbox01, #information #blog-inbox03 {
    width: 100%;
    margin-bottom: 2em;
  }
}
#information #list01, #information #blog-inbox03 div#article {
  width: 100%;
  padding: 0;
  margin: 2em 0;
  border-top: 1px solid #2a3685;
}
@media (max-width: 768px) {
  #information #list01, #information #blog-inbox03 div#article {
    margin: 1em 0;
  }
}
.cate-tag {
  font-size: 0.85em;
  font-weight: normal;
  font-feature-settings: "palt" 1;
  letter-spacing: -0.005em;
  padding: 0.4em 0.6em;
  line-height: 1;
  background-color: #39b54a;
  margin-left: 0.75em;
  color: #fff !important;
}

#information #blog-inbox02 {
  width: 260px;
  display: grid;
  align-content: start;
  gap: 40px;
}
@media (max-width: 768px) {
  #information #blog-inbox02 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
}
#information #blog-inbox02 #inner02 ul,
#information #blog-inbox02 #inner01 ul {
  width: 95%;
  margin: auto;
  list-style: none;
}
#information #blog-inbox02 #inner02 ul li,
#information #blog-inbox02 #inner01 ul li {
  padding: 5px 0 5px 0;
  border-bottom: solid 1px #2a3685;
  background-image: url(../img/public/arrow-off.svg);
  background-position: center right 1em;
  background-repeat: no-repeat;
  background-size: 1em;
  font-size: 0.94em;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
#information #blog-inbox02 #inner02 ul li a,
#information #blog-inbox02 #inner01 ul li a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  transition: 0.2s;
}
#information #blog-inbox02 #inner02 ul li a:hover,
#information #blog-inbox02 #inner01 ul li a:hover {
  transform: translateY(-4px);
}
#information #blog-inbox02 #inner02 ul li:first-child,
#information #blog-inbox02 #inner01 ul li:first-child {
  border-top: solid 1px #2a3685;
}
#information #blog-inbox03 div#article {
  border-top: 2px solid #2a3685;
  border-bottom: 2px solid #2a3685;
}
#information #blog-inbox03 #article-inner {
  padding: 2em 0;
}
#information #blog-inbox03 #blog-title {
  padding: 0;
  grid-template-columns: 1fr auto;
}
@media (max-width: 1080px) {
  #information #blog-inbox03 #blog-title {
    display: grid;
    padding: 0;
  }
}
#information #blog-inbox03 #blog-title dt {
  padding-left: 0;
  font-size: 1.1em;
}
@media (max-width: 1080px) {
  #information #blog-inbox03 #blog-title dt {
    width: auto;
    padding: 1em;
    padding-left: 0;
    border-bottom: 1px solid #2a3685;
  }
}
#information #blog-inbox03 #blog-title dd {
  padding-right: 0;
  background-image: none;
}
#information #blog-inbox03 #blog-title dd a.cate-tag {
  width: auto;
  height: auto;
}
@media (max-width: 1080px) {
  #information #blog-inbox03 #blog-title dd {
    margin-top: 0;
    width: auto;
    padding: 1em 0;
  }
}
@media (max-width: 768px) {
  #information #blog-inbox03 #blog-title dd {
    align-items: start;
    margin-top: 0.15em;
  }
}
#information #blog-inbox03 #blog-title .cate-tag {
  margin-left: 0;
}
#information #blog-inbox03 p#date {
  font-size: 90%;
  text-align: right;
  padding: 0;
  margin: 0.5em 0;
}
#information #blog-inbox03 div.add-pattern01,
#information #blog-inbox03 div.add-pattern02,
#information #blog-inbox03 div.add-pattern03 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#information #blog-inbox03 div.add-pattern01 p,
#information #blog-inbox03 div.add-pattern02 p,
#information #blog-inbox03 div.add-pattern03 p {
  width: 100%;
  overflow-wrap: break-word;
}
#information #blog-inbox03 div.add-image {
  width: 40%;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  #information #blog-inbox03 div.add-image {
    width: 100%;
    margin-bottom: 1em;
  }
}
#information #blog-inbox03 div.add-image img {
  width: 100%;
}
#information #blog-inbox03 .article-text {
  width: 55%;
}
#information #blog-inbox03 table,
#information #blog-inbox03 td,
#information #blog-inbox03 th {
  border: 1px solid black;
}
#information #sns {
  display: flex;
}
#information #sns a.twitter-share-button {
  height: 20px;
  display: flex;
  margin-right: 1em;
}
#information #sns a.twitter-share-button img {
  height: 100%;
  width: auto;
}
#information #sns a.twitter-share-button img:hover {
  transform: translateY(0);
}
#information ul#pagenation li.prev a:before, #information ul#page-nav li.prev a:before, #information ul#pagenation li.next a:after, #information ul#page-nav li.next a:after {
  content: "";
  width: 1em;
  height: 1em;
  display: inline-block;
  background-image: url(../img/public/w-arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1em;
}
#information ul#pagenation, #information ul#page-nav {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-bottom: 20px;
}
#information ul#pagenation li, #information ul#page-nav li {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f4f5fa;
  margin: 0 2px;
  transition: 0.2s;
}
#information ul#pagenation li a, #information ul#page-nav li a,
#information ul#pagenation li p,
#information ul#page-nav li p {
  padding: 0.75em;
  line-height: 1;
  color: #2a3685;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
#information ul#pagenation li:hover, #information ul#page-nav li:hover {
  background-color: #009ce5;
}
#information ul#pagenation li:hover a, #information ul#page-nav li:hover a,
#information ul#pagenation li:hover p,
#information ul#page-nav li:hover p {
  color: #fff;
}
#information ul#pagenation li.active, #information ul#page-nav li.active {
  background-color: #009ce5;
}
#information ul#pagenation li.active a, #information ul#page-nav li.active a,
#information ul#pagenation li.active p,
#information ul#page-nav li.active p {
  color: #fff;
}
#information ul#pagenation li.next, #information ul#page-nav li.next {
  margin-left: 0.5em;
}
#information ul#pagenation li.next a:after, #information ul#page-nav li.next a:after {
  margin-left: 0.5em;
}
#information ul#pagenation li.next:hover a:after, #information ul#page-nav li.next:hover a:after {
  background-image: url(../img/public/w-arrow-hover.svg);
}
#information ul#pagenation li.prev, #information ul#page-nav li.prev {
  margin-right: 0.5em;
}
#information ul#pagenation li.prev a:before, #information ul#page-nav li.prev a:before {
  transform: rotate(180deg);
  margin-right: 0.5em;
}
#information ul#pagenation li.prev:hover a:before, #information ul#page-nav li.prev:hover a:before {
  background-image: url(../img/public/w-arrow-hover.svg);
}
#information ul#page-nav {
  margin-top: 1em;
}

#privacy p:first-of-type {
  margin-bottom: 40px;
}
#privacy dl {
  margin-bottom: 40px;
}
#privacy dl dt {
  font-weight: bold;
  font-size: 1.25em;
  margin-bottom: 0.5em;
  color: #2a3685;
}
#privacy dl dd ul {
  margin: 1em 0;
}

#sitemap {
  min-height: 280px;
}
#sitemap .nav-text {
  background-color: var(--nav-color);
}
#sitemap .nav-text span {
  color: white;
}/*# sourceMappingURL=newlayout.css.map */