@charset "UTF-8";
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 300;
  src: url("/wp/wp-content/themes/lion2025/fonts/ZenKakuGothicNew-Light.ttf")
    format("truetype");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 400;
  src: url("/wp/wp-content/themes/lion2025/fonts/ZenKakuGothicNew-Regular.ttf")
    format("truetype");
}
@font-face {
  font-family: "Zen Kaku Gothic New";
  font-weight: 500;
  src: url("/wp/wp-content/themes/lion2025/fonts/ZenKakuGothicNew-Medium.ttf")
    format("truetype");
}
@font-face {
  font-family: "Proxima N W01 Reg";
  font-weight: 400;
  src: url("/wp/wp-content/themes/lion2025/fonts/ProximaNW01Reg.ttf")
    format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  src: url("/wp/wp-content/themes/lion2025/fonts/OpenSans-Regular.ttf")
    format("truetype");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  background-color: rgb(240, 240, 240);
  font-family: "Proxima N W01 Reg", "Zen Kaku Gothic New" !important;
  color: rgb(82, 82, 82);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.hero-section {
  width: calc(100vw - 5rem);
  aspect-ratio: 16/5;
  max-height: 38.5rem;
  min-height: 18rem;
  height: auto;
  padding: 5rem 0 0 5rem;
  margin: 4rem 0 6rem auto;
  border-radius: 1rem 0 0 1rem;
  background-image: url("/wp/wp-content/themes/lion2025/images/hero_news.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: #fff;
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1rem 0 0 1rem;
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-section h2 {
  font-size: 4.8rem;
  font-weight: normal;
}

.hero-section p {
  font-size: 1.8rem;
}

header {
  background: linear-gradient(
    to bottom,
    rgb(240, 240, 240) 85%,
    rgba(240, 240, 240, 0.5) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 1.7rem;
  padding: 2rem 3rem 0 3rem;
  opacity: 0.85;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

header.header-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

#header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-direction: row;
  list-style: none;
}

.nav-list li {
  padding: 0 1.5rem 0 1.5rem;
}

.nav-list li a {
  text-decoration: none;
  color: black;
}

.nav-dropdown > .expandable {
  display: inline-block;
  padding-bottom: 0.5rem;
  cursor: pointer;
}

.nav-sns > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
}

.sns-icon {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0.2rem;
}

/* expand sub menu */
#sub-overview > li > a:hover,
#sub-aboutus > li > a:hover {
  background-color: yellow;
}

#burger-menu-btn,
.burger-overlay {
  display: none;
}

/* limit arrow display only when displayed as pc and tab */
@media screen and (min-width: 752px) {
  /* arrow decoration for expandable menu */
  .expandable::after {
    content: "";
    display: inline-block;
    width: 1.2rem;
    height: 1rem;
    margin: 0 0 0.4rem 0.8rem;
    vertical-align: middle;
    background: url("../images/arrow_down.svg") no-repeat center center/contain;
  }
}
/* limit hover behavior only when displayed as pc */
@media screen and (min-width: 1001px) {
  .expandable:hover::after,
  .expandable:focus::after {
    transform: rotate(180deg);
  }
  .nav-list > li:hover .expandable::after,
  .nav-list > li:focus-within .expandable::after,
  #sub-overview:hover ~ .expandable::after,
  #sub-aboutus:hover ~ .expandable::after {
    transform: rotate(180deg);
  }
  /* expand sub menu */
  .nav-list > li,
  #nav-overview,
  #nav-aboutus {
    position: relative;
  }
  #sub-overview,
  #sub-aboutus {
    display: none;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: -moz-max-content;
    width: max-content;
    min-width: 0;
    white-space: nowrap;
    background: #fff;
    z-index: 9999;
    padding: 1rem 2rem;
    border-radius: 1rem;
  }
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown:hover #sub-overview,
  .nav-dropdown:focus-within #sub-overview,
  .nav-dropdown:hover #sub-aboutus,
  .nav-dropdown:focus-within #sub-aboutus {
    display: block;
    list-style: none;
    font-size: 1.4rem;
    line-height: 3rem;
    pointer-events: auto;
  }
}
/* アコーディオン展開時の矢印回転 */
@media screen and (max-width: 1000px) {
  .nav-list {
    display: none !important;
  }
  .sns-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0.4rem 0 0.4rem 0.8rem;
  }
  /* burger menu */
  #burger-menu-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 3.2rem;
    height: 3.2rem;
    background: none;
    border: none;
    margin-left: 1.2rem;
    cursor: pointer;
    z-index: 11001;
  }
  .burger-bar {
    display: block;
    width: 2.2rem;
    height: 0.2rem;
    background: #222;
    margin: 0.3rem 0;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .burger-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 11000;
    justify-content: center;
    align-items: flex-start;
  }
  .burger-overlay.active {
    display: flex;
  }
  /* burger menu panel */
  .burger-menu-panel {
    background: rgba(240, 240, 240, 0.9);
    width: 40rem;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 2.4rem 0 0 0;
    z-index: 12000;
    min-height: 0;
  }
  #burger-close-btn {
    position: absolute;
    top: 3.6rem;
    right: 3.6rem;
    background: none;
    border: none;
    font-size: 2.4rem;
    cursor: pointer;
    z-index: 12000;
  }
  /* burger close button hover effect */
  #burger-close-btn img {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), filter 0.2s;
  }
  #burger-close-btn:hover img {
    transform: rotate(90deg);
    filter: brightness(0) saturate(100%) invert(27%) sepia(99%) saturate(7476%)
      hue-rotate(199deg) brightness(97%) contrast(101%);
  }
  #burger-menu-list {
    list-style: none;
    padding: 0;
    margin: 12rem 0 0 0;
    font-size: 2rem;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    line-height: 4rem;
  }
  #burger-menu-list > li {
    margin-bottom: 2rem;
    text-align: left;
  }
  /* burger menu drop down */
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
  }
  #sub-overview,
  #sub-aboutus {
    width: 100%;
    background-color: #fff;
    list-style: none;
    padding: 0 2rem;
    font-size: 1.6rem;
  }
  /* hide as default */
  #sub-overview,
  #sub-aboutus {
    display: none;
  }
  #sub-overview.ht-open,
  #sub-aboutus.ht-open {
    display: block;
  }
  #burger-nav-sns .sns-icon {
    display: none !important;
  }
  .expandable.ht-open::after {
    transform: rotate(180deg);
  }
}
@media screen and (max-width: 751px) {
  .sns-icon {
    display: none !important;
  }
  .burger-overlay {
    background: transparent;
  }
  .burger-menu-panel {
    width: 100vw;
  }
  #burger-menu-list {
    margin-top: 6rem;
    align-items: flex-start;
    padding-left: 2rem;
  }
  #burger-menu-list > li {
    font-size: 1.6rem;
  }
  .nav-dropdown {
    display: block;
  }
  #sub-overview,
  #sub-aboutus {
    display: block;
    background: transparent;
  }
  #burger-nav-sns > ul {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    list-style: none;
  }
  #burger-nav-sns .sns-icon {
    display: inline-block !important;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 5rem 0 5rem;
  opacity: 0.8;
}

.copy {
  width: 100%;
  text-align: right;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

#footer-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 5rem;
}

#footer-logo {
  width: 27%;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
}

#footer-nav {
  width: 58%;
  max-width: 82rem;
  min-width: 70rem;
}

.footer-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.4rem;
}

.footer-list > li {
  padding: 0 2.5rem;
  height: 100%;
  list-style: none;
}

.footer-list-en {
  margin-top: 0.6rem;
}

.footer-sub {
  margin-top: 1rem;
  font-size: 1.2rem;
  list-style: inside;
  list-style-type: "- ";
  line-height: 2.5rem;
}

.footer-nav-sns {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  #footer-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  #footer-logo {
    width: 100%;
    margin-bottom: 4rem;
  }
  #footer-nav {
    width: 100%;
  }
}
@media screen and (max-width: 751px) {
  .footer {
    padding: 2rem 5rem 0 5rem;
  }
  #footer-container {
    margin-bottom: 3rem;
  }
  #footer-logo {
    margin-bottom: 6rem;
  }
  #footer-nav {
    width: 100%;
    min-width: 100%;
  }
  .footer-list {
    flex-direction: column;
    font-size: 1.6rem;
  }
  .footer-list > li {
    display: block;
    width: 100%;
    min-height: 5rem;
    padding: 1rem 1rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
  .footer-list-en {
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
  }
  .footer-list-en > span {
    position: relative;
    top: 0.6rem;
  }
  .footer-list > li > span {
    position: relative;
    display: block;
    width: 100%;
    cursor: pointer;
  }
  .footer-list > li:not(:last-child) > span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: url("/wp/wp-content/themes/lion2025/images/plus.svg") no-repeat
      center center/contain;
    pointer-events: none;
  }
  .footer-list > li:not(:last-child) > span:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0.8rem;
    height: 0.8rem;
    background: url("/wp/wp-content/themes/lion2025/images/plus.svg") no-repeat
      center center/contain;
    pointer-events: none;
    transition: background 0.2s;
  }
  #footer-nav-top.open:after,
  #footer-nav-aboutus.open:after,
  #footer-nav-overview.open:after,
  #footer-nav-recruit.open:after {
    background: url("/wp/wp-content/themes/lion2025/images/minus.svg") no-repeat
      center center/contain;
  }
  .footer-sub {
    font-size: clamp(1.6rem, 4vw, 2.8rem);
    line-height: clamp(4rem, 12vw, 8rem);
    list-style: "・";
    padding: 2rem 0 clamp(0rem, 2vw, 1rem) 5rem;
  }
  #footer-sub-top,
  #footer-sub-aboutus,
  #footer-sub-overview,
  #footer-sub-recruit {
    height: 0;
    display: none;
  }
  #footer-sub-top.open,
  #footer-sub-aboutus.open,
  #footer-sub-overview.open,
  #footer-sub-recruit.open {
    height: auto;
    display: block;
  }
  .footer-nav-sns {
    display: block !important;
    margin: 5rem auto 0 auto;
  }
  .footer-nav-sns > ul {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  .footer-sns-icon {
    width: 4rem;
    height: 4rem;
    margin: 0.6rem;
  }
  #footer-container.aboutus {
    margin-bottom: 18rem;
  }
}
.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

main {
  flex-grow: 1;
  width: 100%;
  margin-bottom: 10rem;
  font-size: 1.8rem;
}

#news-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#news-section > .hero-section {
  background-image: url("/wp/wp-content/themes/lion2025/images/hero_news.jpg");
}

.news-body {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin: 0 auto;
  align-items: flex-start;
  width: 90%;
}

.news-nav {
  width: 30rem;
  margin-right: 4rem;
  font-family: "Open Sans", "Zen Kaku Gothic New" !important;
  font-weight: 400;
}

.news-list {
  width: 100%;
}

/* news nav */
.news-nav h3 {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1.8rem;
  padding: 0.5rem 0 0.5rem 1rem;
  font-weight: 500;
}

.news-nav ul {
  list-style: none;
  font-size: 1.8rem;
}

.news-nav ul li {
  padding: 2rem 0 0 2rem;
}

/* news list */
.news-list ul {
  list-style: none;
  font-size: 1.8rem;
}

.news-list li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2rem 0 2rem 1rem;
}

.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  list-style: none;
}

.pagination li {
  border: none;
}

.pagination a.active {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  width: 3.8rem;
  height: 3.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.date {
  font-family: "Open Sans" !important;
  font-weight: 400;
}

.cnt {
  font-family: "Zen Kaku Gothic New" !important;
  font-weight: 400;
}

/* news detail */
#news-detail-section {
  width: 90%;
  margin: 0 auto;
}

#news-detail-section p {
  margin-bottom: 4rem;
}

#news-detail-section h1 {
  font-size: 2.8rem;
  margin: 2rem 0 4rem 0;
}

#news-detail-section a:hover {
  text-decoration: underline;
}

#pagination-refer {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.pr-prev::before {
  content: "< ";
}

.pr-next::after {
  content: " >";
}

#news-detail-section img,
.metaslider {
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  max-width: 80rem;
  height: auto;
}

#news-detail-section img {
  width: 100%;
  margin-bottom: 4rem;
}

.metaslider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 4rem auto;
}

#news-detail-section > p:has(> img.alignnone),
#news-detail-section > p:has(> img.aligncenter) {
  text-align: center;
  margin: 0 auto 4rem auto;
}

@media screen and (max-width: 1000px) {
  .news-list li {
    display: flex;
    flex-direction: column;
  }
  .date {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
  }
}
@media screen and (max-width: 751px) {
  .news-body {
    flex-direction: column-reverse;
  }
  .news-nav {
    width: 100%;
    margin-top: 2rem;
  }
}
#project-section > .hero-section {
  background-image: url("/wp/wp-content/themes/lion2025/images/hero_project.jpg");
}

.project-container {
  width: 90%;
  margin: 0 auto;
}

.project-list {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2.4rem 0;
  margin-bottom: 10rem;
  list-style: none;
}

.project-list-item {
  width: calc(33.333% - 3.2rem);
  margin-right: 4.8rem;
  margin-bottom: 3.2rem;
  box-sizing: border-box;
}

.project-list-item:nth-child(3n) {
  margin-right: 0;
}

.project-list-item-pannel {
  position: relative;
}

.project-list-item .caption {
  position: absolute;
  top: 0;
  left: 0;
  background: yellow;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.project-list-item img {
  width: 100%;
  max-height: 40rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 1rem;
}

h3.title {
  font-size: 2.1rem;
  font-weight: 500;
  margin: 1rem 0;
}

.summary {
  font-size: 1.6rem;
}

.project-category-filter {
  list-style: none;
  display: flex;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.project-category-filter li {
  margin-right: 1rem;
  font-size: 1.6rem;
  cursor: pointer;
  background-color: #ccc;
  padding: 0.5rem 1.2rem;
  border-radius: 999rem;
  margin-bottom: 1rem;
}

.project-info {
  list-style: none;
}

.project-info > li > span {
  margin-right: 1rem;
}

@media screen and (max-width: 1000px) {
  .project-list-item {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 751px) {
  .project-container {
    width: 95%;
  }
  .project-list {
    width: 100%;
  }
}
#article-detail-section {
  width: 90%;
  margin: 0 auto;
}

#article-detail-section p {
  margin-bottom: 4rem;
}

#article-detail-section h1 {
  font-size: 2.8rem;
  margin: 2rem 0 4rem 0;
}

#article-detail-section h2 {
  font-size: 2.1rem;
}

#article-detail-section a:hover {
  text-decoration: underline;
}

#pagination-refer {
  width: 95%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.pr-prev::before {
  content: "< ";
}

.pr-next::after {
  content: " >";
}

#article-detail-section img,
.metaslider {
  border-radius: 1rem;
  overflow: hidden;
  text-align: center;
  max-width: 80rem;
  height: auto;
}

#article-detail-section img {
  width: 100%;
  margin-bottom: 4rem;
}

.metaslider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 4rem auto;
}

#article-detail-section > p:has(> img.alignnone),
#article-detail-section > p:has(> img.aligncenter) {
  text-align: center;
  margin: 0 auto 4rem auto;
}

#article-detail-section .category {
  margin-bottom: 2rem;
}

#article-detail-section .category > a {
  font-size: 1.6rem;
  cursor: pointer;
  background-color: #ccc;
  padding: 0.5rem 1.2rem;
  border-radius: 999rem;
  margin-bottom: 1rem;
}

#stories-section > .hero-section {
  background-image: url("/wp/wp-content/themes/lion2025/images/hero_stories.jpg");
}

.stories-category {
  list-style: none;
  display: flex;
  justify-content: space-between;
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: 90%;
  margin: 0 auto 5rem auto;
}

.stories-category li {
  width: 33%;
  border: 1px solid #ccc;
}

.stories-category li.active-category {
  background-color: yellow;
  border: 1px solid yellow;
  font-weight: 500;
}

.stories-category li a {
  text-decoration: none;
  color: black;
  display: block;
  text-align: center;
  padding: 1rem;
  width: 100%;
}

.stories-category li a:hover {
  text-decoration: underline;
}

.stories-container {
  width: 90%;
  margin: 0 auto;
}

.stories-list {
  width: 95%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2.4rem 0;
  margin-bottom: 10rem;
  list-style: none;
}

.stories-list-item {
  width: calc(33.333% - 3.2rem);
  margin-right: 4.8rem;
  margin-bottom: 3.2rem;
  box-sizing: border-box;
}

.stories-list-item:nth-child(3n) {
  margin-right: 0;
}

.stories-list-item-pannel {
  position: relative;
}

.stories-list-item .caption {
  position: absolute;
  top: 0;
  left: 0;
  background: yellow;
  padding: 0.4rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
}

.stories-list-item img {
  width: 100%;
  max-height: 40rem;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 3/2;
  display: block;
  border-radius: 1rem;
}

@media screen and (max-width: 751px) {
  .stories-container {
    width: 95%;
  }
  .stories-category {
    width: 95%;
  }
  .stories-list {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .stories-list-item {
    width: 100%;
    margin-right: 0;
  }
} /*# sourceMappingURL=style.css.map */
