@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;700&display=swap");
@import url(../js/vendors/lity/lity.min.css);
/* =====================================================
 * Foundation
 * =====================================================
*/
/*! minireset.css v0.0.4 | MIT License | github.com/jgthms/minireset.css */
html, body, p, ol, ul, li, dl, dt, dd, blockquote, figure, fieldset, legend, textarea, pre,
iframe, hr, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button, input, select, textarea {
  margin: 0;
}

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img, embed, object, video {
  height: auto;
  max-width: 100%;
}

iframe {
  max-width: 100%;
}

audio {
  max-width: 100%;
}

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
  text-align: left;
}

header, footer, main, aside {
  display: block;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 2;
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 767px) {
  body {
    font-size: 0.8125rem;
  }
}

body * {
  letter-spacing: .1em;
}

body a {
  color: inherit;
}

body img {
  vertical-align: bottom;
}

body i {
  font-style: normal;
}

html.is-menu-open, html.is-menu-open body {
  overflow: hidden;
}

/* =====================================================
 * Layout
 * =====================================================
*/
.l-wrapper {
  position: relative;
}

@media (max-width: 767px) {
  .l-wrapper {
    min-width: 320px;
  }
}

.l-wrapper::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  transition: opacity 300ms;
  pointer-events: none;
}

html.is-pageshow .l-wrapper::before {
  opacity: 0;
}

html.is-fadeout .l-wrapper::before {
  opacity: 1;
  pointer-events: auto;
}

.l-wrapper__container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-header {
  position: absolute;
  z-index: 2;
  width: 100%;
  padding: 36px 44px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .l-header {
    padding: 20px 25px;
  }
}

.l-header .l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header .l-header__logo {
  line-height: 0;
}

@media (max-width: 767px) {
  .l-header .l-header__logo {
    width: 136px;
  }
}

.l-header .l-header__body {
  display: flex;
}

.l-header .l-header__gnav__list {
  display: flex;
  flex-wrap: wrap;
}

.l-header .l-header__gnav__list__item a {
  font-size: 0.875rem;
  font-weight: bold;
  text-decoration: none;
}

.l-header .l-header__gnav__list__item a img {
  vertical-align: middle;
  margin-right: 10px;
  transform: translateY(-1px);
}

.l-header .l-header__gnav__list__item a:hover {
  text-decoration: underline;
}

.l-footer {
  background-color: #e7eaea;
  color: #666666;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 140px;
}

.l-footer__inner small {
  font-size: 0.8125rem;
  letter-spacing: .06em;
}

.l-main {
  flex: 1 1 auto;
}

/* =====================================================
 * Object/Component
 * =====================================================
*/
.c-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 236px;
  height: 50px;
  margin: 0;
  padding: 5px 15px;
  border: none;
  background: none;
  font: inherit;
  font-size: 14px;
  text-decoration: none !important;
  transition: background-color 200ms, color 200ms, opacity 200ms;
  cursor: pointer;
}

@media (max-width: 767px) {
  .c-btn {
    width: 216px;
  }
}

.c-btn > span {
  line-height: 1.375;
}

.c-btn::before {
  content: '';
  display: block;
  position: absolute;
  top: 25px;
  right: -36px;
  width: 76px;
  height: 1px;
  transition: transform 200ms;
}

@media (max-width: 767px) {
  .c-btn::before {
    right: -24px;
    width: 56px;
  }
}

.c-btn::after {
  content: '';
  display: block;
  position: absolute;
  top: 13px;
  right: -36px;
  width: 1px;
  height: 12px;
  transform-origin: right bottom;
  transform: rotate(-60deg);
  transition: transform 200ms;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

@media (max-width: 767px) {
  .c-btn::after {
    right: -24px;
  }
}

.c-btn:hover::before {
  transform: translateX(10px);
}

.c-btn:hover::after {
  transform: translateX(10px) rotate(-60deg);
}

.c-btn.white {
  border: 1px solid #fff;
  color: #fff;
}

.c-btn.white::before, .c-btn.white::after {
  background-color: #fff;
}

.c-btn.black {
  border: 1px solid #000;
  color: #000;
}

.c-btn.black::before, .c-btn.black::after {
  background-color: #000;
}

.c-ul > li {
  padding-left: 1em;
}

.c-ul > li::before {
  content: '･';
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  text-align: center;
  letter-spacing: 0;
}

.c-markList > li {
  display: flex;
}

.c-markList > li:not(:last-child) {
  margin-bottom: 1em;
}

.c-markList > li .__mark {
  flex: 0 0 auto;
  min-width: 1em;
  text-align: center;
}

.c-markList > li .__txt {
  flex: 1 1 auto;
}

.c-link {
  text-decoration: none;
}

.c-link[target="_blank"]::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-left: 6px;
  background-image: url(../img/ico_externalLink.png);
  background-repeat: no-repeat;
  background-size: contain;
  font-size: 0;
}

.c-link:hover {
  text-decoration: underline;
}

/* =====================================================
 * Object/Project
 * =====================================================
*/
.p-hero__inner {
  position: relative;
}

.p-hero__bg {
  position: relative;
  width: 100%;
  height: 100vh;
}

.p-hero__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-hero__cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/hero_mesh01.png);
  color: #ffffff;
}

.p-hero__en {
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .p-hero__en {
    width: calc(325/750 * 100vw);
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.p-hero__ja {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: .2em;
}

@media (max-width: 767px) {
  .p-hero__ja {
    font-size: 0.8125rem;
  }
}

.p-section {
  padding: 84px 44px 100px;
}

@media (max-width: 767px) {
  .p-section {
    padding: 36px 25px 70px;
  }
}

.p-section__ttl {
  margin-bottom: .75em;
  font-family: "Lato", sans-serif;
  font-size: 2.625rem;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .p-section__ttl {
    margin-bottom: 0.375em;
    font-size: 1.75rem;
  }
}

.p-section__inner {
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-section__inner {
    width: auto;
  }
}

.p-section__inner > :last-child {
  margin-bottom: 0;
}

.p-section__lede {
  text-align: center;
}

@media (max-width: 767px) {
  .p-section__lede {
    text-align: left;
  }
}

.p-section__subttl {
  margin-bottom: 2.5em;
  text-align: center;
}

@media (max-width: 767px) {
  .p-section__subttl {
    margin-bottom: 1.75em;
  }
}

.p-section__subttl:not(:first-child) {
  margin-top: 5em;
}

@media (max-width: 767px) {
  .p-section__subttl:not(:first-child) {
    margin-top: 2.5em;
  }
}

.p-section__subttl .__en {
  display: inline-block;
  border-bottom: 2px solid #479a91;
  line-height: 2;
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
}

@media (max-width: 767px) {
  .p-section__subttl .__en {
    font-size: 1.25rem;
  }
}

.p-section__subttl .__ja {
  display: block;
  line-height: 2.75;
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-section__subttl .__ja {
    font-size: 0.9375rem;
  }
}

.p-section--type1 {
  background-image: url(../img/bg_section01.png);
  background-repeat: no-repeat;
  background-position: center 30px;
}

@media (max-width: 767px) {
  .p-section--type1 {
    background-position: center 15px;
    background-size: 100% auto;
  }
}

.p-section--type2 {
  padding-bottom: 150px;
  background-image: url(../img/bg_project@pc.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #fff;
}

@media (max-width: 767px) {
  .p-section--type2 {
    padding-top: 56px;
    padding-bottom: 80px;
    background-image: url(../img/bg_project@sp.jpg);
  }
}

.p-section--type3 {
  padding-bottom: 150px;
}

@media (max-width: 767px) {
  .p-section--type3 {
    padding-bottom: 80px;
  }
}

.p-top__column {
  display: flex;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .p-top__column {
    margin: 0 25px;
  }
}

@media (min-width: 768px) {
  .p-top__column__item {
    width: calc((100% - 50px * 3) / 4);
  }
  .p-top__column__item:not(:nth-child(4n)) {
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .p-top__column__item {
    width: 100%;
  }
  .p-top__column__item:not(:last-child) {
    margin-bottom: 2.5em;
  }
}

.p-top__column__item__ico {
  margin-bottom: 24px;
  text-align: center;
}

@media (max-width: 767px) {
  .p-top__column__item__ico {
    margin-bottom: 15px;
  }
}

.p-top__column__item__ico img {
  height: 130px;
}

@media (max-width: 767px) {
  .p-top__column__item__ico img {
    height: 80px;
  }
}

.p-top__column__item__ttl {
  margin-bottom: .5em;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 767px) {
  .p-top__column__item__ttl {
    margin-bottom: 0.25em;
    font-size: .9375rem;
  }
}

.p-top__column__item__txt {
  font-size: .875rem;
}

@media (max-width: 767px) {
  .p-top__column__item__txt {
    font-size: 0.8125rem;
  }
}

.p-top__profile {
  max-width: 840px;
  margin: 0 auto 50px;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .p-top__profile {
    width: auto;
    line-height: calc(23/13);
    font-size: 0.8125rem;
  }
}

.p-top__profile__tr {
  display: flex;
}

@media (max-width: 767px) {
  .p-top__profile__tr {
    display: block;
  }
}

.p-top__profile__th {
  flex: 0 0 auto;
  width: 150px;
  margin-right: 10px;
  padding: 10px 15px 10px 32px;
  border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .p-top__profile__th {
    width: auto;
    margin-right: 0;
    padding: 10px 0 0;
    border-bottom: none;
  }
}

.p-top__profile__tr:first-child .p-top__profile__th {
  border-top: 1px solid #e5e5e5;
}

.p-top__profile__td {
  flex: 1 1 auto;
  padding: 10px 15px;
  border-bottom: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .p-top__profile__td {
    padding: 0 0 10px;
  }
}

.p-top__profile__tr:first-child .p-top__profile__td {
  border-top: 1px solid #e5e5e5;
}

@media (max-width: 767px) {
  .p-top__profile__tr:first-child .p-top__profile__td {
    border-top: none;
  }
}

.p-top__movie {
  position: relative;
  width: 960px;
  padding-top: 56.25%;
}

@media (max-width: 767px) {
  .p-top__movie {
    width: calc(100vw - 20px);
  }
}

.p-top__movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lity-wrap::before {
  margin-right: 0;
}

.lity-container {
  position: relative;
  transition: none;
}

.lity-close {
  position: absolute;
  top: -80px;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 0 !important;
  font-size: 0 !important;
}

@media (max-width: 767px) {
  .lity-close {
    top: -50px;
    width: 30px;
    height: 30px;
  }
}

.lity-close:active {
  top: -80px;
}

@media (max-width: 767px) {
  .lity-close:active {
    top: -50px;
  }
}

.lity-close::before, .lity-close::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 141.421356237%;
  height: 1px;
  background-color: #fff;
  transform-origin: center;
}

.lity-close::before {
  right: 0;
  transform-origin: top right;
  transform: rotate(-45deg);
}

.lity-close::after {
  left: 0;
  transform-origin: top left;
  transform: rotate(45deg);
}

.p-top__project {
  display: flex;
  max-width: 840px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .p-top__project {
    display: block;
    margin: 32px 25px 0;
  }
}

.p-top__project__head {
  flex: 0 0 auto;
}

.p-top__project__head__ttl {
  font-size: 0.9375rem;
  font-weight: bold;
}

@media (max-width: 767px) {
  .p-top__project__head__ttl {
    text-align: center;
  }
}

.p-top__project__inner {
  flex: 1 1 auto;
}

@media (min-width: 768px) {
  .p-top__project__inner {
    padding-left: 40px;
    margin-left: 40px;
    border-left: 1px solid #fff;
  }
}

@media (max-width: 767px) {
  .p-top__project__inner {
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #fff;
  }
}

.p-top__project__headline {
  font-weight: bold;
}

.p-top__project__txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
}

@media (max-width: 767px) {
  .p-top__project__txt {
    font-size: 0.8125rem;
  }
}

@media (max-width: 767px) {
  .p-top__project__btn {
    text-align: center;
  }
}

.p-top__project__btn:not(:last-child) {
  margin-top: 20px;
}

/* =====================================================
 * Object/Utiliiy
 * =====================================================
*/
.u-nowrap {
  overflow: hidden;
}

.u-breakall {
  word-break: break-all;
}

@media (max-width: 767px) {
  .u-pcOnly {
    display: none;
  }
}

@media (min-width: 768px) {
  .u-spOnly {
    display: none;
  }
}

.u-dB {
  display: block;
}

.u-dIb {
  display: inline-block;
}

.u-fwB {
  font-weight: bold;
}

@media (max-width: 767px) {
  br.u-pcbr {
    display: none;
  }
}

br.u-spbr {
  display: none;
}

@media (max-width: 767px) {
  br.u-spbr {
    display: block;
  }
}

.u-alLpc {
  text-align: left;
}

.u-alCpc {
  text-align: center;
}

.u-alRpc {
  text-align: right;
}

@media (max-width: 767px) {
  .u-alLpc {
    text-align: inherit;
  }
  .u-alCpc {
    text-align: inherit;
  }
  .u-alRpc {
    text-align: inherit;
  }
  .u-alLsp {
    text-align: left;
  }
  .u-alCsp {
    text-align: center;
  }
  .u-alRsp {
    text-align: right;
  }
}

.u-taL {
  text-align: left;
}

.u-taC {
  text-align: center;
}

.u-taR {
  text-align: right;
}

/*# sourceMappingURL=maps/common.css.map */
