@charset "UTF-8";

/*--------------------
  Base
--------------------*/
:root {
    --width-viewport: 1920;
    --width-contet: 1640;
}
/* .page-contentspages h1 { */
h1 {
  margin: auto;
  font-size: 42px;
  font-weight: bold;
  text-align: left;
  padding: 0;
}
.img-max {
  width: 100%;
  height: auto;
}


/*--------------------
  Layout
--------------------*/
.l-column {
  width: calc( var(--width-contet) / var(--width-viewport) * 100vw);
  max-width: calc( var(--width-contet) * 1px );
  margin: 0 auto;
}
.l-row {
  display: flex;
}

.Page__wrap {
  margin: 0 0 176px;
	background-color:rgba(0,1,24,1.00);
}


.Hero__inner {
  background: var(--bg-img) no-repeat center;
  background-size: cover;
  position: relative;
}
.Hero__inner::before {
  content: '';
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(0,0,0,.4);
  position: absolute;
  top: 0;
  left: 0;
}



.Hero__inner::after {
  content: '';
  display: block;
  width: 100vw;
  min-height: 800px;
  max-height: 80vh;
  background: var(--bg-img) no-repeat center center / auto auto;
  background-size: contain;
  aspect-ratio: var( --bg-aspect-ratio);
  margin: 0 auto;
  position: inherit;
  z-index: 1;
}

@media only screen and (max-width: 640px) {
	
.Hero__inner::before {
  content: '';
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background-color: rgba(0,0,0,0);
  position: absolute;
  top: 0;
  left: 0;
}
	
.Hero__inner::after {
  content: '';
  display: block;
  width: 100vw;
  min-height: auto;
  max-height: auto;
  background: no-repeat center center / auto auto;
  background-size: contain;
  aspect-ratio: var( --bg-aspect-ratio);
  margin: 0 auto;
  position: inherit;
  z-index: 1;
}
}

/*--------------------
  Introduction
--------------------*/
.Introduction {
  margin: 0 auto 100px;
  padding: 176px 0;
  width: calc( 846 / var(--width-viewport) * 100vw);
  min-width: 846px;
}
.Introduction__en {
	color: #fff;
  font-size: 18px;
  font-weight: bold;
  font-family: Helvetica;
  margin: 0 0 30px
}
.Intoroduction__ttl {
	color: #fff;
  margin: 0 0 40px;
}
.Introduction__text {
	color: #fff;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .05em;
}
.Introduction__text:not(:last-child) {
  margin: 0 0 30px;
}

/*--------------------
  Style
--------------------*/
.Style__content {
  display: grid;
  grid-template-columns: calc( 840 / var(--width-contet) * 100%) 1fr;
  gap: 0 80px;
  margin-bottom: 300px;
}
.Style__textArea {
  padding: 80px 0 176px;
  width: calc( 846 / var(--width-viewport) * 100vw);
  min-width: 846px;
  margin: 0 auto;
}
.Style__text {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: .05em;
}
.Style__text:not(:last-child) {
  margin: 0 0 30px;
}
.Style__creditArea {
  margin: 30px 0 0;
}
.Style__creditArea a {
	color: #fff;
}
.Style__creditItem {
  font-family: Helvetica;
  font-size: 14px;
  margin: 0 0 8px;
}

/*--------------------
  Swiper
--------------------*/
.swiper-pagination {
  position: initial;
  text-align: right;
  margin: 5px 0 0;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica;
  font-weight: bold;
  background: inherit;
  color: #fff;
  opacity: 1;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: rgba(0,1,24,1.00);
  background: #fff;
}

@media only screen and (max-width: 640px) {
  /*--------------------
    Layout
  --------------------*/
  .l-column {
    width: calc( 100% - 60px);
    max-width: 100%;
  }
  .l-row {
    flex-direction: column;
  }

  /*--------------------
    Introduction
  --------------------*/
  .Introduction {
    margin: 0 auto 60px;
    padding: 80px 0;
    width: calc( 100% - 60px );
    min-width: auto;
	  margin-bottom: ;
  }
  .Introduction__en {
    font-size: 12px;
    margin: 0 0 16px;
  }
  .Intoroduction__ttl {
	  color: #fff;
    margin: 0 0 30px;
    font-size: 24px;
  }
  .Introduction__text {
    font-size: 16px;
  }

  /*--------------------
    Style
  --------------------*/
  .Style__content {
    display: block;
    margin: 0 0 100px;
  }
  .Style__block:not(:last-child) {
    margin: 0 0 40px;
  }
  .Style__textArea {
    padding: 80px 0;
    width: auto;
    min-width: auto;
  }
  .Style__text {
    font-size: 16px;
  }
  .Style__creditItem {
    font-size: 12px;
  }

  /*--------------------
    Swiper
  --------------------*/
  .swiper-pagination {
    margin: 10px 0 0;
    text-align: center;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.Title__Img {
	width: 36rem;
	display: block;
	margin-bottom: 40px;
}

@media only screen and (max-width: 640px) {
.Title__Img {
	width: 100%;
	display: block;
	margin:0 auto 30px;
}
}