@charset "UTF-8";
/* =====================================================
   Reset CSS
   ベースとなるブラウザ差異をリセットする
   デザイン指定は行わない
===================================================== */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Margin / Padding reset */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

/* HTML5 elements */
article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

/* List reset */
ul,
ol {
  list-style: none;
}

/* Table reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Media elements */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Form elements */
input,
button,
textarea,
select {
  margin: 0;
  font: inherit;
  color: inherit;
}

/* Button reset */
button,
input[type=button],
input[type=submit] {
  appearance: none;
  border: none;
  background: none;
  cursor: pointer;
}

/* Quote reset */
blockquote,
q {
  quotes: none;
}

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

.dsp-pc {
  display: block;
}
@media (max-width: 768px) {
  .dsp-pc {
    display: none;
  }
}

.dsp-sp {
  display: none;
}
@media (max-width: 768px) {
  .dsp-sp {
    display: block;
  }
}

a {
  color: #fff;
}

/* =====================================================
   Base
   サイト全体の基本スタイル
===================================================== */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  background-color: #000;
  color: #fff;
}

/* Link */
a {
  color: inherit;
  text-decoration: none;
}

/* Image */
img {
  max-width: 100%;
  height: auto;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

/* Paragraph */
p {
  line-height: 1.5;
}

/* Strong */
strong {
  font-weight: 700;
}

/* Button base */
button {
  font: inherit;
  color: inherit;
}

/* Form base */
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* inner */
.inner {
  width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

/* section */
.section {
  padding: 100px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
}

/* Fadein */
/* JSが有効な場合、最初は透明 */
html.js body {
  opacity: 0;
  transition: opacity 1s ease;
}

/* 読み込み完了後に表示 */
html.js body.is-loaded {
  opacity: 1;
}

/* Wordpressのバー */
#wpadminbar {
  position: fixed !important;
  top: auto !important;
  left: 0 !important;
  bottom: 0 !important;
  background-color: rgba(0, 0, 0, 0.75) !important;
}

/* =====================================================
   Header Layout
===================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header {
    height: 50px;
  }
}
.header-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
  }
}
.header-logo img {
  width: 250px;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .header-logo img {
    width: 180px;
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav li {
  display: block;
  position: relative;
  height: 100%;
}
.header-nav li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background: #fff;
  right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.header-nav li:last-of-type {
  margin-left: 24px;
}
.header-nav li:last-of-type::after {
  display: none;
}
.header-nav li a {
  display: block;
  height: 100%;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  transition: all 0.3s ease;
  padding: 0 24px;
}
.header-nav li a:hover {
  opacity: 0.6;
}
.header-nav li a.contact {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  padding: 0 20px 0 18px;
  height: 45px;
  line-height: 45px;
  width: 140px;
  border-radius: 27px;
  position: relative;
  transition: all 0.3s ease;
  background: #fff;
  color: #000;
}
.header-nav li a.contact::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  background: #000;
  transition: all 0.3s ease;
}
.header-nav li a.contact:hover {
  background-color: #fff;
  color: #000 !important;
}
.header-nav li a.contact:hover::after {
  border-color: #000;
  right: 15px;
}
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.95);
    transition: all 0.4s ease;
    padding-top: 100px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .header-nav ul {
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  .header-nav ul li {
    width: 100%;
    text-align: center;
    margin: 0 !important;
  }
  .header-nav ul li::after {
    display: none;
  }
  .header-nav ul li a {
    padding: 20px 0;
    font-size: 24px;
    color: #fff;
  }
  .header-nav ul li a.contact {
    margin: 20px auto;
    justify-content: center;
    color: #000;
    display: inline-block;
    padding: 0 45px;
    width: auto;
  }
}
.header-toggle {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  padding: 0;
}
.header-toggle span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}
.header-toggle span:nth-child(1) {
  top: 12px;
}
.header-toggle span:nth-child(2) {
  bottom: 12px;
}
.header.is-scrolled .header-toggle span {
  background-color: #000;
}
@media (max-width: 1024px) {
  .header-toggle {
    display: block;
  }
}
.header.is-scrolled {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header.is-scrolled .header-nav li a {
  color: #000;
}
.header.is-scrolled .header-nav li a:hover {
  opacity: 0.6;
}
.header.is-scrolled .header-nav li a.contact {
  background: #fff;
  color: #000;
  border-color: #000;
}
.header.is-scrolled .header-nav li a.contact::after {
  background: #000;
}
.header.is-scrolled .header-nav li a.contact:hover {
  opacity: 1;
  color: #fff !important;
  background: #000;
  border-color: #fff;
}
.header.is-scrolled .header-nav li a.contact:hover::after {
  background: #fff;
}
.header.is-scrolled .header-nav li::after {
  background: #000;
}
.header.is-open .header-toggle span {
  background-color: #fff !important;
}
.header.is-open .header-toggle span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.header.is-open .header-toggle span:nth-child(2) {
  bottom: 20px;
  transform: rotate(-45deg);
}
.header.is-open .header-nav {
  top: 0;
  left: 0;
  opacity: 1;
  visibility: visible;
}
.header.is-open .header-nav li a {
  color: #fff;
}
.header.is-open .header-nav li a.contact {
  color: #000;
}
.header.is-open .header-nav li a.contact:hover {
  opacity: 1;
  color: #fff !important;
  background: #000;
}
.header.is-open .header-nav li a.contact:hover::after {
  background: #fff;
}

/* =====================================
  Header offset
===================================== */
main {
  padding-top: 100px;
}
@media (max-width: 768px) {
  main {
    padding-top: 50px;
  }
}

body.is-top-page main {
  padding-top: 0;
}
@media (max-width: 768px) {
  body.is-top-page main {
    padding-top: 50px;
  }
}

/* =====================================================
   Footer Layout
===================================================== */
.footer {
  background-color: #000;
  margin: 0 auto;
  padding-bottom: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .footer {
    padding-bottom: 32px;
  }
}
.footer-inner {
  width: 1280px;
  max-width: 100%;
  padding: 56px 20px 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-inner {
    padding: 32px 16px 0;
  }
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.footer-logo {
  width: 250px;
  height: auto;
}
.footer-nav ul {
  display: flex;
  gap: 48px;
}
.footer-nav li {
  position: relative;
}
.footer-nav li::after {
  content: "";
  position: absolute;
  height: 24px;
  width: 1px;
  background: #B2B2B2;
  top: 0;
  right: -24px;
}
.footer-nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  transition: all 0.3s ease;
}
.footer-nav li a:hover {
  opacity: 0.6;
}
.footer-nav li:last-of-type::after {
  display: none;
}
@media (max-width: 1024px) {
  .footer-nav {
    display: none;
  }
}
.footer-address {
  font-size: 18px;
  color: #fff;
  line-height: 1.3em;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .footer-address {
    font-size: 12px;
    line-height: 2em;
    letter-spacing: 0;
  }
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.footer-privacy {
  font-size: 10px;
  color: #fff;
  text-decoration: none;
}
.footer-privacy:hover {
  text-decoration: underline;
}
.footer-copy {
  border-top: 1px solid #6A6A6A;
  width: 100%;
  padding: 18px 0;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.4em;
  color: #fff;
  text-align: center;
}

.btnarea {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 50px;
}

.c-btn {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  padding: 0 24px;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  width: 250px;
  max-width: 100%;
  height: 60px;
  line-height: 58px;
  border: 1px solid transparent;
}
.c-btn::after, .c-btn::before {
  content: "";
  position: absolute;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.c-btn::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  right: 20px;
}
.c-btn::before {
  width: 56px;
  height: 1px;
  right: 24px;
  transform-origin: left;
}
.c-btn:hover {
  text-decoration: none;
}
.c-btn:hover::before {
  width: 66px;
  right: 14px;
}
.c-btn:hover::after {
  right: 10px;
}
.c-btn.view-more {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.c-btn.view-more::after {
  background-color: #fff;
}
.c-btn.view-more::before {
  background: #fff;
}
.c-btn.view-more:hover {
  opacity: 0.6;
}
.c-btn.contact {
  background: #fff;
  color: #000;
  border-color: #fff;
}
.c-btn.contact::after {
  background-color: #000;
}
.c-btn.contact::before {
  background: #000;
}
.c-btn.contact:hover {
  color: #fff;
  background: transparent;
}
.c-btn.contact:hover::after, .c-btn.contact:hover::before {
  background: #fff;
}
.c-btn.center {
  margin-left: auto;
  margin-right: auto;
}

.pagettl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 768px) {
  .pagettl {
    padding: 2rem 0;
    display: block;
  }
}
.pagettl h1,
.pagettl .pagettl--single {
  font-size: 4rem;
  letter-spacing: 0.08em;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}
@media (max-width: 768px) {
  .pagettl h1,
.pagettl .pagettl--single {
    font-size: 2.5rem;
  }
}
.pagettl h1 span,
.pagettl .pagettl--single span {
  display: block;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2em;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .pagettl h1 span,
.pagettl .pagettl--single span {
    font-size: 1.25rem;
  }
}

.ttl.-entxt_01 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.ttl.-entxt_01.-mg {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .ttl.-entxt_01 {
    font-size: 2.5rem;
  }
}
.ttl.-white {
  color: #fff;
}

.al-center {
  text-align: center;
}

/* =====================================================
   Page Styles
   各ページ専用スタイルをここにまとめる
===================================================== */
/* -----------------------------
   Home
----------------------------- */
#TOPPAGE .mv {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #TOPPAGE .mv {
    min-height: 500px;
    flex-direction: column;
    align-items: flex-start;
  }
}
#TOPPAGE .mv-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  #TOPPAGE .mv-bg {
    position: relative;
    width: 100%;
    height: auto;
  }
}
#TOPPAGE .mv-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#TOPPAGE .mv-bg .pc {
  display: block;
}
#TOPPAGE .mv-content {
  position: relative;
  z-index: 10;
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  #TOPPAGE .mv-content {
    padding: 40px 16px 100px;
    width: 100%;
  }
  #TOPPAGE .mv-content-inner {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }
}
#TOPPAGE .mv-title {
  font-size: 80px;
  line-height: 1.3;
  font-weight: bold;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  #TOPPAGE .mv-title {
    display: inline-block;
    font-size: 50px;
  }
}
@media (max-width: 374px) {
  #TOPPAGE .mv-title {
    font-size: 42px;
  }
}
#TOPPAGE .mv-subtitle {
  font-size: 36px;
  line-height: 2em;
}
@media (max-width: 768px) {
  #TOPPAGE .mv-subtitle {
    display: inline-block;
    font-size: 30px;
    line-height: 1.5;
  }
}
@media (max-width: 374px) {
  #TOPPAGE .mv-subtitle {
    font-size: 24px;
  }
}
#TOPPAGE .mv-scroll {
  position: absolute;
  right: 40px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  writing-mode: vertical-rl;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  cursor: pointer;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 20;
}
#TOPPAGE .mv-scroll::after {
  content: "";
  width: 1px;
  height: 180px;
  background: #fff;
  position: relative;
  background: rgba(255, 255, 255, 0.3);
}
#TOPPAGE .mv-scroll::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, 180px);
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  z-index: 2;
  animation: scroll-move 2.5s infinite;
}
#TOPPAGE .mv-scroll:hover {
  opacity: 0.6;
}
@media (max-width: 768px) {
  #TOPPAGE .mv-scroll {
    display: none;
  }
}
@keyframes scroll-move {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 180px);
    opacity: 0;
  }
}
#TOPPAGE .home-news {
  padding: 80px 0;
  background: #000;
}
@media (max-width: 768px) {
  #TOPPAGE .home-news {
    padding: 60px 0;
  }
}
#TOPPAGE .home-news .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  #TOPPAGE .home-news .section-header {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 24px;
  }
}
#TOPPAGE .home-news .section-header .section-title {
  font-family: "Roboto", sans-serif;
  font-size: 64px;
  font-weight: bold;
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 40px;
}
#TOPPAGE .home-news .section-header .section-title span {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-top: 10px;
}
@media (max-width: 768px) {
  #TOPPAGE .home-news .section-header .section-title {
    font-size: 56px;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
#TOPPAGE .home-news .news-list li {
  border-bottom: 1px solid #787878;
}
#TOPPAGE .home-news .news-list li a {
  display: flex;
  gap: 30px;
  padding: 25px 0;
  align-items: center;
  transition: opacity 0.3s;
  pointer-events: none;
}
#TOPPAGE .home-news .news-list li a:hover {
  opacity: 0.6;
}
#TOPPAGE .home-news .news-list li a .news-meta {
  display: flex;
  gap: 30px;
  align-items: center;
}
#TOPPAGE .home-news .news-list li a .date {
  display: block;
  font-size: 18px;
  width: 90px;
  color: rgba(255, 255, 255, 0.6);
}
#TOPPAGE .home-news .news-list li a .category {
  display: block;
  border: 1px solid #fff;
  padding: 2.5px 0;
  font-size: 14px;
  text-align: center;
  width: 120px;
  background: #fff;
  color: #000;
  border-radius: 4px;
}
#TOPPAGE .home-news .news-list li a .title {
  width: calc(100% - 270px);
}
@media (max-width: 768px) {
  #TOPPAGE .home-news .news-list li a {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
  }
  #TOPPAGE .home-news .news-list li a .title {
    width: 100%;
    font-size: 16px;
  }
}
#TOPPAGE .home-contents {
  padding: 120px 0;
}
@media (max-width: 768px) {
  #TOPPAGE .home-contents {
    padding: 60px 0;
  }
}
#TOPPAGE .home-contents .inner {
  display: flex;
  flex-direction: column;
  gap: 120px;
}
@media (max-width: 768px) {
  #TOPPAGE .home-contents .inner {
    gap: 80px;
  }
}
#TOPPAGE .home-contents .content-item {
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 56px;
}
#TOPPAGE .home-contents .content-item .section-title {
  font-size: 40px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
  margin-bottom: 8px;
}
#TOPPAGE .home-contents .content-item .text-box {
  flex: 1;
}
#TOPPAGE .home-contents .content-item .text-box .lead {
  color: #fff;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 500;
}
#TOPPAGE .home-contents .content-item .text-box .desc {
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
}
#TOPPAGE .home-contents .content-item .img-box {
  flex: 1;
}
#TOPPAGE .home-contents .content-item .img-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
#TOPPAGE .home-contents .content-item .view-more {
  margin-left: auto;
}
#TOPPAGE .home-contents .content-item.reverse {
  flex-direction: row-reverse;
}
#TOPPAGE .home-contents .content-item.reverse .view-more {
  margin-left: 0;
}
@media (max-width: 768px) {
  #TOPPAGE .home-contents .content-item {
    flex-direction: column;
    gap: 32px;
  }
  #TOPPAGE .home-contents .content-item .text-box {
    order: 2;
  }
  #TOPPAGE .home-contents .content-item .text-box .lead, #TOPPAGE .home-contents .content-item .text-box .desc {
    font-size: 16px;
  }
  #TOPPAGE .home-contents .content-item .img-box {
    order: 1;
  }
  #TOPPAGE .home-contents .content-item.reverse {
    flex-direction: column;
    gap: 32px;
  }
  #TOPPAGE .home-contents .content-item.reverse .text-box {
    order: 2;
  }
  #TOPPAGE .home-contents .content-item.reverse .text-box .lead, #TOPPAGE .home-contents .content-item.reverse .text-box .desc {
    font-size: 16px;
  }
  #TOPPAGE .home-contents .content-item.reverse .img-box {
    order: 1;
  }
}
#TOPPAGE .home-contact {
  padding: 50px 0;
}
#TOPPAGE .home-contact .contact-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: 80px 120px;
  background: url("../img/bg-contact.webp") no-repeat center/cover;
}
@media (max-width: 1024px) {
  #TOPPAGE .home-contact .contact-box {
    padding: 60px;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .home-contact .contact-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 0;
    gap: 52px;
  }
}
#TOPPAGE .home-contact .contact-info .section-title {
  font-size: 72px;
  font-family: "Roboto", sans-serif;
  margin-bottom: 24px;
  color: #fff;
}
#TOPPAGE .home-contact .contact-info .desc {
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 1024px) {
  #TOPPAGE .home-contact .contact-info .section-title {
    font-size: 60px;
  }
  #TOPPAGE .home-contact .contact-info .desc {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .home-contact .contact-info .section-title {
    font-size: 56px;
  }
  #TOPPAGE .home-contact .contact-info .desc {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .home-contact .contact-link {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #TOPPAGE .home-contact {
    padding: 32px 0;
  }
  #TOPPAGE .home-contact .inner {
    padding: 0 24px;
  }
}

/* -----------------------------
   404
----------------------------- */
#NOTFOUND, #CONTACT {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
}
#NOTFOUND .section, #CONTACT .section {
  flex: 1;
}/*# sourceMappingURL=style.css.map */