

/* ==========================================================================
   Foundation
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  overflow-x: hidden; /* iOS Safari横スクロール対策 */
}

@media only screen and (max-width: 767px) {
  html {
    font-size: 87.5%;
  }
}

body {
  position: relative;
  margin: 0 auto;
  background: #fff;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  overflow-scrolling: touch;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media print, screen and (min-width: 992px) {
  body {
    padding-top: 80px;
  }
}

@media only screen and (max-width: 991px) {
  body {
    padding-top: 54px;
  }
}

body * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

a:hover, a:focus, a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  max-width: 100%;
}

/* ul {
  list-style-type: none;
} */

ul.list-style-type-none{
  list-style-type: none;
  padding-left: 0px !important;
}

ul.tiptap, ol.tiptap {
  padding-left: 25px;
}

input,
label,
select,
textarea {
  vertical-align: middle;
}

select {
  -webkit-appearance: none;
	-moz-appearance: none;
  appearance: none;
  background: url(/assets/icons/angle-select.svg) no-repeat right 10px center;
}

select::-ms-expand {
  display: none;
}

address {
  display: inline-block;
  line-height: 1.5;
  font-size: 0.75rem;
  font-style: normal;
}

/* ==========================================================================
   Layout
   ========================================================================== */
#l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99;
}

.l-full-column {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.l-full-column--inversion {
  color: #fff;
}

.l-full-column--inversion .button {
  border: none;
  background-color: #fff;
  color: #000;
}

.l-full-column--light {
  background-color: #f5f5f5;
}

.l-full-column--first {
  padding-top: 0.5rem;
}

.l-full-column--eyecatch {
  padding-top: 0;
  padding-bottom: 0;
}

.l-full-column--mask::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  z-index: 0;
}

.l-full-column--entry {
  background-color: #6fb546;
}

.l-full-column__inner {
  position: relative;
  z-index: 1;
}

.l-full-column--footer {
  padding: 0 2rem 2rem;
}

.l-full-column--footer__inner {
  padding: 4rem 1rem;
  border-radius: 0.5rem;
  background-color: #ebebeb;
}

.l-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 1054px;
  padding: 0 15px;
}

/* Grid
   ----------------------------------------------------------------- */

.l-grid {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.l-grid__column-4 {
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 30px;
  width: calc(33.33% - 30px);
}

.l-grid__column-6 {
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 30px;
  width: calc(50% - 30px);
}

.l-grid__column-12 {
  margin-right: 15px;
  margin-left: 15px;
  margin-bottom: 30px;
  width: calc(100% - 30px);
}

@media only screen and (max-width: 767px) {
  .l-grid__column-sp12 {
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 30px;
    width: calc(100% - 30px);
  }

  .l-grid__column-sp6 {
    margin-right: 15px;
    margin-left: 15px;
    margin-bottom: 30px;
    width: calc(50% - 30px);
  }
}

/* ==========================================================================
   Object
   ========================================================================== */

/* Component
   ----------------------------------------------------------------- */

/**
 * Image
 */

.c-image-holder {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.c-image-holder::after {
  content: '';
  display: block;
  padding-top: 56.25%;  /* 16:9 */
}

/**
 * Heading
 */

.c-heading {
  font-size: 1.5rem;
}

.c-subheading {
  font-size: 1.25rem;
}

/**
 * Button
 */

.c-button {
  display: inline-block;
  padding: 1em 2em 0.75em;
  border: 1px solid rgb(200,200,200);
  border-radius: 2em;
  background-color: #fff;
  color: #333;
  font-family: "Josefin Sans", sans-serif;
  text-align: center;
  line-height: 1;
  vertical-align: middle;
  transition: all linear 0.15s;
}

.c-button:hover {
  box-shadow: none;
  background-color: #6fb546;
  color: #fff;
}

.c-button.c-button--primary {
  box-shadow: none;
  /* background-color: #6fb546; */
  color: #fff;
}

.c-button.c-button--primary:hover {
  background-color: #000;
}

.c-button.c-button--white {
  box-shadow: none;
  background-color: #fff;
  color: #6fb546 !important;
  font-weight: bold;
}

.c-button.c-button--white:hover {
  background-color: #000;
  color: #fff !important;
}

.c-button.c-button--ghost {
  /* box-shadow: inset 0 0 2px #fff; */
  border: 2px solid rgba(255,255,255,0.75);
  background-color: transparent;
  color: #fff !important;
}

.c-button.c-button--ghost:hover {
  background-color: #fff;
  color: #000 !important;
}

.c-button--large {
  padding: 1.25em 6em;
}

/**
 * Form Control
 */

.c-form-control {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5em 0.25em;
  background-color: transparent;
  outline: none;
}

.c-form-control::placeholder {
  color: #bfbfbf;
}

/* Project
   ----------------------------------------------------------------- */

/**
 * Navbar
 */

.p-navbar {
  position: relative;
  display: flex;
  width: 100%;
  height: 80px;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
}

.p-navbar__logo {
  max-width: 200px;
  max-height: 75px;
}

.p-navbar__menu {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.p-navbar__menu a {
  color: #000;
}

.p-navbar__menu__item {
  margin-left: 2em;
  display: inline-block;
  letter-spacing: 0.1em;
  vertical-align: middle;
  line-height: 1;
}

.p-navbar__entry-button {
  font-weight: bold;
  padding: 1em 3em;
}

.p-navbar.p-navbar--sp {
  display: block;
  height: 50px;
  text-align: center;
}

.p-navbar__toggle-icon {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 20px;
  left: 8px;
  width: 25px;
  height: 10px;
}

.p-navbar__toggle-icon span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #333;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}

.p-navbar__toggle-icon span:nth-of-type(2) {
  top: 9px;
}

.p-navbar__toggle-icon.is-open span:nth-of-type(1) {
  top: 5px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-navbar__toggle-icon.is-open span:nth-of-type(2) {
  top: 5px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.p-navbar.p-navbar--sp .p-navbar__brand {
  display: inline-block;
}

.p-navbar.p-navbar--sp .p-navbar__logo {
  display: inline-block;
  position: absolute;
  top:5px;
  left:33%;
  max-width: 120px;
}

.p-navbar.p-navbar--sp .c-button.navbar__entry-button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 90px;
  padding: 0.5em 0;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-navbar__fullscreen-panel {
  position: fixed;
  top: 50px;
  left: 0;
  opacity: 0;
  width: 100%;
  height: calc(100% - 50px);
  padding-top: 6rem;
  background-color: #6fb546;
  color: #fff;
  z-index: 999;
  visibility: hidden;
  -webkit-transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.5s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}

.p-navbar__fullscreen-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.p-navbar.p-navbar--sp .p-navbar__menu {
  margin: 0;
  padding: 0;
}

.p-navbar.p-navbar--sp .p-navbar__menu__item {
  display: block;
  text-align: center;
  margin: 0;
  padding: 0.5em 0;
  font-size: 1.5rem;
}

.p-navbar.p-navbar--sp .p-navbar__menu__item a {
  display: block;
  color: #fff;
}

.p-navbar__button.p-navbar__button--close {
  color: #fff;
}


@media print, screen and (min-width: 992px) {
  .p-navbar--sp {
    display: none !important;
  }
}

@media only screen and (max-width: 991px) {
  .p-navbar--pc {
    display: none !important;
  }
}

/**
 * Eyecatch
 */

.p-eyecatch {
  position: relative;
  display: flex;
}

.p-eyecatch__current {
  flex-basis: 25%;
  padding-top: 6rem;
  padding-left: 4rem;
}

.p-eyecatch__current__en {
  font-size: 1.25rem;
}

.p-eyecatch__current__ja {
  font-size: 0.875rem;
}

.p-eyecatch__meta {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  max-width: 50%;
  padding: 3rem 2rem;
  border-radius: 0.5rem;
  background-color: #fff;
}

.p-eyecatch__title {
  font-weight: normal;
  font-size: 1.5rem;
}

.p-eyecatch__job {
  margin-bottom: 0.5em;
  font-size: 0.875rem;
}

.p-eyecatch__name {
  margin-bottom: 0.5em;
  font-weight: normal;
  font-size: 1.5rem;
}

.p-eyecatch__subtitle {
  font-size: 1.25rem;
}

@media print, screen and (min-width: 992px) {
  .p-eyecatch__current-sp {
     display: none;
  }
}

@media only screen and (max-width: 991px) {
  .p-eyecatch {
    display: block;
  }

  .p-eyecatch__meta {
    position: relative;
    bottom: 0;
    left: 0;
    max-width: none;
    margin: -2rem 2rem 0.5rem;
    padding: 2rem 1rem;
  }

  .p-eyecatch__current {display: none;}
  .p-eyecatch__current-sp {
    text-align: right;
    padding: 0 2rem;
  }

  .p-eyecatch__current-sp__ja {
    padding-right: 0.5rem;
    font-size: 0.875rem;
  }
}

/**
 * Article Block
 */

.p-article-block {
  margin: 0 auto 4rem;
  padding: 2rem 4rem;
  line-height: 2;
}

.p-article-block.p-article-block--profile {
  overflow: hidden;
  padding: 2rem;
}

.p-article-block.p-article-block--profile p:last-child {
  margin-bottom: 0;
}

.p-article-block.p-article-block--lead {
  margin-top: 4rem;
  padding: 0;
}

.p-article-block__heading {
  margin-bottom: 1em;
  line-height: 1.5
}

.company-block__heading, .member-block__heading {
  margin-bottom: 2rem;
}

.p-article-block.p-article-block--light h4{
  background-color: #fff;
  margin-bottom: 3rem;
  font-size: 1.25rem;
  margin-left: -4rem;
  padding: 2rem 1rem 2rem 4rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  line-height: 1.5;
}

.p-article-block__sub-heading {
  margin-top: 4em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.p-article-block__sub-heading span {
  padding-right: 2em;
}

.p-article-block p,
.p-article-block figure {
  margin-bottom: 3rem;
}

.p-article-block.p-company-block {
  margin: 0;
  padding: 2rem 4rem;
}

.p-article-block.p-company-block p {
  margin-bottom: 2rem;
}

.p-article-block.p-company-block figure {
  margin-bottom: 0;
}

.p-article-block.p-work-block {
  margin: 0;
  padding: 2rem 4rem;
}

.p-article-block.p-work-block p {
  margin-bottom: 2rem;
}

.p-article-block.p-work-block figure {
  margin-bottom: 0;
}

.p-article-block.member-article-block {
  margin: 0;
  padding: 2rem 4rem;
}
@media only screen and (max-width:767px) {
  .p-article-block.member-article-block {
    padding: 2rem 1.5rem;
  }
}


.p-article-block.p-company-block h4,
.p-article-block.p-member-block h4 {
  background-color: #fff;
  font-size: 1.25rem  !important;
  margin-left: -4rem;
  margin-bottom: 2rem;
  padding: 2rem 1rem 2rem 4rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  line-height: 1.5;
}

.p-article-block.p-work-block h4 {
  background-color: #f5f5f5;
  font-size: 1.25rem  !important;
  margin-left: -4rem;
  margin-bottom: 4rem;
  padding: 2rem 1rem 2rem 4rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  line-height: 1.5;
}

.p-article-block__notch {
  margin-left: -4rem;
  margin-bottom: 4rem;
  padding: 2rem 1rem 2rem 4rem;
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  background-color: #f5f5f5;
  line-height: 1.5;
}

.p-article-block--light {
  background-color: #f5f5f5;
}

.p-article-block--light .p-article-block__notch {
  background-color: #fff;
}

.p-article-block--white {
  background-color: #fff;
}

.p-article-block--white .p-article-block__notch {
  background-color: #f5f5f5;
}

.profile-wrap.with_single_description{
  background-color: #ebebeb;
  padding-top: 1rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
}

.profile-wrap.with_single_description p{
  font-size:100%;
  margin-bottom:  0.5rem;
}

.profile-wrap.with_single_description span.profile-title{
  font-family: "Josefin Sans", sans-serif !important;
  letter-spacing:0.1rem !important;
  font-size:1.5rem;
  font-weight: bold !important;
}


@media only screen and (max-width: 768px) {
  .p-article-block {
    padding: 2rem 1rem;
  }

  .p-article-block__notch {
    margin-left: -2rem;
    padding-left: 2rem;
  }

  .p-article-block.p-work-block,
  .p-article-block.p-company-block {
    padding: 2rem 1.5rem;
  }
}

/**
 * Card
 */

.p-card {
  position: relative;
  background-clip: border-box;
  color: #333;
  border-radius: 0.5rem;
  overflow: hidden;
}

.p-card.p-card--gray {
  background-color: #f5f5f5;
}

.p-card__thumbnail-wrap {
}

.p-card__thumbnail {
  width: 100%;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-transition: all 600ms;
  transition: all 600ms;
}

.p-card:hover .p-card__thumbnail {
  transform: scale(1.07);
}

.p-card__thumbnail::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.p-card.slick-slide .p-card__body{
  min-height:11rem;
}

.p-card__body {
  padding: 1rem 1rem 2.5rem;
  background-color: #fff;
}

.p-card.p-card--gray .p-card__body {
  background-color: #f5f5f5;
}

.p-card.p-card--colored .p-card__body {
  background-color: #6fb546;
  color: #fff !important;
}

.p-card__category {
  margin-bottom: 0.5em;
  font-size: 0.875rem;
}

.p-card__category::after {
  content: "";
  display: inline-block;
  width: 3rem;
  height: 1px;
  margin-left: 0.5em;
  background-color: #333;
  vertical-align: 0.4em;
}

.p-card__job {
  margin-bottom: 0.5em;
  color: #999;
  font-size: 0.875rem;
}

.p-card__title {
  margin-bottom: 1em;
  font-size: 0.9rem;
}

.p-card__title.staff{
  font-size: 1.125rem;
}


.p-card__description {
  margin-bottom: 1em;
  font-size: 0.875rem;
  /* color: #999; */
}

.p-card__tag-list {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-card__tag-list__item {
  display: inline-block;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  padding: 0.125em 0.5em;
  border: 1px solid #999;
  border-radius: 1em;
}

.p-card__more {
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
  font-size: 0.875rem;
}

.p-card__anchor {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-indent: -9999em;
}

.p-card.p-card--shifted {
  border-radius: 0;
  padding-right: 2rem;
  background-color: transparent;
}

.p-card.p-card--shifted .p-card__thumbnail {
  border-radius: 0;
}

.p-card.p-card--shifted .p-card__body {
  position: relative;
  top: -1rem;
  left: 2rem;
  border-radius: 8px;
}

.p-card.p-card--shifted.p-card--vertical {
  margin-bottom: 2rem;
  padding-right: 0;
  padding-bottom: 1rem;
}

.p-card.p-card--shifted.p-card--vertical .p-card__thumbnail-wrap{
  margin-right: 63%;
}

.p-card.p-card--shifted.p-card--vertical .p-card__body {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
  width: 65%;
}

.p-card.p-card--shifted.p-card--shifted--featured {
  padding-right: 0;
}

@media print, screen and (min-width:768px) {
  .p-card.p-card--shifted.p-card--shifted--featured {
    padding-bottom: 2rem;
  }

  .p-card.p-card--shifted.p-card--shifted--featured .p-card__thumbnail-wrap {
    margin-left: 35%;
  }

  .p-card.p-card--shifted.p-card--shifted--featured .p-card__body {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 42%;
  }

  .p-card.p-card--shifted.p-card--shifted--hero .p-card__thumbnail-wrap {
    margin-right: 33%;
  }

  .p-card.p-card--shifted.p-card--shifted--hero .p-card__body {
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 40%;
  }
}

@media only screen and (max-width:767px) {
  .p-card.p-card--shifted.p-card--shifted--featured .p-card__body {
    left: 0;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .p-card.p-card--shifted.p-card--vertical .p-card__thumbnail-wrap{
    margin-right: 50%;
  }

  .p-card.p-card--shifted.p-card--vertical .p-card__body {
    width: 56%;
  }

  .p-card.p-card--shifted.p-card--vertical .p-card__title {
    margin-bottom: 0;
    font-size: 0.9rem;
  }

  .p-card.p-card--shifted.p-card--vertical .p-card__description {
    display: none;
  }
}

/**
 * Pagination
 */
 .pagination_nav {
  position: static;
  background-color: transparent;
  width: 100%;
}

/* Bootstrap4 pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  padding-left: -8.8em;
  list-style: none;
  border-radius: 0.25rem;
  margin-top: 20px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
  font-size: 1.2em;
  margin: 0 5px;
}

.page-link:hover {
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-link:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

/**
 * Heading EJ
 *
 * 見出しなどに使われる、英語と日本語の組み合わせ
 */

.p-heading-ej  {
  margin-bottom: 2rem;
  font-weight: normal;
  line-height: 1.25;
  font-size: 1rem;
}

.p-heading-ej__en {
  padding-right: 1em;
  font-size: 3rem;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.1em;
}

.p-heading-ej--verical {
  text-align: center;
}

.p-heading-ej--verical .p-heading-ej__en {
  display: block;
  padding-right: 0;
  padding-left: 0.1em;
}

@media only screen and (max-width: 767px) {
  .p-heading-ej__en {
    padding: 0;
    font-size: 1.8rem;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.1em;
  }
}

/**
 * Horizontal List
 */

.p-horizontal-list {
  margin-top: 1rem;
  margin-bottom: 0;
}

.p-horizontal-list__item {
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

.p-horizontal-list__item--active .c-button {
  box-shadow: none;
  background-color: #6fb546;
  color: #fff;
}

/**
 * Share Buttons
 */

.p-share-buttons {
  display: inline-block;
  padding: 1rem 4rem;
  box-shadow: inset 0 0 2px #000;
  border-radius: 6rem;
  font-size: 1rem;
}

.p-share-buttons__heading {
  display: inline-block;
  margin-right: 2rem;
}

.p-share-buttons__list {
  display: inline-block;
  line-height: 1;
}

.p-share-buttons__list__item {
  margin: 0 0.5rem;
  display: inline-block;
}

.p-share-buttons__list__item a {
  color: #000;
}

.p-share-buttons__list__item i {
  font-size: 30px;
}

.p-share-buttons__list__item--hatena img {
  width: 28px;
  vertical-align: -15%;
}

@media only screen and (max-width: 767px) {
  .p-share-buttons__heading {
    margin-right: 0;
  }

  .p-share-buttons__list__item i {
    font-size: 20px;
  }

  .p-share-buttons__list__item--hatena img {
    width: 18px;
  }
}

/**
 * Top-Right Button Block
 *
 * カード一覧の「VIEW ALL」などに使用。
 * デスクトップ時はブロックの右上に absokute で表示、モバイル時はブロックの下に表示
 */

.p-top-right-button-block {
  text-align: center;
}

@media print, screen and (min-width: 768px) {
  .p-top-right-button-block {
    position: absolute;
    top: 0;
    right: 1rem;
  }
}

/**
 * Footer Content
 */

.p-footer-content {
  background-color: #ebebeb;
}

.p-footer-content__primary {
  margin-bottom: 2rem;
}

.p-footer-content__secondary {
  text-align: right;
}

.p-footer-content__company-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.p-footer-content__company-address,
.p-footer-content__company-tel {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.p-footer-content__anchor {
  color: #333;
  text-decoration: underline;
}

@media print, screen and (min-width: 768px) {
  .p-footer-content {
    display: flex;
   align-items: flex-end;
  }

  .p-footer-content__primary {
    flex-basis: 49%;
  }

  .p-footer-content__secondary {
    flex-basis: 49%;
  }
}

/**
 * Go to Top
 */

.p-button-gototop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2rem;
  border: 2px solid #000;
  border-radius: 50%;
  background-color: #fff;
  z-index: 9;
  color: #000;
  font-size: 1.5rem;
  text-align: center;
  outline: none;
}

/**
 * Slick
 */

.p-slick-recommended__controller,
.p-slick-recruit__controller {
  padding-top: 16px;
  padding-bottom: 16px;
}

.p-slick-recommended__controller {
  height: 40px;
}

.p-slick-recommended__controller .slick-prev,
.p-slick-recommended__controller .slick-next,
.p-slick-recruit__controller .slick-prev,
.p-slick-recruit__controller .slick-next {
  position: absolute;
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 2rem;
  border-radius: 50%;
  font-size: 1.5rem;
  text-align: center;
  outline: none;
}

.p-slick-recommended__controller .slick-prev,
.p-slick-recommended__controller .slick-next {
  border: 2px solid #000;
  color: #000;
}

.p-slick-recruit__controller .slick-prev,
.p-slick-recruit__controller .slick-next {
  border: 2px solid #fff;
  color: #fff;
}

.p-slick-recommended__controller .slick-prev,
.p-slick-recruit__controller .slick-prev {
  top: 22px;
  left: 0.5rem;
  padding-right: 2px;
}


.p-slick-recommended__controller .slick-next,
.p-slick-recruit__controller .slick-next {
  top: 22px;
  right: 0.5rem;
  padding-left: 2px;
}

/**
 * Slick (Recommended/Recruit)
 */

.p-slick-recommended,
.p-slick-recruit {
  position: relative;
  padding-bottom: 2rem;
}

.p-slick-recommended .p-card,
.p-slick-recruit .p-card {
  margin: 10px;
}

/**
 * Form Group
 */

.p-form-group {
  margin-bottom: 2rem;
}

.p-form-group__title {
  margin-bottom: 0.5rem;
}

.p-form-group__body {
  padding: 1rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #f5f5f5;
}

.p-form-group > label.p-form-group__title{
  display: block;
  margin-bottom: 0.5rem;
}

.p-form-group > input{
  padding: 1.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #f5f5f5;
  width:100%;
}

.p-form-group > div.p-radio__body{
  padding: 1.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #f5f5f5;
  width:100%;
}

.p-form-group > textarea{
  padding: 1.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #f5f5f5;
  width:100%;
  height:130px;
}

.p-form-group > select{
  padding: 1.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background: url(/assets/icons/angle-select.svg) no-repeat right 30px center;
  background-color: #f5f5f5;
  width:100%;
}

.form-group > small {
  font-size: 1rem;
}

.c-button.p-form-back{
  border: 1px solid rgb(150,150,150);
  font-weight: normal;
}

.p-radio__body > span{
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5rem;
}


.invalid-feedback{
  font-size: 1rem;
  font-weight: bold;
  color: #B20000;
}

fieldset.form-group-invalid > .p-radio__body{
  background-color: #FFDBDB;
  border: none;
}

.p-form-group > select.is-invalid{
  background-color: #FFDBDB;
  border: none;
}

.form-group-invalid input {
  background-color: #FFDBDB;
  border: none;
}

.form-group-invalid textarea {
  background-color: #FFDBDB;
  border: none;
}

#job_application_privacy_checked_group.form-group-invalid{
  background-color: #FFDBDB;
  border: none;
}


.is-invalid{
  background-color: #FFDBDB;
  border: none;
}


.fileinput-text{
  width:85%;
}

.fileinput-text-jp {
  width:80%;
}

.fileinput-button{
  background-color: #6fb546;
}

.p-form-group > input::placeholder {
  color: #bfbfbf;
}

.required-icon {
  padding-left: 1rem !important;
  font-size: 0.75rem !important;
  color: #ba001d !important;
}

fieldset.p-form-group{
  border: none;
}


fieldset.p-form-group > legend{
  display: block;
  margin-bottom: 0.5rem; 
}

.form-check {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5rem;
}

.p-form-group > .selected-text {
  padding: 1.5rem 2rem;
  border-radius: 0 1rem 1rem 0;
  background-color: #f5f5f5;
  width: 100%;
}


/**
 * Archive Header
 */

.p-archive-header {
  margin: 1rem 2rem;
  padding: 4rem;
  border-radius: 8px;
  background-color: #f5f5f5;
}

.p-archive-header__en,
.p-archive-header__ja {
  display: inline-block;
}

.p-archive-header__en {
  padding-right: 1rem;
  font-size: 2rem;
}

.p-archive-header__ja {
  font-weight: normal;
  font-size: 1rem;
}

.l-full-column--light .p-archive-header {
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .p-archive-header {
    margin: 1rem 1rem 0;
    padding: 3rem 1rem 4rem;
  }

  .p-archive-header__en,
  .p-archive-header__ja {
    display: block;
  }
}

/**
 * Hero
 */

.p-hero {
  position: relative;
}

.p-hero__controller {
  position: relative;
}

.p-hero__controller .slick-dots {
  font-family: "Josefin Sans", sans-serif;
}

.p-hero__controller .slick-dots li {
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;
  vertical-align: middle;
  transition: 0.15s all linear;
}

.p-hero__controller .slick-dots li button::before {
  content: "0";
}

.p-hero__controller .slick-dots li.slick-active::after {
  content: "";
  display: inline-block;
  background-color: #333;
  width: 4rem;
  height: 1px;
  margin-left: 0.5em;
}

.p-hero__controller .slick-prev,
.p-hero__controller .slick-next {
  position: absolute;
  font-size: 2rem;
}

@media print, screen and (min-width: 768px) {
  .p-hero {
    margin: 0 2rem 4rem;
  }

  .p-hero__controller {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    display: inline-block;
    padding-right: 5rem;
  }

  .p-hero__controller .slick-prev {
    right: 2.5rem;
    bottom: -8px;
    left: auto;
  }

  .p-hero__controller .slick-next {
    right: 0;
    bottom: -8px;
    left: auto;
  }
}

@media only screen and (max-width: 767px) {
  .p-hero {
    text-align: center;
  }

  .p-hero .p-card {
    text-align: left;
  }

  .p-hero .p-card.p-card--shifted {
    padding-right: 0;
  }

  .p-hero .p-card.p-card--shifted .p-card__body {
    left: 0;
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .p-hero__controller {
    margin-right: 1rem;
    margin-left: 1rem;
    padding-right: 3rem;
    padding-left: 3rem;
  }

  .p-hero__controller .slick-prev {
    left: 0;
    bottom: -10px;
  }

  .p-hero__controller .slick-next {
    right: 0;
    bottom: -10px;
  }
}

/**
 * Breadcrumbs
 */

.l-full-column.l-full-column--breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.l-full-column--breadcrumbs a {
  color: #000;
  text-decoration: underline;
}

.p-list-breadcrumbs {
  font-size: 0.875rem;
}

.p-list-breadcrumbs__item {
  display: inline-block;
}

.p-list-breadcrumbs__item::before {
  content: "\f105";
  font-weight: bold;
  font-family: "Font Awesome 5 Free";
  padding: 0 0.5rem;
}

.p-list-breadcrumbs__item:first-child::before {
  content: none;
}

/**
 * Page : Home
 */

.l-full-column--philosophy {
  padding: 6rem 2rem;
}

.l-full-column--philosophy.youtube-section {
  padding: 2rem 2rem;
}
@media only screen and (max-width: 767px) {
  .l-full-column--philosophy.youtube-section {
    padding: 2rem 0;
  }

  .youtube-section .p-philosophy {
    padding: 2rem 1rem;
  }
}

.p-philosophy {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  padding: 4rem 2rem;
  border-radius: 0.5rem;
  background: #fff;
  text-align: center
}

.p-philosophy__heading {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/**
 * Page : COMPANY
 */
.sns-block {
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 0;
}

.read-more {
  padding-top: 0;
}

.company-article-block {
  padding: 1.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .company-article-block {
    padding: 1.5rem 0;
  } 
}

.company-spacer {
  padding: 0;
  margin-bottom: 2rem;
}

/**
 * Page : WORK
 */

.l-archive-work-grid {
  margin-top: -3rem;
}

@media only screen and (max-width: 767px) {
  .l-archive-work-grid {
    margin-top: 0;
  }
}

.work-article-block {
  padding: 1.5rem;
}

.work-spacer {
  padding: 0;
  margin-bottom: 2rem;
}

/**
 * Page : MEMBER
 */

.p-horizontal-list.p-archive-header--member__filter {
  margin-top: 3rem;
}

.p-member-countreset{
  counter-reset: count;
}

.p-memberQ::before{
  counter-increment: count;
  content: "Q" counter(count);
  display: inline-block;
}

@media print, screen and (min-width: 768px) {
  .p-archive-header--member {
    display: flex;
    justify-content: space-between;
  }

  .p-archive-header--member__title {
    flex-basis: 32%;
  }

  .p-horizontal-list.p-archive-header--member__filter {
    flex-basis: 66%;
    margin-top: 0;
    text-align: right;
  }
}


/**
 * Page : Recruit - Article
 */

.p-recruit-meta {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.p-recruit-meta__term {
  margin-bottom: 0.5em;
  font-size: 1.25rem;
}

.p-recruit-meta__data {
  margin-bottom: 1em;
  padding: 1rem 2rem;
  background-color: #f5f5f5;
}

.p-recruit-meta--inner-article-block .p-recruit-meta__data {
  margin-left: -4rem;
  padding: 1rem 4rem;
  background-color: #fff;
}

.l-full-column--recruit-list {
  margin-top: -8rem;
}

.l-full-column--recruit-header {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.l-full-column--recruit-header__heading {
  padding-left: 0.1em;
}

/**
 * Page : JOB_OFFERS
 */
.filter-tab-form select,
.filter-tab-form input {
  padding: 6px 10px;
  margin: 0 10px;
  border-radius: 5px;
}

.filter-tab-form select {
  background-color: #ebebeb;
  width: 200px;
}

.filter-tab-form input {
  color:#fff;
}

.filter-tab-form .cross {
  color: #fff;
  margin: 0 10px 
}

@media only screen and (max-width: 768px) {
  .filter-tab-form input,
  .filter-tab-form .cross {
    display: block;
    margin: auto;
  }
  .filter-tab-form input {
    margin-top: 10px;
  }
}
 

/* Utility
   ----------------------------------------------------------------- */

.u-color-black    {color: #333    !important;}
.u-color-gray     {color: #999    !important;}
.u-color-disabled {color: #ebebeb !important;}
.u-color-primary  {color: #6fb546 !important;}
.u-color-red      {color: #ba001d !important;}
.u-color-white    {color: #fff    !important;}

.u-font-bold    {font-weight: bold !important;}

.u-font-xxxlarge {font-size: 3rem     !important;}
.u-font-xxlarge  {font-size: 2rem     !important;}
.u-font-xlarge   {font-size: 1.5rem   !important;}
.u-font-large    {font-size: 1.25rem  !important;}
.u-font-medium   {font-size: 1rem     !important;}
.u-font-small    {font-size: 0.875rem !important;}
.u-font-xsmall   {font-size: 0.75rem  !important;}

.u-font-en {
  font-family: "Josefin Sans", sans-serif !important;
  letter-spacing: 0.1em !important;
}

.u-text-center    {text-align: center !important;}
.u-text-right     {text-align: right !important;}
.u-text-underline {text-decoration: underline;}

.u-background-primary {background-color: #6fb546; color:#fff;}
.u-background-gray    {background-color: #ebebeb;}
.u-background-light   {background-color: #f5f5f5;}
.u-background-white   {background-color: #fff;}

.u-mt-1 {margin-top: 1rem !important;}
.u-mt-2 {margin-top: 2rem !important;}
.u-mt-3 {margin-top: 3rem !important;}
.u-mt-4 {margin-top: 4rem !important;}
.u-mt-5 {margin-top: 5rem !important;}
.u-mt-6 {margin-top: 6rem !important;}
.u-mb-1 {margin-bottom: 1rem !important;}
.u-mb-2 {margin-bottom: 2rem !important;}
.u-mb-3 {margin-bottom: 3rem !important;}
.u-mb-4 {margin-bottom: 4rem !important;}
.u-mb-5 {margin-bottom: 5rem !important;}
.u-mb-6 {margin-bottom: 6rem !important;}

.u-mr-1 {margin-right: 1rem !important;}
.u-ml-1 {margin-left:  1rem !important;}

.u-pr-1 {padding-right: 1rem !important;}
.u-pl-1 {padding-left:  1rem !important;}

.u-absolute-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {
  .u-pc-only {display: none !important;}
}

@media print, screen and (min-width: 768px) {
  .u-sp-only {display: none !important;}
}

/* The popup bubble styling. */
.popup-bubble {
  /* Position the bubble centred-above its parent. */
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-110%, -70%);
  /* Style the bubble. */
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  overflow-y: auto;
  /* max-height: 60px; */
  box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.5);
}

/* The parent of the bubble. A zero-height div at the top of the tip. */
.popup-bubble-anchor {
  /* Position the div a fixed distance above the tip. */
  position: absolute;
  width: 100%;
  bottom: /* TIP_HEIGHT= */ 8px;
  left: 0;
}
/* This element draws the tip. */
.popup-bubble-anchor::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  /* Center the tip horizontally. */
  transform: translate(-50%, 0);
  /* The tip is a https://css-tricks.com/snippets/css/css-triangle/ */
  width: 0;
  height: 0;
  /* The tip is 8px high, and 12px wide. */
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: /* TIP_HEIGHT= */ 8px solid white;
}
/* JavaScript will position this div at the bottom of the popup tip. */
.popup-container {
  cursor: auto;
  height: 0;
  position: absolute;
  /* The max width of the info window. */
  width: 200px;
}

.video{
  margin: 7rem 0 0;
  width:100%;              /*横幅いっぱいにwidthを指定*/
  padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
  height:0px;              /*高さはpaddingで指定するためheightは0に*/
  position: relative;
}
.video iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .video{
    width:95%;              /*横幅いっぱいにwidthを指定*/
    padding-bottom: 53.25%;  /*高さをpaddingで指定(16:9)*/
    height:0px;              /*高さはpaddingで指定するためheightは0に*/
    position: relative;
  }
}

#indeed-keywords {
  display: none;
}

.banners {
  margin: 50px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.banner {
  width: 320px;
  height: 100px;
  margin-bottom: 20px;
}

.banner img {
  width: 100%;
  height: auto;
}

/* TOP　YouTube */
.youtube-wrap {
  display: flex;
  justify-content: center;
}

.youtube {
  width: 100%;
  margin: auto;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/* show-new 求人ポイント下のYouTube表示 */
.p-job-points-youtube-bg {
  flex: 0 0 100%;
  width: 100%;
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 1rem 0;
  box-sizing: border-box;
}

.p-job-points + .p-job-points-youtube-bg {
  margin-top: 0;
}

@media print, screen and (max-width: 700px) {
  .p-job-points:has(+ .p-job-points-youtube-bg) {
    margin-bottom: 1rem;
  }
}

@media print, screen and (min-width: 768px) {
  .p-job-points-youtube-bg {
    margin-top: 2rem;
    margin-bottom: 0;
    padding: 1.5rem 0;
  }
}

.p-job-points-youtube-bg .youtube-wrap {
  width: 100%;
  background-color: #000;
}

.wrapper_a_tag a {
  color: #2962ff !important; 
  text-decoration: underline #2962ff;
  text-underline-offset: 0.1em;
  position: relative;
}

.p_h2 {
  font-size: 16px;
  margin-bottom: 1.2rem;
}
