/* ---------------------------------------- */
/* top.css */
/* ---------------------------------------- */

/* ヘッダー */
.home:not(.nav-open) .g-header:not(.narrow) {
  background-color: rgba(255,255,255,0.0);
}
.g-header .site-logo a .svg-logo svg {
  transition: font-size 0.3s, color 0.3s;
}
.g-header .site-logo a .site-name .site-title,
.g-header .site-logo a .site-name .description {
  transition: color 0.3s;
}
.home:not(.nav-open) .g-header:not(.narrow) .site-logo a .svg-logo svg,
.home:not(.nav-open) .g-header:not(.narrow) .site-logo a .site-name .site-title,
.home:not(.nav-open) .g-header:not(.narrow) .site-logo a .site-name .description {
  color: #ffffff;
}
.home:not(.nav-open) .g-header:not(.narrow) #hamburger span {
  background-color: #FFFFFF;
}
@media (min-width: 992px) {
  .g-header .g-nav > ul > li > a .jp {
    transition: color 0.3s;
  }
  .home:not(.nav-open) .g-header:not(.narrow) .g-nav > ul > li > a .en,
  .home:not(.nav-open) .g-header:not(.narrow) .g-nav > ul > li > a .jp {
    color: #ffffff;
  }
  .home:not(.nav-open) .g-header:not(.narrow) {
    background-color: rgba(255,255,255,0.0);
  }
}
@media (max-width: 991px) {
  .home .g-header #hamburger span {  }
  .home.nav-open .g-header {}
  .home.nav-open .g-header #hamburger span { }
}

/* .front-page */
.front-page {
  padding-top: 0;
}

@media (min-width: 768px) {
    .front-page {
      padding-top: 0;
    }
}

/* .front-header */
.front-page .front-header {}

/* .mv */
.front-page .mv {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.front-page .mv .top_mv_slide {
  width: 100%;
  height: 100vh;
  height: 100svh;
}
.front-page .mv .slick-list {
  width: 100%;
}
.front-page .mv .img-wrap {}
.front-page .mv .img-wrap img {
  width: 100%;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
}

.front-page .mv .on-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px 0;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 1);
  opacity: 0;
}
.front-page .mv.is-loaded .on-content {
  animation: fadein 2s 0.5s ease-out both;
}
.front-page .mv .on-content .inner {
  text-align: center;
  color: #ffffff;
}
.front-page .mv .on-content .svg-logo {
  display: block;
  font-size: min(300px, 50vw);
  width: 1em;
  height: 1em;
  margin: 0 auto 0.05em;
}
.front-page .mv .on-content .svg-logo svg {
  display: block;
}
.front-page .mv .on-content .site-name {
  margin-bottom: 50px;
}
.front-page .mv .on-content .site-title {
  color: #ffffff;
  font-weight: 700;
  font-size: min(40px, 6.5vw);
  letter-spacing: 0.05em;
}
.front-page .mv .on-content .description {
  font-size: min(15px, 4.0vw);
  color: #ffffff;
}
.front-page .mv .on-content .p {
  color: #ffffff;
  line-height: 1.7;
  font-size: min(30px, 5.5vw);
  font-weight: 300;
  letter-spacing: 0.3em;
  margin: 0;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.7;
  }
}


/* .contact */
.front-page .contact {
  color: var(--color-text);
  padding: 100px 0;
  text-align: center;
  border-bottom: solid 1px var(--color-secborder);
}
.front-page .contact .mvc-wrap {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.front-page .contact .en-title {
  font-weight: 700;
  color: var(--color-cta);
  margin: 0;
}
.front-page .contact h2 {
  font-size: 50px;
  color: var(--color-text);
}
.front-page .contact .p {
  color: var(--color-text);
  margin: 20px 0 0;
}
.front-page .contact .more-wrap {
  margin: 50px 0;
}
.front-page .contact .ico-wrap {
  margin-top: 30px;
  line-height: 1;
}
.front-page .contact .ico-wrap ul {
  display: flex;
  font-size: 50px;
  list-style: none;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 1em;
}
.front-page .contact .ico-wrap li {
  margin: 0;
  padding: 0;
}
.front-page .contact .ico-wrap a {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 50px;
  width: 1em;
  height: 1em;
  color: var(--color-cta);
}
.front-page .contact .ico-wrap i {
  font-size: 50px;
  width: 1em;
  height: 1em;
}
@media (max-width: 1440px) {
  .front-page .contact .mvc-wrap .logo-wrap {
    left: -8.33%;
  }
}
@media (max-width: 767px) {
  .front-page .contact {
    padding: 75px 0;
  }
  .front-page .contact::before {
    border-width: 6vw 50vw;
  }
  .front-page .contact h2 {
    font-size: 30px;
    margin-bottom: 5px;
  }
  .front-page .contact p {
    font-size: 14px;
  }
  .front-page .contact .logo-wrap {
    bottom: calc(100% + 10px);
  }
  .front-page .contact .logo-wrap img {
    width: 80px;
  }
  .front-page .contact .ico-wrap {
    font-size: 30px;
  }
}

/* .front-body */
.front-page .front-body {
  padding: 75px 0;
}
@media (max-width: 991px) {
  .front-page .front-body {
    padding: 50px 0;
  }
}

/* section */
.front-page section {
  padding: 125px 0;
}
.front-page section .title-wrap {
  margin-bottom: 30px;
}
.front-page section .title-wrap .en-title {
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 0.25em;
  letter-spacing: 0.05em;
  color: var(--color-main);
}
.front-page section .title-wrap .jp-title {
  font-size: 38px;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}
.front-page section .body {
  line-height: 2;
  letter-spacing: 0.15em;
  margin: 0;
}
@media (max-width: 991px) {
  .front-page section {
    padding: 100px 0;
  }
  .front-page section .title-wrap .jp-title {
    letter-spacing: 0.05em;
  }
}
@media (max-width: 767px) {
  .front-page section {
    padding: 75px 0;
  }
  .front-page section .title-wrap {
    text-align: center;
  }
  .front-page section .title-wrap .en-title {
    font-size: 14px;
  }
  .front-page section .title-wrap .jp-title {
    font-size: 28px;
  }
}

/* .basic_sec */
.front-page .basic_sec {
  overflow: hidden;
}
.front-page .basic_sec .container > .row {
  position: relative;
}
.front-page .basic_sec .img-col {
}
.front-page .basic_sec .img-wrap {
  height: 100%;
}
.front-page .basic_sec .img-wrap img {
  width: 100%;
}
@media (max-width: 991px) {
    .front-page .basic_sec .img-wrap {
      margin-top: 30px;
      aspect-ratio: 1;
      max-height: 450px;
      width: 100vw !important;
      transform: translateX(-50%);
      left: 50%;
    }
}
@media (min-width: 992px) {
  .front-page .basic_sec .container > .row {
    flex-wrap: nowrap;
  }
  .front-page .basic_sec .img-col {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    flex-basis: calc(8.33% + 50vw + 20px);
    max-width: calc(8.33% + 50vw + 20px);
    height: calc(100% + 100px);
  }
  .front-page :is(.sec01, .sec03, .sec05, .sec07, .sec09, .sec2_01, .sec2_03, .sec2_05, .sec2_07, .sec2_09) .img-col {
    left: 41.67%;
  }
  .front-page :is(.sec02, .sec04, .sec06, .sec08, .sec10, .sec2_02, .sec2_04, .sec2_06, .sec2_08, .sec2_10) .row {
    flex-direction: row-reverse;
  }
  .front-page :is(.sec02, .sec04, .sec06, .sec08, .sec10, .sec2_02, .sec2_04, .sec2_06, .sec2_08, .sec2_10) .img-col {
    right: 41.67%;
  }
}

/* .about */
.front-page .about {
  overflow: hidden;
}
.front-page .about .container > .row {
  position: relative;
}
.front-page .about .text-col {
  margin-left: auto;
}
.front-page .about .img-col {
}
.front-page .about .img-wrap {
  height: 100%;
}
.front-page .about .img-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .front-page .about .container > .row {
    flex-wrap: nowrap;
  }
    .front-page .about .img-col {
      position: absolute;
      top: 50%;
      right: 41.67%;
      transform: translateY(-50%);
      display: flex;
      align-items: center;
      flex-basis: calc(8.33% + 50vw + 20px);
      max-width: calc(8.33% + 50vw + 20px);
      height: calc(100% + 100px);
    }
}
@media (max-width: 991px) {
    .front-page .about .img-wrap {
      margin-top: 30px;
      aspect-ratio: 1;
      max-height: 450px;
    }
}

/* .news */
.front-page .news {}
.front-page .news .title-wrap {
  text-align: center;
}
.front-page .news .news-list-wrap {
  margin-top: 75px;
}
.front-page .news .news-list-wrap ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.front-page .news .news-list-wrap ul li {
  border-top: solid 1px var(--color-text);
}
.front-page .news .news-list-wrap ul li:last-child {
  border-bottom: solid 1px var(--color-text);
}
.front-page .news .news-list-wrap ul li a {
  display: flex;
  padding: 15px 30px;
  opacity: 1;
}
.front-page .news .news-list-wrap ul li a .date {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  flex-basis: 8em;
  flex-shrink: 0;
  flex-grow: 0;
  font-weight: 700;
  font-size: 0.9em;
  padding-top: 0.1em;
}
.front-page .news .news-list-wrap ul li a .title {
  font-weight: 400;
}
@media (max-width: 767px) {
    .front-page .news .news-list-wrap ul li a {
      display: block;
      padding: 15px 0;
    }
    .front-page .news .news-list-wrap ul li a span {
      display: block;
    }
    .front-page .news .news-list-wrap ul li a .date {
      margin-bottom: 0.125em;
    }
}
@media (min-width: 768px) {
  .front-page .news .news-list-wrap ul li a {
    transition: color 0.3s, background-color 0.3s;
  }
  .front-page .news .news-list-wrap ul li a:hover {
    color: var(--color-main);
    background-color: var(--color-gray);
  }
}
@media (min-width: 992px) {
  .front-page .news .news-list-wrap ul {
    font-size: 18px;
  }
}

/* .news */
.front-page .news {
  padding-top: 75px;
}
.front-page .news + .news {
}
.front-page .news .title-wrap {
  text-align: center;
}
.front-page .news .news-list-wrap {
  margin-top: 75px;
}
.front-page .news .news-list-wrap > .row {}
.front-page .news .news-list-wrap > .row > * {}
.front-page .news .news-list-wrap article {
  position: relative;
  margin-bottom: 60px;
}
.front-page .news .news-list-wrap article .category {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.front-page .news .news-list-wrap article .category ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -2px;
}
.front-page .news .news-list-wrap article .category ul li {
  flex-basis: auto;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0 2px 2px;
  margin: 0;
}
.front-page .news .news-list-wrap article .category ul li a {
  font-size: 0.8em;
  display: block;
  padding: 5px 10px;
  line-height: 1em;
  background-color: var(--color-main);
  color: #ffffff;
}
.front-page .news .news-list-wrap article .category ul li a.news {
  background-color: #cc0000;
}
.front-page .news .news-list-wrap article > a {
  display: block;
  opacity: 1;
}
.front-page .news .news-list-wrap article .entry-header {
  margin-bottom: 20px;
}
.front-page .news .news-list-wrap article .entry-content {}
.front-page .news .news-list-wrap article .thumbnail {
  overflow: hidden;
}
.front-page .news .news-list-wrap article .thumbnail img {
  object-fit: cover;
  aspect-ratio: 16/9;
}
.front-page .news .news-list-wrap article .title-wrap {
    margin-bottom: 15px;
}
.front-page .news .news-list-wrap article .date {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  margin-bottom: 0.25em;
  letter-spacing: 0.05em;
  color: var(--color-main);
}
.front-page .news .news-list-wrap article .entry-title {
  font-size: 24px;
  margin-bottom: 0;
  letter-spacing: 0.1em;
}
.front-page .news .news-list-wrap article .entry-text {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.15em;
  margin: 0;
}
.front-page .news .news-list-wrap article .tags {
  display: flex;
  margin-bottom: 60px;
}
.front-page .news .news-list-wrap article .tags .tags-title {
  display: none;
}
.front-page .news .news-list-wrap article .tags > ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 -0.5em;
}
.front-page .news .news-list-wrap article .tags > ul > li {
  padding: 0 0.5em;
}
.front-page .news .news-list-wrap article .tags > ul > li > a {
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.25em;
  letter-spacing: 0.05em;
  color: var(--color-main);
}

@media (min-width: 768px) {
  .front-page .news .news-list-wrap article a .thumbnail img {
    transition: transform 0.3s;
  }
  .front-page .news .news-list-wrap article a:hover .thumbnail img {
    transform: scale(1.1);
  }
  .front-page .news .news-list-wrap article a .entry-content {
    transition: opacity 0.3s;
  }
  .front-page .news .news-list-wrap article a:hover .entry-content {
    opacity: 0.6;
  }
}
@media (max-width: 767px) {
  .front-page .news .news-list-wrap article {
    margin-bottom: 40px;
  }
  .front-page .news .news-list-wrap article .entry-header {
    margin-bottom: 15px;
  }
  .front-page .news .news-list-wrap article .title-wrap {
    margin-bottom: 10px;
  }
  .front-page .news .news-list-wrap article .entry-title {
    font-size: 20px;
  }
}

/* .class */
.front-page .class {}