@charset "UTF-8";

/*
COLORS
================================================ */
:root {
  --purple: #483285;
  --dark-purple: #392869;
  --green: #45A24F;
  --dark-green: #3c8c44;
  --light-blue: #F2F7F9;
  --blue: #005178;
  --light-grey: #EFEFEF;
  --grey: #BCBCBC;
  --light-black: #333;
  --black: #000;
  --white: #fff;
}

/*
BACKGROUND
================================================ */
.bg--purple {
  background: var(--purple);
}
.bg--green {
  background: var(--green);
}
.bg--light-blue {
  background: var(--light-blue);
}
.bg--blue {
  background: var(--blue);
}
.bg--light-grey {
  background: var(--light-grey);
}
.bg--light-black {
  background: var(--light-black);
}
.bg--white {
  background: var(--white);
}

/*
FONTS
================================================ */
.font-poppins {
  font-family: "Poppins", sans-serif;
}
:root {
  --fz12: calc(12 / 16 * 1rem);
  --fz14: calc(14 / 16 * 1rem);
  --fz16: calc(16 / 16 * 1rem);
  --fz20: calc(20 / 16 * 1rem);
  --fz24: calc(24 / 16 * 1rem);
  --fz28: calc(28 / 16 * 1rem);
  --fz32: calc(32 / 16 * 1rem);
  --fz40: calc(40 / 16 * 1rem);
  --fz60: calc(60 / 16 * 1rem);
  --fz120: calc(120 / 16 * 1rem);
}

/*
GENERAL STYLING
================================================ */
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-size: var(--fz16);
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-weight: 400;
  color: var(--light-black);
}
picture {
  line-height: 0;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: var(--light-black);
  transition: all 0.3s;
  text-decoration: none;
}
.max-width900,
.max-width1000,
.max-width1100 {
  margin: 0 auto;
}
.max-width900 {
  max-width: 900px;
}
.max-width1000 {
  max-width: 1000px;
}
.max-width1100 {
  max-width: 1100px;
}

@media (769px <= width) {
  .sp {
    display: none !important;
  }
}
@media (width < 769px) {
  .pc {
    display: none !important;
  }
}

/*
TITLE
================================================ */
.title {
  margin: 0;
  text-align: center;
}
.title.title-white {
  color: var(--white);
}
.title span {
  display: block;
}
.title .en {
  font-size: var(--fz60);
  font-weight: 300;
}
.title .ja {
  color: var(--purple);
  font-size: var(--fz14);
  font-weight: 600;
}
.title.title-white .ja {
  color: var(--white);
}

/*
BUTTON
================================================ */
.button {
  display: block;
  margin-inline: auto;
  padding: 20px 70px;
  width: fit-content;
  color: var(--white);
  font-size: var(--fz20);
  text-align: center;
  border-radius: 35px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.button:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.10);
  transform: translateY(-1px) scale(1.02);
}
.button.bg--purple:hover {
  background-color: var(--dark-purple);
}
.button.bg--green:hover {
  background-color: var(--dark-green);
}
.link-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 8px 6px;
  max-width: 190px;
  color: var(--light-black);
  letter-spacing: .1em;
  border-bottom: 1px solid var(--light-black);
}
.link-button::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0;
  border-left: 6px solid var(--light-black);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.link-button.link-button-white {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}
.link-button.link-button-white::after {
  border-left: 6px solid var(--white);
}
.link-button::after {
  transition: transform 0.3s;
}
.link-button:hover::after {
  transform: translateX(2px);
}





/*
HEADER
================================================ */
header {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 20px;
  background: var(--white);
  z-index: 999;
}
header .logo {
  width: 194px;
}
header .l-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
header .nav ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .nav__request a,
header .nav__contact a {
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-items: center;
align-items: center;
  padding: 8px 20px;
  width: 200px;
  color: var(--white);
  text-align: center;
  border-radius: 20px;
}
header .nav__request a span,
header .nav__contact a span {
	font-size:.7rem;
	margin-left:5px;
}
header .nav__request a:hover {
  background-color: var(--dark-purple);
}
header .nav__contact a:hover {
  background-color: var(--dark-green);
}

/* Language Select */
.lang-select select {
  position: relative;
  padding: 22px 55px 22px 26px;
  color: var(--white);
  line-height: 1.5;
  background-color: var(--light-black);
  border: none;
  appearance: none;
}
.lang-select::after {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 11px solid var(--white);
  border-bottom: 0;
}

/*
HERO
================================================ */
.hero {
  padding: 76px 40px;
  background: url('../img/hero.jpg') no-repeat center center / cover;
  background-image: image-set(
    url("../img/hero.jpg") 1x,
    url("../img/hero@2x.jpg") 2x
  );
  color: var(--white);
}
.hero__copy {
  margin: 0 0 40px;
  font-size: var(--fz40);
  font-weight: 600;
  line-height: 1.7;
}
.hero__text {
  margin: 0;
  line-height: 2.5;
}

/*
REQUEST
================================================ */
.request .button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 70px auto 100px;
}
.request .button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 27px;
  background-image: url(../img/icon_request.svg);
  background-size: 20px 27px;
}

/*
POINTS OF DIFFERENTIATION
================================================ */
#points {
  margin: 0 0 210px;
}
#points .title {
  margin: 0 0 110px;
}
#points .container {
  position: relative;
  padding: 80px 40px 60px;
}
#points .link-button {
    margin-top: 50px;
}
@media (width < 920px) {
  #points .container {
    padding: 0 40px 60px;
  }
  #points .container::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 60px;
    background-color: var(--white);
  }
}
#points .max-width900 {
  position: relative;
}
#points .points__text {
  margin-left: auto;
  max-width: 420px;
  color: var(--white);
}
@media (width < 920px) {
  #points .points__text {
    margin-left: 0;
    width: 100%;
  }
}
@media (769px <= width < 920px) {
  #points .points__text {
    text-align: center;
  }
}
#points .points__text--title {
  margin: 0 0 1em;
  font-size: var(--fz32);
  font-weight: 600;
}
#points .points__text p {
  margin: 0;
  line-height: 2.5;
}
#points .img-points {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#points .img-points img {
  width: 100%;
}
@media (width < 920px) {
  #points .img-points {
    position: static;
    transform: translateY(0);
    margin-bottom: 40px;
    z-index: 1;
  }
}
#points .img-points img {
  border-radius: 0 50px 0 50px;
}

/*
SERVICES
================================================ */
#service {
  position: relative;
  padding: 0 40px;
  overflow: hidden;
}
#service::before,
#service::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  background-color: var(--white);
}
#service::before {
  top: 0;
  height: 44px;
}
#service::after {
  bottom: 0;
  height: 100px;
}
#service .title {
  position: relative;
  margin-bottom: 56px;
  z-index: 1;
}
#service .description {
  margin: 0 0 56px;
  text-align: center;
  line-height: 2.5;
}
#service .service__list {
  position: relative;
  padding: 0;
  z-index: 1;
}
#service .service__item {
  display: flex;
  gap: 0 22.22%;
  padding: 40px;
  max-width: 900px;
  list-style: none;
  color: var(--white);
  border-radius: 20px;
  background-size: cover;
}
#service .service__item:nth-child(even) {
  margin-left: auto;
}
#service .service__item:nth-child(1) {
  background-image: url(../img/bg_service01.jpg);
  background-image: image-set(
    url("../img/bg_service01.jpg") 1x,
    url("../img/bg_service01@2x.jpg") 2x
  );
}
#service .service__item:nth-child(2) {
  background-image: url(../img/bg_service02.jpg);
  background-image: image-set(
    url("../img/bg_service02.jpg") 1x,
    url("../img/bg_service02@2x.jpg") 2x
  );
}
#service .service__item:nth-child(3) {
  background-image: url(../img/bg_service03.jpg);
  background-image: image-set(
    url("../img/bg_service03.jpg") 1x,
    url("../img/bg_service03@2x.jpg") 2x
  );
}
#service .service__item + .service__item {
  margin-top: 60px;
}
#service .service__number {
  margin: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--white);
  text-stroke: 1px var(--white);
  font-size: var(--fz120);
  line-height: 1;
}
#service .service__box {
margin-top: 70px;
}
#service .service__title {
  margin: 0 0 40px;
  font-size: var(--fz32);
  font-weight: 600;
}
#service .service__title::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 50px;
  height: 3px;
  background-color: var(--white);
}
#service .service__text {
  margin: 0;
  line-height: 2.5;
}

/*
CONSULTANTS
================================================ */
#consultant {
  padding: 140px 0 120px;
}
@media (width < 1200px) {
  #consultant {
    padding: 140px 40px 120px;
  }
}
#consultant .description {
  margin-bottom: 60px;
  text-align: center;
}

.swiper {
  margin-bottom: 60px;
  overflow: hidden;
}
.swiper-wrapper {
  margin-bottom: 40px;
}
.swiper__box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  color: var(--white);
}
.swiper .text {
  padding: 20px 30px;
}
.swiper .info {
  margin-bottom: 30px;
}
.swiper .info::after {
  content: "";
  display: block;
  margin-top: 20px;
  width: 50px;
  height: 5px;
  background-color: var(--white);
}
.swiper .name {
  margin: 0 0 8px;
  font-size: var(--fz24);
  font-weight: 600;
}
.swiper .profile {
  margin: 0;
  line-height: 1.7;
}
.swiper img {
  flex-shrink: 0;
  max-width: 280px;
  height: 100%;
  object-fit: cover;
}
.swiper-button {
  display: none;
}
@media (width < 1200px) {
  .swiper-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: relative;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-black);
  }
  .swiper-button-prev::after,
  .swiper-button-next::after {
    position: relative;
    content: '';
    display: block;
    background-image: url(../img/arrow.svg);
    width: 13px;
    height: 23px;
    background-size: 13px 23px;
  }
  .swiper-button-prev::after {
    transform: rotate(-180deg);
  }
  .swiper-button-prev::after {
    left: -1.5px;
  }
  .swiper-button-next::after {
    right: -1.5px;
  }
}
.swiper-slide:nth-child(odd) .swiper__box {
  background-color: var(--blue)
}

.swiper-slide:nth-child(even) .swiper__box {
  background-color: var(--purple)
}
#consultant .link-button {
  margin: 0 auto;
}
/*
CASE STUDIES
================================================ */
#case {
  padding: 110px 40px;
}
#case .title {
  margin-bottom: 70px;
}
#case .case__list {
  padding: 0;
  list-style: none;
}
#case .case__item {
  padding: 36px 40px;
  background: var(--white);
  border-radius: 20px;
}
#case .case__item + .case__item {
  margin-top: 36px;
}
#case .case__title {
  margin: 0 0 30px;
  padding: 0 0 0 18px;
  color: var(--blue);
  line-height: 1.7;
  font-size: var(--fz24);
  border-left: 7px solid var(--blue);
}
#case .case__box {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media (width < 900px) {
  #case .case__box {
    flex-direction: column;
  }
}

#case .case__box img {
  width: 100%;
  max-width: 400px;
}
#case .case__text {
  line-height: 1.7;
}
#case .case__info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 46px;
  padding: 15px 20px;
  font-size: var(--fz14);
  background: var(--light-grey);
  border-radius: 10px;
}
#case .case__info dt,
#case .case__info dd {
  display: inline-block;
}
#case .case__info dt {
  font-weight: 600;
}
#case .case__info dd {
  margin: 0;
}

/*
SERVICE FLOW
================================================ */
#flow {
  padding: 124px 40px 114px;
}
#flow .title {
  margin-bottom: 60px;
}
#flow .flow__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}
#flow .flow__item {
  display: flex;
  align-items: stretch;
  gap: 40px;
  padding: 26px 40px;
  border-radius: 10px;
  background-color: var(--white);
}
#flow .flow__content {
  display: flex;
  gap: 40px;
}
#flow .flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100px;
  min-width: 100px;
  font-size: var(--fz40);
  padding-right: 30px;
  border-right: 3px solid var(--light-black);
}
#flow .flow__icon {
  display: block;
  width: 88px;
  min-width: 88px;
  max-width: 88px;
  text-align: center;
}
#flow .flow__title {
  margin-bottom: .5em;
  font-size: var(--fz24);
  font-weight: 600;
}

/*
BLOG
================================================ */
#blog {
  padding: 100px 40px 146px;
}
#blog .title {
  margin-bottom: 60px;
}
#blog .blog__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px dashed var(--light-black);
}
#blog .blog__item:hover {
  background-color: var(--light-blue);
}
#blog .blog__content,
#blog .blog__info {
  display: flex;
  align-items: center;
  gap: 15px;
}
#blog .blog__info {
  flex-shrink: 0;
}
#blog .blog__category {
  flex-shrink: 0;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 4px 16px;
  font-size: var(--fz12);
  background-color: var(--white);
}
#blog .l-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: var(--light-black);
  border-radius: 50%;
}
#blog .arrow {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 12px;
}
#blog .arrow::before,
#blog .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.5px);
  right: -1px;
  width: 8.4px;
  height: 1px;
  border-radius: 9999px;
  background-color: var(--white);
  transform-origin: calc(100% - 0.5px) 50%;
}
#blog .arrow::before {
  transform: rotate(47.75deg);
}
#blog .arrow::after {
  transform: rotate(-47.75deg);
}

#blog .link-button {
  margin: 50px auto 0;
}

/*
RECRUIT
================================================ */
#recruit {
  padding: 0 40px;
}
#recruit .inner {
  margin: 0 auto;
  padding: 80px 25px;
  color: var(--white);
  text-align: center;
  background-image: url(../img/bg_recruit.jpg);
  background-image: image-set(
    url("../img/bg_recruit.jpg") 1x,
    url("../img/bg_recruit@2x.jpg") 2x
  );
  border-radius: 20px;
  background-size: cover;
}
#recruit .recruit__title {
  margin-bottom: 1.5em;
  font-size: var(--fz24);
  line-height: 1.4;
}
#recruit .recruit__text {
  line-height: 1.8;
}
#recruit .button {
  margin-top: 50px;
  color: var(--light-black);
}

/*
ELIQUENT Life Sciences
================================================ */
#eliquent-overview {
  padding: 110px 40px 70px;
}
#eliquent-overview .title {
  margin-bottom: 30px;
}
#eliquent-overview p {
  line-height: 1.7;
}
#eliquent-overview .button {
  margin-top: 70px;
}

/*
CONTACT US
================================================ */
#contact {
  padding: 100px 40px 76px;
  color: var(--white);
}
#contact .title {
  margin-bottom: 50px;
}
#contact .contact__form {
  margin: 0 auto;
  max-width: 564px;
  text-align: center;
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 0 1.5rem;
  background: #ffffff;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  font-family: 'Helvetica Neue', sans-serif;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--light-black);
  margin-bottom:.5rem;
}

.form-group .required {
  color: red;
  font-size: 0.9em;
  margin-left: 0.3em;
}

.form-control {
background-color: #e8ecf0;
border: none;
border-radius: 10px;
box-sizing: border-box;
color: #000;
font-size: 16px;
font-weight: 500;
height: auto;
line-height: 1em;
max-width: unset;
padding: 10px;
width: 100% !important;
}

.form-buttons {
  display: block;
  margin-top: 2rem;
}

.btn {
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  font-size: 1rem;
	letter-spacing: 2px;
}

.btn-confirm {
  background-color: #0073aa;
  color: white;
}

.btn-back {
  background-color: #bbb;
  color: #333;
}

.btn-submit {
  background-color: var(--green);
  color: white;
    display: block;
    margin: 0 auto;
}
/*
COMPANY
================================================ */
#company {
  padding: 60px 40px;
  color: var(--white);
}
#company .wrap-company {
  display: flex;
  gap: 100px;
}
#company .title {
  text-align: left;
}
#company address {
  font-style: normal;
  line-height: 1.8;
}

/*
Lower Page
================================================ */
.lower-page{
	padding:30px 0 90px;
}
.lower-page a{
	text-decoration: underline;
}
h1.lower-title{
	padding: 60px 40px;
    background: url(../img/hero.jpg) no-repeat center center / cover;
    background-image: image-set(url(../img/hero.jpg) 1x, url(../img/hero@2x.jpg) 2x);
    color: var(--white);
	font-size:2.4rem;
	text-align: center;
	letter-spacing: 2px;
}
.lower-page h2{
	color: #005178;
    font-size: 1.6rem;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--blue);
    margin: 40px 0 20px 0;
    padding: 5px;
    font-weight: 400;
}

/*
Blog
================================================ */
.flex-blog{
	display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-blog #main{
	width: 60%;
}
.flex-blog #side{
	width: 35%;
}
.blog-list .blog--link{
	text-decoration: none;
	display: block;
	padding:10px 10px 20px;
	border-top: 2px solid var(--blue);
}
.blog-list .blog__thumb{
	float: left;
	margin-right:10px;
}
.blog-list .blog__title{
	font-size:1.4rem;
	margin: 0 0 10px 0;
	color: var(--blue);
}
.blog-list .blog__title a{
	text-decoration: none;
}
.blog-list .blog__excerpt{
	margin: 0;
}
.blog-list .blog__time{
	display: block;
	font-weight: 500;
	text-align: right;
	color: var(--grey);
}
.tags{
	display: flex;
    display: -webkit-flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	font-size:0.7rem;
	margin: 0 0 8px 0;
	padding: 0;
}
.tags li{
	list-style: none;
}
.tags li a{
	display: inline-block;
	background-color:var(--light-grey);
	padding: 3px 10px;
	text-decoration: none;
	color: var(--light-black);
	margin:0 5px 5px 0;
	border-radius: 20px;
}
.entry-meta{
	display: block;
	font-weight: 500;
	text-align: right;
	color: var(--grey);
}
.breadcrumbs{
	padding: 0 20px;
	font-size:0.8rem;
	color: var(--light-black);
}
.breadcrumbs a{
	text-decoration: underline;
	font-weight: bold;
	color: var(--blue);
}