@charset "UTF-8";
/* ==========================================================================
   Variables
   ========================================================================== */
@import "subpage.css";
:root {
  --main-blue: #1976d2;
  --light-blue: #e0f0fa;
  --light-gray: #f5f5f5;
  --text-dark: #333;
  --text-light: #666;
  --white: #fff;
}

/* Media Query Variables */
/* ==========================================================================
   Reset & Base
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--light-blue);
  position: relative;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

#main {
  padding: 20px 15px;
}

p {
  margin-bottom: 10px;
}

.bold {
  font-weight: bold;
}

/* ==========================================================================
   Container & Layout
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
  color: var(--main-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  align-items: center;
  padding: 0 10px;
  margin-bottom: 90px;
  /* Main Content */
}
.hero .main-content {
  margin-top: 50px;
  max-width: 1450px;
  width: 100%;
  margin: auto;
  position: relative;
  border: 5px solid #fff;
  border-radius: 40px;
}
.hero .main-content::before {
  content: "";
  background-image: url(/img/hero_connect.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 730px;
  height: 280px;
  margin-bottom: -10px;
  bottom: -9px;
  position: absolute;
  z-index: 1;
  left: -50px;
}
@media (max-width: 800px) {
  .hero .main-content::before {
    width: 0;
  }
}
.hero .main-content .hero-body {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 20px 70px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .hero .main-content .hero-body {
    flex-direction: column-reverse;
    padding-bottom: 50px;
  }
}
@media (max-width: 800px) {
  .hero .main-content .hero-body {
    padding-bottom: 0px;
    z-index: 0;
  }
}
@media (max-width: 600px) {
  .hero .main-content .hero-body {
    padding: 0px 20px;
  }
}
@media (max-width: 800px) {
  .hero .main-content {
    border: 0px solid #fff;
  }
  .hero .main-content .logo {
    position: relative;
    top: -30px;
  }
}
.hero .left-section {
  flex: 1;
  position: relative;
}
@media (max-width: 900px) {
  .hero .left-section {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .hero .right-section {
    max-width: 500px;
  }
}
@media (max-width: 1000px) {
  .hero .right-section {
    max-width: 400px;
  }
}
.hero .logo {
  width: 200px;
  height: auto;
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .logo {
    border-radius: 10px !important;
  }
  .logo img {
    width: 100px !important;
  }
  .hero .main-content .logo {
    width: -moz-fit-content !important;
    width: fit-content !important;
    margin-bottom: 0 !important;
  }
}
.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero__text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.nav-item {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #2196f3;
}

/* ==========================================================================
   Map Section
   ========================================================================== */
.map-section {
  background: var(--light-gray);
  padding: 80px 0;
}

.map__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.map__image {
  position: relative;
}

.map__text h2 {
  font-size: 2rem;
  color: var(--main-blue);
  margin-bottom: 20px;
}

.map__text p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background: var(--main-blue);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services {
  padding: 80px 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.service-card::before {
  content: "";
  background-repeat: no-repeat;
  width: 200px;
  height: 160px;
  margin-bottom: 20px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-card:nth-child(-n+2) {
  margin-bottom: 90px;
}
@media (max-width: 1000px) {
  .service-card:nth-child(3) {
    margin-bottom: 90px;
  }
}

.tentai::before {
  background-image: url(/img/service-transfer.svg);
}
@media (max-width: 1000px) {
  .tentai {
    margin-top: 60px;
  }
}

.tenpo::before {
  background-image: url(/img/service-purchase.svg);
}

.master::before {
  background-image: url(/img/service-master.svg);
}

.parking::before {
  background-image: url(/img/service-parking.svg);
}

.service-card__title {
  font-size: 1.5rem;
  color: var(--main-blue);
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
}

.service-card__text {
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-card__btn {
  width: 50px;
  height: 50px;
  background: var(--main-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  position: absolute;
  left: 46%;
  bottom: -10px;
}

.service-card__btn:hover {
  background: #1565c0;
  transform: scale(1.1);
}

/* ==========================================================================
   News Section
   ========================================================================== */
.news {
  background: var(--light-gray);
  padding: 80px 0;
}

.news__list {
  max-width: 800px;
  margin: 0 auto;
}

.news__item {
  background: var(--white);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.news__item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.news__date {
  background: var(--main-blue);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.news__title {
  flex: 1;
  color: var(--text-dark);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background: var(--main-blue);
  color: var(--white);
  padding: 60px 0;
}

.contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.contact__content::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}
@media (max-width: 1000px) {
  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__content::after {
    width: 60%;
    height: 1px;
    top: 160px;
  }
}

.contact__text {
  text-align: center;
}

.contact__text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.contact__text p {
  margin-bottom: 30px;
  opacity: 0.9;
}

.contact__info {
  text-align: center;
}

.contact__phone {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact__hours {
  opacity: 0.8;
  margin-bottom: 30px;
}

.btn--white {
  background: var(--white);
  color: var(--main-blue);
}

.btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--light-blue);
  padding: 40px 0;
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__logo img {
  height: 40px;
}

.footer__nav .nav__list {
  gap: 30px;
}

.footer__copy {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #90caf9;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
  background: var(--main-blue);
  padding: 120px 0 80px;
  text-align: center;
  color: var(--white);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: bold;
}

.page-header__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23ffffff" opacity="0.1"/></svg>');
}

/* ==========================================================================
   Content Sections
   ========================================================================== */
.content-section {
  padding: 80px 0;
}

.content-section:nth-child(even) {
  background: var(--light-gray);
}

.content__intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.content__intro h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--main-blue);
}

.content__intro p {
  color: var(--text-light);
}

.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 60px 0;
  flex-wrap: wrap;
}

.process-step {
  background: var(--main-blue);
  color: var(--white);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 120px;
  font-weight: bold;
}

.process-arrow {
  font-size: 1.5rem;
  color: var(--main-blue);
}

.points-list {
  margin: 60px 0;
}

.point-item {
  margin-bottom: 40px;
}

.point-item h3 {
  color: var(--main-blue);
  font-size: 1.3rem;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.point-item h3:before {
  content: "POINT";
  position: absolute;
  left: 0;
  top: 0;
  background: var(--main-blue);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: normal;
}

.point-item p {
  color: var(--text-light);
  padding-left: 30px;
}

.simulation-table {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  margin: 40px 0;
}

.simulation-table table {
  width: 100%;
  border-collapse: collapse;
}

.simulation-table th {
  background: var(--main-blue);
  color: var(--white);
  padding: 15px;
  text-align: center;
  font-weight: bold;
  border-right: 1px solid rgba(255, 255, 255, 0.2); /* ヘッダーに薄い白の仕切り */
}

.simulation-table th:last-child {
  border-right: none; /* 最後の列の仕切りを削除 */
}

.simulation-table td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
  border-right: 1px solid #ddd; /* セルに仕切り線を追加 */
}

.simulation-table td:last-child {
  border-right: none; /* 最後の列の仕切りを削除 */
}

.simulation-table tr:nth-child(even) {
  background: var(--light-gray);
}

.area-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.area-images img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
/* Tablet */
@media (max-width: 1000px) {
  .nav__list {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero__content,
  .map__content,
  .contact__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero__text h1 {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .process-flow {
    flex-direction: column;
  }
  .process-arrow {
    transform: rotate(90deg);
  }
  .area-images {
    grid-template-columns: 1fr;
  }
  .service-card__title {
    margin-top: 20px;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .container {
    padding: 0 15px;
  }
  .section {
    padding: 60px 0;
  }
  .hero__text h1 {
    font-size: 2rem;
  }
  .page-header {
    padding: 100px 0 60px;
  }
  .page-header h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
  .service-card {
    padding: 30px;
  }
  .contact__content {
    gap: 30px;
  }
  .contact__phone {
    font-size: 2rem;
  }
  .footer__content {
    flex-direction: column;
    gap: 20px;
  }
  .footer__nav .nav__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .news__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .simulation-table {
    font-size: 0.9rem;
  }
  .simulation-table th,
  .simulation-table td {
    padding: 10px 5px;
  }
}
/* アニメーション用のCSS */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  animation: ripple-animation 0.6s linear;
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.error {
  border-color: #ff4444 !important;
  background-color: #fff5f5 !important;
}

.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

/* ==========================================================================
   Header
   ========================================================================== */
ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  letter-spacing: 0.1em;
}

.hamburger {
  margin: 20px auto 0;
  width: 100%;
  max-width: 1200px;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
}

.logo {
  background-color: #fff;
  padding: 10px 20px;
  border-radius: 22px;
}
.logo img {
  width: 160px;
  position: relative;
  top: 4px;
}

.hamburger .btn-gNav {
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 400ms;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
}
.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 10px;
  transition: all 400ms;
}
.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}
.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}
.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}
.hamburger .btn-gNav.open span:nth-child(1) {
  background: #ffffff;
  top: 6px;
  transform: rotate(-45deg);
}
.hamburger .btn-gNav.open span:nth-child(2), .hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: #ffffff;
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

.gNav .gNav-menu {
  display: flex;
  justify-content: space-between;
}
.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 10px;
}
.gNav .gNav-menu li a {
  color: #000;
}

@media screen and (max-width: 800px) {
  .btn-gNav {
    display: block;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 3;
    padding-top: 50px;
    transition: 0.3s;
  }
  .gNav.open {
    right: 0;
  }
  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    /*justify-content: center;*/
  }
  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
  }
  .gNav .gNav-menu li a {
    color: #fff;
  }
  .open2.btn-gNav span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .open2.btn-gNav span:nth-child(2) {
    background: #ffffff;
    top: 6px;
    opacity: 0; /* 第2スパンを非表示にする */
  }
  .open2.btn-gNav span:nth-child(3) {
    background: #ffffff;
    top: 20px;
    transform: rotate(45deg) translate(-5px, -5px);
  }
}
/* ===================================
   固定ページ専用スタイル
   (.page class が付いている場合のみ適用)
   =================================== */
/* 固定ページでの.headerスタイル変更 */
.page .header {
  position: absolute;
}

.page .header > .hamburger {
  position: relative;
  z-index: 1;
}

/* 固定ページヘッダーセクション */
.page .page-header {
  position: relative;
  height: 300px;
  background: var(--main-blue);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 左側の建物イラスト */
.page .page-header::after {
  content: "";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background-image: url("/img/head_l.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  z-index: 1;
}

/* 右側の建物イラスト */
.page .building-right {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) scaleX(1);
  width: 200px;
  height: 200px;
  background-image: url("/img/head_r.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.6;
  z-index: 1;
}

/* ページタイトル */
.page .page-title {
  position: relative;
  z-index: 1;
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
  letter-spacing: 4px;
}

/* フロントページを除外（より具体的に） */
.page:not(.home) .header {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 2;
  height: 63px;
  width: 100%;
}
@media (max-width: 800px) {
  .page:not(.home) .header {
    left: initial;
    transform: none;
  }
}

.page:not(.home) .header > .hamburger {
  position: relative;
  z-index: 1;
}
.page:not(.home) .header > .hamburger .gNav {
  margin: auto 0;
}
.page:not(.home) .header > .hamburger .gNav a {
  color: #fff;
}
.page:not(.home) .header > .hamburger .btn-gNav span {
  background: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .page .page-header {
    height: 200px;
  }
  .page .page-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .page .page-header::after,
  .page .building-right {
    width: 150px;
    height: 150px;
  }
  .page .page-header::after {
    left: -30px;
  }
  .page .building-right {
    right: -30px;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.header-top .hamburger-top {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.header-top .hamburger-top .logo-top {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  z-index: 10;
}
.header-top .hamburger-top .logo-top img {
  height: 40px;
  width: auto;
}
.header-top .hamburger-top .btn-gNav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
}
@media screen and (min-width: 601px) {
  .header-top .gNav-menu-top {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .header-top .gNav-menu-top li {
    margin: 0 30px;
  }
  .header-top .gNav-menu-top li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .header-top .gNav-menu-top li a:hover {
    color: #0066cc;
  }
  .header-top .btn-gNav {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .header-top .hamburger-top .logo-top {
    position: static;
    transform: none;
    font-size: 28px;
  }
  .header-top .btn-gNav {
    display: block;
  }
  .header-top .gNav-menu-top {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
  }
  .header-top .gNav-menu-top li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
  }
  .header-top .gNav-menu-top li a {
    color: #fff;
  }
}
.home .header .hamburger,
.page-template-default.page-id-2 .header .hamburger {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.home .header .hamburger .logo,
.page-template-default.page-id-2 .header .hamburger .logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  z-index: 10;
}
.home .header .hamburger .logo img,
.page-template-default.page-id-2 .header .hamburger .logo img {
  height: 40px;
  width: auto;
}
.home .header .hamburger .btn-gNav,
.page-template-default.page-id-2 .header .hamburger .btn-gNav {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 12;
}
@media screen and (min-width: 800px) {
  .home .header .gNav-menu,
  .page-template-default.page-id-2 .header .gNav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  .home .header .gNav-menu li,
  .page-template-default.page-id-2 .header .gNav-menu li {
    margin: 0 30px;
  }
  .home .header .gNav-menu li a,
  .page-template-default.page-id-2 .header .gNav-menu li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
  }
  .home .header .gNav-menu li a:hover,
  .page-template-default.page-id-2 .header .gNav-menu li a:hover {
    color: #0066cc;
  }
  .home .header .btn-gNav,
  .page-template-default.page-id-2 .header .btn-gNav {
    display: none;
  }
}

.front-page-custom .header {
  position: relative !important;
}
.front-page-custom .header .hamburger {
  display: block;
}
.front-page-custom .header .hamburger .logo {
  display: none;
}

@media screen and (max-width: 800px) {
  .home .header .hamburger .logo,
  .page-template-default.page-id-2 .header .hamburger .logo {
    position: static;
    transform: none;
    font-size: 28px;
  }
}
.wp-block-list {
  list-style: circle;
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}/*# sourceMappingURL=style.css.map */