@charset "UTF-8";

/* 共通
------------------------------------------------------ */
/* ----------------------- */
/* base
/* ----------------------- */
body {
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  color: #000;
  letter-spacing: 0.13em;
}

body.noscroll {
  overflow: hidden;
}

img,
svg {
  width: 100%;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}

a:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

input,
select,
textarea {
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

.sec-ttl-en {
  color: #999;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.31em;
  position: relative;
}

.sec-ttl-en:before {
  content: "";
  position: absolute;
  top: 6.2px;
  left: -15.5px;
  width: 9px;
  height: 9px;
  background-color: #75c0c1;
  border-radius: 50%;
}

.pageTtl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
}

.spBlock {
  display: none;
}

.btn {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  width: 246px;
  height: 59px;
  line-height: 59px;
  display: block;
  border-radius: 29px;
  background-color: #75c0c1;
  box-sizing: border-box;
  text-align: center;
  transition: 0.2s;
  position: relative;
}

.btn:after {
  content: "→";
  position: absolute;
  top: 0;
  right: 21px;
  font-size: 14px;
  font-weight: normal;
}

.btn:hover {
  background-color: #429c9d;
  transition: 0.4s;
}

.btn--lg {
  width: 325px;
}

.btn--sm {
  width: 214.5px;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
}

.bold {
  font-weight: bold;
}

.mb10 {
  margin-bottom: 10px;
}

/* ----------------------- */
/* header
/* ----------------------- */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 106px;
  z-index: 20;
  transition: 0.3s ease;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0px 3px 9px #e6e6e6;
  transition: 0.4s ease;
}

.header-inner {
  height: 100%;
  align-items: center;
  display: flex;
  padding: 0 28px 0 45px;
}

.logo {
  width: 197px;
  height: 43px;
  margin-right: auto;
  transition: 0.2s;
}

.logo:hover {
  opacity: 0.6;
  transition: 0.4s;
}

.nav-item {
  display: flex;
  align-items: center;
}

.nav-item li:not(:last-child) {
  margin-right: 20px;
}

.nav-item a {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  transition: 0.2s;
  letter-spacing: 0.13em;
}

.nav-item .nav-link:hover {
  transition: 0.4s ease;
  color: #75c0c1;
}

.nav-item .nav-link:after {
  content: '';
  width: 0;
  transition: all 0.4s ease;
  border-bottom: 3px solid #75c0c1;
  display: block;
  padding-top: 3px;
}

.nav-item .nav-link:hover:after {
  width: 100%;
  border-bottom: 3px solid #75c0c1;
}

.contact-btn {
  color: #000;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  background-color: #f5c92c;
  width: 168px;
  height: 46px;
  line-height: 46px;
  border-radius: 23px;
  letter-spacing: 0.13em;
}

.contact-btn:hover {
  color: #000;
  background-color: #fadc6f;
  transition: 0.4s;
}

/* ----------------------- */
/* footer
/* ----------------------- */

.footer {
  width: 100%;
  padding: 43px 0 91px;
  background-color: #fff;
}

.footer-inner {
  margin: 0 auto;
  width: 300px;
}

.footer-img-wrapper {
  display: flex;
  margin-bottom: 38px;
}

.footer-img1 {
  width: 96px;
  height: 45px;
  margin-right: auto;
  transition: 0.2s;
}

.footer-img2 {
  width: 122px;
  height: 37px;
  padding-top: 10px;
  transition: 0.2s;
}

.footer-img1:hover,
.footer-img2:hover {
  opacity: 0.5;
  transition: 0.4s;
}

.copyright {
  font-size: 12px;
  line-height: 0.13em;
  text-align: center;
  line-height: 1;
}

/* ----------------------- */
/* pageHeading
/* ----------------------- */

.pageHeading {
  margin: 160px 0 125px;
  position: relative;
  height: 235px;
}

.pageHeading__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.recruitPage .pageHeading__bg {
  width: 94.8%;
}

.servicePage .pageHeading__bg {
  width: 100%;
}

.pageHeading__ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.pageHeading__ttl-en {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.31em;
  margin-bottom: 27px;
}

.pageHeading__ttl-ja {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
}

@media (min-width: 1680px) {
  .pageHeading {
    margin-bottom: 17vh;
  }

  .pageHeading__ttl {
    top: 57%;
  }
}


/* ----------------------- */
/* message
/* ----------------------- */

.message {
  margin-bottom: 71px;
}

.recruitPage .message {
  margin-bottom: 89px;
}

.message__ttl {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.14em;
  text-align: center;
}

.message__txt {
  font-size: 24px;
  font-weight: bold;
  line-height: 2.45;
  letter-spacing: 0.13em;
  text-align: center;
  margin-top: 63px;
}

.message .btn {
  margin: 64px auto 0;
}

.recruitLink {
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 70px auto 0;
}

.recruitLink__item a {
  color: #75c0c1;
}

.recruitLink__item:not(:last-child) a:after {
  content: "|";
  color: #999;
  padding-left: 10px;
}

.recruitLink__item a:hover {
  color: #429c9d;
  transition: 0.3s;
}

/* ----------------------- */
/* state
/* ----------------------- */

.state {
  width: 100%;
  box-sizing: border-box;
}

.state1 {
  padding: 65px 0 83px;
  background-color: #f5fafa;
}

.state2 {
  background-image: url(../img/state-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 67px 0 47px;
  margin-bottom: 85px;
}

.state__ttl {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.07em;
  line-height: 1;
  font-family: "游明朝体", sans-serif;
  margin-bottom: 19px;
}

.state__ttl--sm {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
  font-family: 'Noto Sans JP', sans-serif;
}

.state__list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.state__item {
  flex: 0 1 31.5%;
  max-width: 360px;
  align-self: stretch;
}

.state__itemImg {
  width: 100%;
  height: 230px;
  margin-bottom: 21px;
}

.state__itemImg img {
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.state__item a:hover {
  opacity: 0.7;
}

.state__date {
  color: #999;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
  margin-bottom: 15px;
}

.state__itemTtl {
  color: #000;
  font-weight: bold;
  line-height: 1.62;
  letter-spacing: 0.05em;
}

.state .btn {
  margin: 0 auto;
}

/* --------------------------------------------------- */




/* トップページ
------------------------------------------------------ */

/* ----------------------- */
/* mv
/* ----------------------- */

.mv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.mv-slider li {
  width: 100%;
  height: 100vh;
}

.mv-slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-ttl {
  position: absolute;
  bottom: 111px;
  right: 88px;
  z-index: 1;
}

.mv-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 489px;
}

.mv-bg img {
  position: absolute;
  bottom: 0;
  height: 100%;
}


.scBar {
  position: absolute;
  bottom: 123px;
  left: 27px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.13em;
  z-index: 1;
  height: 190px;
  writing-mode: vertical-lr;
}

.scBar::after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 36%;
  width: 1px;
  height: 84px;
  background: #000;
  animation: move 1.7s cubic-bezier(1, 0.2, 0.4, 1) infinite;
}

@keyframes move {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* ----------------------- */
/* concept
/* ----------------------- */

.concept-wrapper {
  margin: 63px 0 96px;
  position: relative;
}

.concept-bg {
  position: absolute;
  top: 19px;
  width: 100%;
  height: 604px;
}

.concept-content {
  display: flex;
  margin: 0 auto;
  max-width: 1190px;
}

.concept-txt {
  margin-top: 19px;
  margin-right: auto;
}

.concept-txt p {
  font-size: 18px;
  font-weight: bold;
  line-height: 2.5;
  letter-spacing: 0.13em;
}

.concept-txt p:first-of-type {
  margin: 34px 0 40px;
}

.concept-img-wrapper {
  position: relative;
}

.concept-img {
  width: 475px;
  height: 390px;
}

.concept-img-wrapper .team {
  position: absolute;
  top: 154px;
  right: 47px;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
}

.concept-img-wrapper .name {
  position: absolute;
  top: 182px;
  right: 145px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.13em;
}


/* ----------------------- */
/* research
/* ----------------------- */

.research-wrapper {
  margin-bottom: 83px;
  position: relative;
  width: 100%;
}

.research-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 507px;
  height: 613px;
  z-index: -1;
}

.research-ttl-wrapper {
  display: flex;
  align-items: flex-end;
  margin-left: 406px;
  margin-bottom: 34px;
  max-width: 1010px;
}

.research-ttl-ja {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.13em;
  margin-right: auto;
  line-height: 1;
}

.research-ttl-ja span {
  font-size: 32px;
  letter-spacing: 0.07em;
  font-family: "游明朝体", sans-serif;
}

.research-ttl-wrapper .sec-ttl-en:before {
  content: "";
  background-color: #f5c92c;
}

.research-slider {
  width: 1300px;
  width: 1293px;
  position: relative;
}

.slide-area {
  margin-left: 310px;
  overflow: hidden;
  height: 420px;
  padding: 10px 10px 10px 94px;
}

.prev-arrow,
.next-arrow {
  position: absolute;
  width: 42px;
  height: 42px;
  left: -94px;
  z-index: 10;
  cursor: pointer;
  transition: 0.2s;
}

.prev-arrow {
  top: 136px;
}

.next-arrow {
  top: 213px;
  transform: rotate(180deg);
}


.prev-arrow:hover,
.next-arrow:hover {
  opacity: 0.2;
  transition: 0.3s;
}

.research-card {
  width: 280px !important;
  height: 420px;
  box-sizing: border-box;
  box-shadow: 2px 2px 14px #eaeaea;
  background-color: #fff;
  transition: 0.2s;
  margin-right: 39px;
  margin: 5px 39px 5px 5px;
}

.research-card:hover {
  opacity: 0.6;
  transition: 0.4s;
}

.card-thumb {
  width: 100%;
  height: 181px;
}

.card-thumb img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-detail {
  padding: 25px 14px 15px 15px;
}

.card-date {
  color: #999;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.13em;
}

.card-ttl {
  color: #000;
  font-weight: bold;
  line-height: 1.62;
  letter-spacing: 0.05em;
  margin: 7px 0;
}

.card-description {
  color: #999;
  font-size: 13px;
  line-height: 1.69;
  letter-spacing: 0.05em;
}

.readmore {
  color: #999;
  font-size: 12px;
  font-weight: bold;
  margin-top: 36px;
  text-align: right;
  letter-spacing: 0.13em;
}

.research-btn {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  width: 214px;
  height: 58px;
  line-height: 58px;
  display: block;
  border-radius: 29px;
  background-color: #75c0c1;
  margin: 43px auto 0;
  text-align: center;
  transition: 0.2s;
  position: relative;
}

.research-btn:after {
  content: "→";
  position: absolute;
  top: 0;
  right: 22px;
  font-size: 14px;
  font-weight: normal;
}

.research-btn:hover {
  background-color: #429c9d;
  transition: 0.4s;
}

/* ----------------------- */
/* service
/* ----------------------- */

.service-wrapper {
  margin-bottom: 220px;
  height: 715px;
}

.service-bg-wrapper {
  position: relative;
}

.service-bg {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  height: 235px;
  z-index: -3;
}

.service-bg img {
  height: 100%;
}

.service-img1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 560px;
  height: 688px;
  z-index: -2;
}

.service-img2 {
  position: absolute;
  top: 115px;
  right: 251px;
  height: 605px;
  z-index: -1;
}

.service-img3 {
  width: 505px;
  height: 100%;
  margin-top: 50px;
  margin-left: -45px;
}

.service-content {
  padding-top: 66px;
  margin-left: 182px;
}

.service-content .sec-ttl-en {
  margin-left: 17px;
}

.service-ttl {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.13em;
  margin: 30px 0 32px;
}

.service-txt {
  line-height: 1.93;
  margin-bottom: 35px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  width: 513px;
  height: auto;
  border: 1px solid #e1e1e0;
  padding: 32px 37px 32px 20px;
  font-weight: bold;
  line-height: 1.87;
}

.service-list li:nth-child(odd) {
  margin-right: auto;
}

.service-list li:nth-child(even) {
  flex-basis: 271px;
}

.service-wrapper .btn {
  margin: 50px auto 0;
}


/* ----------------------- */
/* company
/* ----------------------- */

.company-wrapper {
  margin-bottom: 77px;
}

.company-inner {
  margin: 0 auto;
  max-width: 1140px;
  display: flex;
}

.company-logo {
  width: 275px;
  height: 205px;
  margin-right: 127px;
}

.company-content {
  position: relative;
}

.company-content:after {
  content: "";
  position: absolute;
  top: -31px;
  right: 48px;
  background-image: url(../img/company-img.png);
  background-repeat: no-repeat;
  width: 402px;
  height: 402px;
  z-index: -1;
}

.company-content .sec-ttl-en {
  margin-left: 16px;
  color: #000;
}

.company-content .sec-ttl-en:before {
  content: "";
  background-color: #f5c92c;
}

.company-detail {
  margin-top: 55px;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.31em;
}

.company-detail dt {
  float: left;
  clear: both;
}

.company-detail dd {
  margin-left: 145px;
  margin-bottom: 25px;
}


/* ----------------------- */
/* contact us
/* ----------------------- */

.contact-wrapper {
  width: 100%;
  height: 471px;
  background-image: url(../img/contact.png);
  background-size: cover;
  background-position: center;
}

.contact-inner {
  padding: 136px 0 144px;
  max-width: 710px;
  margin: 0 auto;
  text-align: center;
}

.contact-ttl {
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.31em;
}

.contact-inner p {
  margin: 43px 0 54px;
}

.contact-btn-lg {
  font-size: 15px;
  width: 329px;
  height: 68px;
  line-height: 68px;
  border-radius: 34px;
  position: relative;
}

.contact-btn-lg:after {
  content: "→";
  position: absolute;
  top: 0;
  right: 29px;
  font-size: 14px;
  font-weight: normal;
}


/* ----------------------- */
/* floating
/* ----------------------- */

.floating {
  display: none;
  position: fixed;
  bottom: 30px;
  z-index: 1;
  right: 89px;
}

.floating a {
  background-color: #75c0c1;
  border-radius: 50%;
  padding: 27px 32px;
}

.floating a:hover {
  transition: 0.3s;
  background-color: #429c9d;
}

/* --------------------------------------------------- */






/* コンタクトページ
------------------------------------------------------ */

/* ----------------------- */
/* contactForm
/* ----------------------- */

.contactForm-wrapper {
  margin: 170px 0 95px;
}

.contactForm-head {
  position: relative;
  height: 100%;
  text-align: center;
}

.contactForm-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
}

.contactForm-ttl-en {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.31em;
  padding: 75px 0 14px;
}

.contactForm-ttl-ja {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  margin-bottom: 51px;
}


.form-inner {
  max-width: 825px;
  margin: 153px auto 0;
}

.form-item {
  display: flex;
  border-bottom: 1px solid #cac9c9;
}

.form-item:last-child {
  margin-bottom: 68px;
}

.form-ttl {
  font-weight: bold;
  width: 255px;
  padding-top: 45px;
}

.form-ttl.required:after {
  content: "※";
  margin-left: 4px;
  font-size: 14px;
  color: #f64e99;
  font-weight: bold;
  letter-spacing: 0.13em;
}

.form-box {
  width: 565px;
  margin: 23px 0;
}

.form-box input {
  width: 100%;
  height: 61px;
  padding: 24px 22px 19px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  border-radius: 7px;
}

.form-box select {
  width: 100%;
  height: 61px;
  background-color: #f9f9f9;
  border-radius: 7px;
  padding-left: 22px;
  cursor: pointer;
}

.form-box select {
  color: #cac9c9;
}

.form-box .disabledparts {
  color: #ccc;
}

.select-box {
  position: relative;
}

.select-box::after {
  content: "";
  position: absolute;
  top: 23px;
  right: 20px;
  background-image: url(../img/select-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 20px;
  cursor: pointer;
}

.form-box textarea {
  width: 565px;
  height: 220px;
  box-sizing: border-box;
  padding: 24px 21px;
  background-color: #f9f9f9;
  border-radius: 7px;
}

.form-box input::placeholder,
.form-box textarea::placeholder {
  color: #cac9c9;
}

.form-btn-wrapper {
  text-align: center;
  position: relative;
}

.form-btn-wrapper .contact-btn {
  cursor: pointer;
}

.form-btn-wrapper:after {
  content: "→";
  position: absolute;
  top: 24px;
  right: 279px;
  font-size: 14px;
  font-weight: normal;
}


/* ----------------------- */
/* company-link
/* ----------------------- */
.company-link {
  width: 100%;
  height: 299px;
  background-image: url(../img/gradient.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 64px 0;
  box-sizing: border-box;

}

.company-link-logo {
  width: 164px;
  height: 122px;
  margin: 0 auto 14px;
}

.company-btn {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  width: 166px;
  height: 33px;
  line-height: 33px;
  margin: 0 auto;
  display: block;
  text-align: center;
  border-radius: 16.5px;
  background-color: #75c0c1;
  transition: 0.2s;
  position: relative;
}

.company-btn:after {
  content: "→";
  position: absolute;
  top: 0;
  right: 10px;
  font-weight: normal;
  font-size: 14px;
}

.company-btn:hover {
  background-color: #429c9d;
  transition: 0.4s;
}


/* 採用ページ
------------------------------------------------------ */

/* ----------------------- */
/* features
/* ----------------------- */

.features {
  margin-bottom: 156px;
}

.features__heading {
  margin: 0 auto;
}

.features__ttl-en {
  max-width: 275px;
  margin: 0 auto 22px;
}

.features__list {
  margin-top: 95px;
}

.features__item {
  display: flex;
}

.features__img {
  flex: 0 1 50%;
  height: 502px;
}

.features__img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.features__txtArea {
  flex: 0 1 50%;
  position: relative;
  box-sizing: border-box;
  padding-top: 150px;
}

.features__txtArea--odd {
  padding-left: 7%;
}

.features__txtArea--even {
  padding-left: 8.33%;
}

.features__decoration {
  position: absolute;
  width: 100%;
}

.features__decoration1 {
  top: 18px;
  left: -85px;
  max-width: 374px;
}

.features__decoration2 {
  top: 45px;
  right: -65px;
  max-width: 343px;
}

.features__decoration3 {
  top: 60px;
  left: -161px;
  max-width: 483px;
}

.features__itemTtl {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.53;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.features__itemTtl3 {
  padding-top: 40px;
}

.features__txt {
  line-height: 1.93;
  letter-spacing: 0.13em;
  max-width: 474px;
}


/* ----------------------- */
/* cherish
/* ----------------------- */

.cherish {
  margin-bottom: 78px;
}

.cherish__list {
  display: flex;
  justify-content: space-between;
  margin: 62px auto 0;
  max-width: 1045px;
}

.cherish__item {
  flex: 0 1 24.49%;
  max-width: 256px;
}

.cherish__img {
  height: 190px;
  margin: 0 auto 40px;
}

.cherish__img1 {
  max-width: 143px;
}

.cherish__img2 {
  max-width: 200px;
}

.cherish__img3 {
  max-width: 135px;
}

.cherish__img img {
  height: 100%;
  object-fit: contain;
}

.cherish__itemTtl {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1;
  text-align: center;
  margin-bottom: 20px;
}

.cherish__txt {
  line-height: 1.73;
}

/* ----------------------- */
/* recruitmentType
/* ----------------------- */

.recruitmentType {
  padding: 85px 0 124px;
  background-color: #fcf9f0;
}

.recruitmentType .inner {
  max-width: 825px;
}

.tableWrapper {
  margin-top: 56px;
}

.tableBox:not(:last-child) {
  margin-bottom: 70px;
}

.tableHeading {
  display: flex;
  margin-bottom: 15px;
}

.tableBullet {
  flex: 0 0 15px;
  height: 15px;
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 4px;
}

.recruitmentType .tableBullet {
  background-color: #f5c92c;
}

.tableTtl {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.14em;
  line-height: 1;
}

.table {
  border: 1px solid #ccc;
}

.table__item {
  display: flex;
  border-bottom: 1px solid #ccc;
}

.table__item:last-child {
  border-bottom: none;
}

.table__itemTtl {
  flex: 0 1 25.57%;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #ccc;
}

.recruitmentType .table__itemTtl {
  background-color: #fdf2ca;
}


.table__txtArea {
  flex: 0 1 74.42%;
  background-color: #fff;
  padding: 20px;
}

.table__txt {
  font-size: 14px;
  letter-spacing: 0.13em;
  line-height: 1.85;
}


/* ----------------------- */
/* essentials
/* ----------------------- */
.essentials {
  padding: 90px 0 109px;
}

.essentials .tableBullet {
  background-color: #75c0c1;
}

.essentials .table__itemTtl {
  background-color: #f2f9f9;
}

.essentials__btn {
  color: #000;
  font-size: 15px;
  line-height: 68.6px;
  max-width: 330px;
  height: 68.5px;
  border-radius: 34px;
  margin: 76px auto 0;
  background-color: #f5c92c;
}

.essentials__btn:hover {
  background-color: #fadc6f;
}



/* サービス・プロダクトページ
------------------------------------------------------ */
/* ----------------------- */
/* common
/* ----------------------- */

.servicePage .pageHeading {
  margin: 160px 0 80px;
}

@media (min-width: 1680px) {
  .servicePage .pageHeading {
    margin-bottom: 15vh;
  }
}

.secHeading {
  width: 100%;
  height: 418px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.secHeading__ttl-en {
  padding-top: 233px;
  padding-top: 175px;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.31em;
  line-height: 1;
  text-align: center;
  margin-bottom: 14px;
}

.secHeading__ttl-ja {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.13em;
  line-height: 1;
  text-align: center;
}


/* ----------------------- */
/* serviceContents
/* ----------------------- */

.serviceContents {
  margin-bottom: 115px;
}

.serviceContents .secHeading {
  background-image: url(../img/service-bg.jpg);
}

.mediaWrapper {
  margin-top: 100px;
}

.media {
  display: flex;
}

.media:not(:last-of-type) {
  margin-bottom: 63px;
}

.media__img {
  flex: 0 1 43.85%;
  max-width: 500px;
  height: 330px;
}

.media:nth-child(even) .media__img {
  order: 1;
}

.media__img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media__body {
  flex: 0 1 56.14%;
  max-width: 640px;
  padding-top: 9px;
  box-sizing: border-box;
}

.media:nth-child(odd) .media__body {
  padding-left: 4.3%;
}

.media:nth-child(even) .media__body {
  padding-right: 4.3%;
}

.media__ttl {
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.07em;
  margin-bottom: 43px;
  position: relative;
}

.media__ttl:after {
  content: "";
  position: absolute;
  bottom: -12px;
  height: 3px;
  width: 116.6%;
  background-color: #75c0c1;
}

.media:nth-child(odd) .media__ttl:after {
  left: -16.6%;
}

.media:nth-child(even) .media__ttl:after {
  right: -16.6%;
}

.media__txt {
  font-size: 16px;
  line-height: 1.93;
  letter-spacing: 0.13em;
}

.media__btn {
  margin-top: 25px;
}



/* ----------------------- */
/* products
/* ----------------------- */

.products {
  margin-bottom: 126px;
}

.products .secHeading {
  background-image: url(../img/products-bg.jpg);
}

.cardWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 80px;
}

.card {
  flex: 0 1 45.61%;
  align-self: stretch;
  max-width: 520px;
}

.card:first-child,
.card:nth-child(2) {
  margin-bottom: 80px;
}

.card__img {
  width: 100%;
  max-width: 520px;
  height: 320px;
}

.card__img img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card__headding {
  padding: 40px 0 10px;
  border-bottom: 3px solid #f5c92c;
  margin-bottom: 22px;
  display: inline-block;
  width: 100%;
}

.card__ttl {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.07em;
  line-height: 1.8;
  margin-right: 9px;
  display: inline;
}

.card__category {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 22px;
  height: 23px;
  padding: 0 1.2em;
  text-align: center;
  background-color: #f5c92c;
  border-radius: 11.5px;
  display: inline-block;
  vertical-align: 2px;
}

.card__txt {
  line-height: 1.93;
  letter-spacing: 0.13em;
  margin-bottom: 15px;
}

.card__btnWrapper {
  display: flex;
}

.card__btnWrapper .btn:first-child {
  margin-right: 10px;
}

.card__btn {
  width: 100%;
  max-width: 220px;
  height: 44px;
  line-height: 44px;
}

.card__btn2 {
  background-color: #68b4e3;
}

.card__btn2:hover {
  background-color: #2485c1;
}