@charset "utf-8";
/*****************************************************************************
CSS only for /ew/pewbct/index.html
*****************************************************************************/

/* Set
----------------------------------------*/
.basic-page {
  font-family: 'Noto Sans JP', sans-serif !important;
}
.basic-page * {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
picture {
  display: block;
}
button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

dialog {
  width: auto;
  height: auto;
  padding: unset;
  border: unset;
  background-color: unset;
  color: unset;
  opacity: 0;
  transition: opacity .5s ease-in-out;
}
dialog[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
dialog::backdrop {
  background: rgb(0 0 0 / 1);
  transition: background .5s ease-in-out;
}
dialog.js-modalActive {
  opacity: 1;
}
dialog.js-modalActive::backdrop {
  background: rgb(0 0 0 / .8);
}
body:has(dialog[open]) {
  overflow: hidden;
}

.Container {
  max-width: 976px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .Container {
    margin: 0 20px;
  }
}

/* Fv
----------------------------------------*/
.Fv {
  position: relative;
  margin-top: 32px;
}
@media screen and (max-width: 750px) {
  .Fv {
    margin-top: 58px;
  }
}
.Fv__movie {
  aspect-ratio: 16 / 9;
}
.Fv__movie video {
  width: 100%;
  height: 100%;
}
.Fv__scroll {
  position: absolute;
  left: 4.27083vw;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .Fv__scroll {
    display: none;
  }
}
.Fv__scroll span {
  position: relative;
  padding-bottom: 112px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  writing-mode: vertical-rl;
}
.Fv__scroll span::before,
.Fv__scroll span::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 180px;
}
.Fv__scroll span::before {
  background-color: #ccc;
}
.Fv__scroll span::after {
  z-index: 2;
  background-color: #fff;
  animation: scroll 2.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* SecTitle
----------------------------------------*/
.SecTitle {
  display: inline-block;
  line-height: 1.5;
}
.SecTitle__main {
  font-size: 42px;
  font-weight: 800;
}
@media screen and (max-width: 750px) {
  .SecTitle__main {
    font-size: 34px;
  }
}
.SecTitle__sub {
  position: relative;
  margin-top: 10px;
  padding-left: 110px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
@media screen and (max-width: 750px) {
  .SecTitle__sub {
    padding-left: 87px;
    font-size: 13px;
  }
}
.SecTitle__sub::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 90px;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  .SecTitle__sub::before {
    width: 72px;
  }
}

/* Btn
----------------------------------------*/
.BtnArea {
  margin-top: 40px;
}
@media screen and (max-width: 750px) {
  .BtnArea {
    text-align: center;
  }
}
.BtnArea--center {
  text-align: center;
}

.Btn01 {
  display: inline-block;
  position: relative;
  padding: 8px 51px;
  border: 2px solid #0181a1;
  border-radius: 100vmax;
  min-width: 280px;
  max-width: 100%;
  background-color: #0181a1;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  transition: background-color .4s, color .4s;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .Btn01 {
    min-width: 224px;
  }
}
.Btn01--large {
  min-width: 360px;
}
@media screen and (max-width: 750px) {
  .Btn01--large {
    width: 315px;
    min-width: auto;
  }
}
.Btn01:where(:hover, :focus-visible) {
  background-color: #fff;
  color: #0181a1;
}

.Btn01::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.Btn01[target="_blank"]::after,
button:where(.Btn01)::after {
  display: none;
}

.Btn01[target="_blank"] > img,
button:where(.Btn01) > img {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  filter: invert(100%) sepia(0%) saturate(7449%) hue-rotate(164deg) brightness(118%) contrast(96%);
}
.Btn01[target="_blank"]:where(:hover, :focus-visible) > img,
button:where(:hover, :focus-visible) > img {
  filter: invert(41%) sepia(25%) saturate(2330%) hue-rotate(153deg) brightness(89%) contrast(99%);
}

/* News
----------------------------------------*/
.News {
  padding: 157px 0 150px;
}
@media screen and (max-width: 750px) {
  .News {
    padding: 83px 0 57px;
  }
}
.News__wrapper {
  display: grid;
  grid-template-columns: 28% 1fr;
}
@media screen and (max-width: 750px) {
  .News__wrapper {
    grid-template-columns: 1fr;
  }
}
.News__body {
  padding-top: 11px;
}
@media screen and (max-width: 750px) {
  .News__body {
    padding-top: 44px;
  }
}

.InfoList {
  border-top: 1px solid #e5e5e5;
}
.InfoList > div {
  display: grid;
  grid-template-columns: 19% 1fr;
  gap: 0 20px;
  margin-top: 23px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .InfoList > div {
    grid-template-columns: 1fr;
    margin-top: 19px;
    padding-bottom: 20px;
    font-size: 15px;
  }
}
.InfoList dt {
  font-weight: 600;
  letter-spacing: 1px;
}
@media screen and (max-width: 750px) {
  .InfoList dt {
    margin-bottom: 4px;
  }
}
.InfoList a {
  color: #000;
  background-image: linear-gradient(90deg, #000, #000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size .32s ease-in-out;
}

/* ----- animation ----- */
.InfoList a:where(:hover, :focus, :active) {
  background-size: 100% 1px;
}

/* Intro
----------------------------------------*/
.Intro {
  position: relative;
  padding: 150px 0 174px;
}
@media screen and (max-width: 750px) {
  .Intro {
    padding: 57px 0 81px;
  }
}
.Intro::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/ew/pewbct/top/img/bg_gradient.png) no-repeat left top / cover;
  top: 11.82291vw;
  right: -5.05208vw;
  width: min(1197px, 62.34375vw);
  height: min(1149px, 96.47355%);
}
@media screen and (max-width: 750px) {
  .Intro::after {
    top: min(360px, 96vw);
    right: max(-332px, -88.53333vw);
    width: min(838px, 223.33333vw);
    height: min(805px, 89.94413%);
  }
}
.Intro__inner {
  position: relative;
  z-index: 1;
  max-width: 976px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .Intro__inner {
    margin: 0 10px;
  }
}
.Intro__title {
  text-align: center;
}
.Intro__text {
  margin-top: 75px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .Intro__text {
    margin-top: 49px;
  }
}
.Intro__text .Intro__emphasis {
  margin-bottom: 82px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .Intro__text .Intro__emphasis {
    margin-bottom: 64px;
    font-size: 27px;
  }
}
.Intro__text p {
  margin-bottom: 68px;
}
@media screen and (max-width: 750px) {
  .Intro__text p {
    margin-bottom: 40px;
  }
}
.Intro__text > *:last-child {
  margin-bottom: 0;
}

/* Company
----------------------------------------*/
.Company {
  padding: 174px 0 200px;
}
@media screen and (max-width: 750px) {
  .Company {
    padding: 81px 0 150px;
  }
}
.Company__wrapper {
  display: grid;
  grid-template-columns: 28% 1fr;
}
@media screen and (max-width: 750px) {
  .Company__wrapper {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 750px) {
  .Company__text {
    margin-top: 36px;
  }
}
.Company__name {
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .Company__name {
    line-height: 1.8;
  }
}
.Company__name p:nth-child(1) {
  font-size: 18px;
}
.Company__name p:nth-child(2) {
  margin-top: 17px;
  font-size: 15px;
}
@media screen and (max-width: 750px) {
  .Company__name p:nth-child(2) {
    margin-top: 13px;
  }
}
.Company__detail {
  display: grid;
  grid-template-columns: max-content 1fr;
  margin-top: 25px;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .Company__detail {
    margin-top: 31px;
  }
}
.Company__detail dt {
  grid-column: 1;
}
.Company__detail dd {
  grid-column: 2;
}
.Company__img {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  margin-top: 34px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .Company__img {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}

/* Business
----------------------------------------*/
.Business {
  padding: 200px 0;
  border-top-right-radius: 390px 155px;
  border-bottom-left-radius: 390px 155px;
  background-color: #001f31;
}
@media screen and (max-width: 750px) {
  .Business {
    padding: 150px 0;
    border-top-right-radius: 220px 120px;
    border-bottom-left-radius: 220px 120px;
  }
}
.Business__inner {
  max-width: 1920px;
  padding: 0 min(100px, 5.20833%);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .Business__inner {
    padding: 0;
  }
}
.Business__title {
  margin-bottom: 140px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .Business__title {
    margin-bottom: 97px;
    padding: 0 20px;
  }
}
.Business__sec + .Business__sec {
  margin-top: 70px;
}
@media screen and (max-width: 750px) {
  .Business__sec + .Business__sec {
    margin-top: 35px;
  }
}

/* Service
----------------------------------------*/
.Service {
  position: relative;
  padding-top: 41px;
}
@media screen and (max-width: 750px) {
  .Service {
    padding-top: 0;
  }
}
.Service--left {
  padding-right: 12.32558%;
}
@media screen and (max-width: 750px) {
  .Service--left {
    padding-right: 20px;
  }
}
.Service--right {
  padding-left: 12.32558%;
}
@media screen and (max-width: 750px) {
  .Service--right {
    padding-left: 20px;
  }
}

.Service__wrapper {
  display: flex;
  gap: 0 4.44297%;
}
@media screen and (max-width: 750px) {
  .Service__wrapper {
    flex-direction: column-reverse;
    gap: 38px 0;
    padding: 35px 0 80px;
    background-color: #fff;
  }
}
.Service--right > .Service__wrapper {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .Service--left > .Service__wrapper {
    border-radius: 0 25px 25px 0;
  }
  .Service--right > .Service__wrapper {
    flex-direction: column-reverse;
    border-radius: 25px 0 0 25px;
  }
}

.Service__text {
  flex: 1;
  display: flex;
  position: relative;
  z-index: 1;
}
.Service--left .Service__text {
  justify-content: end;
}
@media screen and (max-width: 750px) {
  .Service--left .Service__text {
    justify-content: start;
    padding: 0 30px 0 50px;
  }
  .Service--right .Service__text {
    justify-content: end;
    padding: 0 50px 0 30px;
  }
}

.Service__text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: calc(100% + 56.74418%);
  height: 100%;
  z-index: -1;
  border-radius: 50px;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .Service__text::after {
    display: none;
  }
}
.Service--left .Service__text::after {
  left: 0;
}
.Service--right .Service__text::after {
  right: 0;
}

.Service__detail {
  width: 56.74418%;
  min-width: 375px;
  padding: 82px 0 100px;
}
@media screen and (max-width: 750px) {
  .Service__detail {
    width: auto;
    min-width: auto;
    padding: 0;
  }
}
.Service__body {
  margin-top: 40px;
}
.Service__body > p {
  margin-bottom: 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.65;
}
@media screen and (max-width: 750px) {
  .Service__body > p {
    line-height: 1.9;
  }
}
.Service__body > *:last-child {
  margin-bottom: 0;
}

.Service__img {
  align-self: baseline;
  position: relative;
  z-index: 1;
  width: min(581px, 38.52785%);
  margin-top: -41px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .Service__img {
    width: calc(100% - 30px);
  }
  .Service--left .Service__img {
    margin: 0 -20px 0 auto;
    border-radius: 10px 0 0 10px;
    text-align: right;
  }
  .Service--right .Service__img {
    margin: 0 auto 0 -20px;
    border-radius: 0 10px 10px 0;
  }
}

.BoxList {
  display: grid;
  gap: 7px;
  margin: 22px 0 10px;
}
@media screen and (max-width: 750px) {
  .BoxList {
    margin: 28px 0 10px;
  }
}
.BoxList--col2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 750px) {
  .BoxList--col2 {
    grid-template-columns: 1fr;
  }
}
.BoxList--col5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 750px) {
  .BoxList--col5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.BoxList__item {
  padding: 12px 40px 24px;
  border: 1px solid #ccc;
  border-radius: 0 10px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .BoxList__item {
    padding: 24px 26px 25px;
  }
}
.BoxList--col2 .BoxList__item {
  padding: 8px 10px;
}
@media screen and (max-width: 750px) {
  .BoxList--col2 .BoxList__item {
    padding: 10px 10px;
  }
}
.BoxList--col5 .BoxList__item {
  padding: 21px 10px;
}
@media screen and (max-width: 750px) {
  .BoxList--col5 .BoxList__item {
    padding: 19px 10px;
  }
}
.BoxList__item .BoxList__category:only-child {
  text-align: center;
}

.BoxList__category {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .BoxList__category {
    font-size: 16px;
  }
}

.Business__movie {
  margin-top: 100px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .Business__movie {
    margin-top: 80px;
    padding: 0 30px;
  }
}

/* ModalArea
----------------------------------------*/
.ModalArea__inner {
  max-width: 976px;
}
@media screen and (max-width: 976px) {
  .ModalArea__inner {
    width: calc(100% - 20px);
  }
}
.ModalArea__wrapper {
  display: flex;
  flex-direction: column-reverse;
}
.ModalArea__movie {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 976px) {
  .ModalArea__movie iframe {
    width: 100%;
    height: 100%;
  }
}
.ModalArea__close {
  align-self: flex-end;
}
.ModalArea__close span {
	position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  font-size: 0;
}
.ModalArea__close button {
  position: relative;
  width: 50px;
	height: 50px;
	transition: all 0.2s ease-in-out;
}
.ModalArea__close button:before,
.ModalArea__close button:after {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 25px;
	width: 2px;
	height: 40px;
	background: #fff;
	transition: background 0.2s ease-in-out;
}
.ModalArea__close button:before {
	transform: rotate(-45deg);
}
.ModalArea__close button:after {
	transform: rotate(45deg);
}

/* Case
----------------------------------------*/
.Case {
  position: relative;
  padding: 178px 0 200px;
}
@media screen and (max-width: 750px) {
  .Case {
    padding: 135px 0 150px;
  }
}
.Case::after {
  content: "";
  display: inline-block;
  position: absolute;
  background: url(/ew/pewbct/top/img/bg_gradient.png) no-repeat left top / cover;
  bottom: -9.47916vw;
  left: 5.88541vw;
  width: min(910px, 47.39583vw);
  height: min(821px, 80.09756%);
}
@media screen and (max-width: 750px) {
  .Case::after {
    bottom: max(-225px, -60vw);
    left: max(-308px, -82.13333vw);
    width: min(638px, 170.13333vw);
    height: min(576px, 59.44272%);
  }
}
.Case__inner {
  position: relative;
  z-index: 1;
  max-width: 1016px;
  margin: 0 auto;
  padding: 0 120px;
  box-sizing: content-box;
}
@media screen and (max-width: 750px) {
  .Case__inner {
    padding: 0 20px;
  }
}
.Case__head {
  padding: 0 20px;
}
@media screen and (max-width: 750px) {
  .Case__head {
    padding: 0;
  }
}
.Case__body {
  margin-top: 30px;
}

@media screen and (max-width: 750px) {
  .Card {
    display: flex;
    flex-direction: column-reverse;
    gap: 25px 0;
  }
}
.Card__wrapper {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  margin: 0 20px;
  box-shadow: 20px 0px 18px -10px rgb(0 0 0 / .04), -20px 0px 18px -10px rgb(0 0 0 / .04);
}
@media screen and (max-width: 750px) {
  .Card__wrapper {
    margin: 0;
  }
}
.Card__item {
  max-width: 312px;
  border-radius: 10px;
  box-shadow: 0px 0px 18px 10px rgb(0 0 0 / .04);
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .Card__item {
    max-width: none;
  }
}
.Card__link {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  height: 100%;
  padding: 43px 20px 22px;
  transition: opacity .4s;
}
@media screen and (max-width: 750px) {
  .Card__link {
    padding: 32px 15px 17px;
  }
}
.Card__link:where(:hover, :focus, :active) {
  opacity: .75;
}
.Card__head {
  padding: 0 25px;
}
@media screen and (max-width: 750px) {
  .Card__head {
    padding: 0 10px;
  }
}
.Card__title {
  color: #0181a1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .Card__title {
    font-size: 16px;
  }
}
.Card__body {
  flex: 1;
  padding: 0 25px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .Card__body {
    font-size: 14px;
    padding: 0 10px;
  }
}
.Card__foot {
  color: #000;
  text-align: right;
}
.Card__more {
  position: relative;
  padding-right: 23px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
}
@media screen and (max-width: 750px) {
  .Card__more {
    font-size: 13px;
  }
}
.Card__more::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

/* ----- slide ----- */
@media screen and (max-width: 750px) {
  .splide__arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
  }
}
.splide__arrow {
  display: grid;
  place-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  margin: auto;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 0px 18px 10px rgb(0 0 0 / .04);
  transition: opacity .4s;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .splide__arrow {
    position: static;
    width: 60px;
    height: 60px;
    margin: unset;
  }
}
.splide__arrow--prev {
  left: -120px;
}
.splide__arrow--next {
  right: -120px;
}
.splide__arrow:where(:hover, :focus, :active) {
  opacity: .75;
}

.splide__arrow::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #0181a1;
  border-right: 2px solid #0181a1;
}
.splide__arrow--prev::after {
  transform: rotate(-135deg);
}
.splide__arrow--next::after {
  transform: rotate(45deg);
}

.splide__arrow > svg {
  display: none;
}

/* animation
----------------------------------------*/
.js-animation {
	opacity: 0;
}

.js-fadeIn {
  transform: translateY(65px);
  transition: opacity 0.3s ease-out, transform 0.4s ease-out;
}

.js-slideToRight {
  transform: translateX(-150px);
}
.js-slideToLeft {
  transform: translateX(150px);
}

.Service__text.js-animation {
  transition: opacity .4s ease-out, transform .7s ease-out;
}
.Service__img.js-animation {
  transition: opacity .5s ease-out .76s, transform .9s ease-out .76s;
}
@media screen and (max-width: 750px) {
  .Service__img.js-animation {
    transition: opacity .5s ease-out, transform .9s ease-out;
  }
}

.js-animation.js-itemShow {
	opacity: 1;
  transform: translateX(0) translateY(0);
}
