@charset "UTF-8";
body {
  font-family: "Helvetica Neue", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

@media screen and (min-width: 768px) {
  html,
body,
a,
button,
span {
    cursor: none;
  }

  /*独自のマウスカーソルを作成*/
  .cursor {
    position: fixed;
    top: -5px;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    -webkit-transition: width 0.2s, height 0.2s, top 0.2s, left 0.2s;
    transition: width 0.2s, height 0.2s, top 0.2s, left 0.2s;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    pointer-events: none;
  }

  /*aタグにホバーした時に見た目変化*/
  .cursor.cursor--hover {
    top: -15px;
    left: -15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(238, 206, 19, 0.8) 0%, rgba(178, 16, 255, 0.8) 100%);
    opacity: 0.8;
  }
}
img {
  max-width: 100%;
}

/* header/ */
.l-header {
  max-width: 870px;
  padding: 50px 25px 0;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header.company .p-header_link {
  width: 19vw;
}
@media screen and (max-width: 768px) {
  .l-header {
    padding: 25px 20px 0;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 415px) {
  .l-header.company .p-header_link {
    display: none;
  }
}

.p-header_title {
  width: 120px;
  max-width: 120px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-header_title {
    width: 36vw;
  }
}

.p-header_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 0 auto;
}
.p-header_link__company {
  width: 94px;
  max-width: 94px;
}
@media screen and (max-width: 768px) {
  .p-header_link__company {
    width: 19vw;
  }
}

/* /header */
.p-scroll {
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5vw;
}
@media screen and (max-width: 1000px) {
  .p-scroll {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .p-scroll {
    margin-bottom: 40px;
  }
}
.p-scroll button {
  min-width: 80vw;
  width: auto;
  height: 10vw;
  max-height: 80px;
  padding-right: 4vw;
  white-space: nowrap;
}
@media screen and (max-width: 415px) {
  .p-scroll button {
    height: 14vw;
  }
}
.p-scroll button img {
  width: auto;
  height: 10vw;
  max-height: 80px;
  display: block;
}
@media screen and (max-width: 415px) {
  .p-scroll button img {
    height: 14vw;
  }
}
.p-scroll > div {
  opacity: 0;
}
.p-scroll > div.p-scroll__toleft, .p-scroll > div.p-scroll__toright {
  opacity: 1;
}

/* ホバー時に動きを止める*/
.p-scroll:hover button {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.p-scroll__toleft,
.p-scroll__toright {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-scroll__toleft button {
  -webkit-animation: scrollAnimeToLeft 18s linear infinite;
          animation: scrollAnimeToLeft 18s linear infinite;
}

.p-scroll__toright button {
  -webkit-animation: scrollAnimeToRight 18s linear infinite;
          animation: scrollAnimeToRight 18s linear infinite;
}

@-webkit-keyframes scrollAnimeToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scrollAnimeToLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes scrollAnimeToRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scrollAnimeToRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.modal {
  visibility: hidden;
  opacity: 0;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal.is-show {
  visibility: visible;
  opacity: 1;
}

.p-modal_container {
  max-width: 800px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 415px) {
  .p-modal_container {
    margin: 60px auto 0;
  }
}

.modal-content {
  background: #fff;
  overflow-y: auto;
  padding: 20px 25px;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-modal-close {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 65px;
}
@media screen and (max-width: 415px) {
  .p-modal-close {
    right: 0;
    top: 0;
    width: 45px;
  }
}

.modal-title {
  color: #000;
}

.p-modal_name__alpha,
.p-modal_name__kanji,
.p-modal_name__job {
  margin-bottom: 35px;
  font-weight: 700;
}
@media screen and (max-width: 415px) {
  .p-modal_name__alpha,
.p-modal_name__kanji,
.p-modal_name__job {
    margin-bottom: 30px;
  }
}

.p-modal_name__alpha {
  font-size: 22px;
  letter-spacing: 5px;
  padding-right: 70px;
}
@media screen and (max-width: 768px) {
  .p-modal_name__alpha {
    letter-spacing: 4px;
  }
}

.p-modal_name__kanji {
  font-size: 24px;
  letter-spacing: 6px;
}

.p-modal_name__job {
  font-size: 17px;
  letter-spacing: 3px;
}

.p-modal_linklist {
  width: 260px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-modal_linklist {
    padding-bottom: 20px;
  }
}
.p-modal_linklist li {
  margin-right: 20px;
  width: calc(20% - 5px);
}
.p-modal_linklist li img {
  width: 100%;
}

.p-modal_detal {
  line-height: 2;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 40px;
}
@media screen and (max-width: 415px) {
  .p-modal_detal {
    line-height: 1.9;
    margin-bottom: 30px;
  }
}
.p-modal_detal > ul {
  margin-bottom: 40px;
}
.p-modal_detal li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.p-modal_detal li span:first-child {
  width: 68px;
}
.p-modal_detal li span:last-child {
  width: calc(100% - 68px);
}

/* company/ */
.l-company {
  max-width: 880px;
  padding: 0 25px 200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-company {
    padding-bottom: 100px;
  }
}

.p-company_message {
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 7px;
  line-height: 1.96;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .p-company_message {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 70px;
  }
}

.p-company_title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .p-company_title {
    margin-bottom: 50px;
  }
}

.p-company_detail {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .p-company_detail {
    font-size: 15px;
    line-height: 1.7;
  }
}
.p-company_detail .detail-link {
  font-weight: 700;
}
.p-company_detail .p-company_detail__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .p-company_detail .p-company_detail__list {
    display: block;
  }
}
.p-company_detail .p-company_detail__list dt {
  width: 25%;
  max-width: 180px;
}
@media screen and (max-width: 768px) {
  .p-company_detail .p-company_detail__list dt {
    width: 100%;
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.p-company_detail .p-company_detail__list dd {
  width: 75%;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .p-company_detail .p-company_detail__list dd {
    width: 100%;
    line-height: 2;
  }
}
.p-company_detail .map-link {
  font-size: 12px;
}
.p-company_detail .map-link a {
  border-bottom: 2px solid #000;
}
