/* variable */
:root {
  --engfont01: "DIN Alternate", "din-2014", sans-serif;
  --engfont02: "Julius Sans One", sans-serif;
}

html,
body {
  font-family: "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Helvetica Neue",
    Arial,
    'Meiryo',
    sans-serif;
}

body {
  background: #E8E4E1;
  color: #333;
}

div {
  box-sizing: border-box;
}

.body-wrapper {
  width: 1000px;
  background: #F6F4F3;
  margin: auto;
}

/* header */
header {
  width: 1000px;
  margin: auto;
  background-color: #fff;
}

.logoArea {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 25px 0;
}

.logoArea .left {
  font-family: var(--engfont01);
  font-size: 24px;
  font-weight: 700;
  line-height: 27.94px;
  letter-spacing: 0.12em;
}

.logoArea .left img {
  width: 196px;
  height: 28px;
}

.logoArea .right {
  font-family: var(--engfont02);
  font-size: 52px;
  font-weight: 400;
  line-height: 56.73px;
  letter-spacing: 0.12em;
}

.logoArea .right img {
  width: 253px;
  height: 57px;
}

.header__menu {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 10px;
}

.header__menu li .link__item {
  color: #333;
  font-size: 14px;
  font-weight: 300;
  line-height: 16.93px;
  letter-spacing: 0.12em;
  padding: 15px;
  text-decoration: none;
  display: block;
  position: relative;
}

.header__menu li .link__item::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #D68D8D;
  bottom: 5px;
  opacity: 1;
  visibility: hidden;
  transition: 0.3s;
}

.header__menu li .link__item.on {
  font-weight: 700;
}

.header__menu li .link__item.on::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background: #D68D8D;
  bottom: 10px;
  visibility: visible;
  opacity: 1;
}

.header__menu li .link__item:hover::after {
  visibility: visible;
  bottom: 10px;
  opacity: 1;
}

.header__menu li a {
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

.header__menu li .entry__btn:hover {
  opacity: 0.6;
}

.header__menu li .entry__btn {
  background: linear-gradient(130deg, #eda3a3 0%, #eda3a3 15%, #E57C7C 15%, #E57C7C 100%);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.3em;
  color: #fff;
  width: 231px;
  height: 52px;
  padding: 15px 0;
  text-decoration: none;
  position: relative;
  text-align: center;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.header__menu li .entry__btn img {
  width: 26px;
  height: 26px;
}

/* mv */
.mainvisual {
  overflow: hidden;
  width: 1000px;
  height: 400px;
  margin: auto;
  position: relative;
}

.mainvisual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.mainvisual .mvtitleArea {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 94px;
}

.mainvisual .mvtitleArea .title {
  font-family: var(--engfont01);
  font-size: 44px;
  font-weight: 700;
  line-height: 51.22px;
  letter-spacing: 0.8em;
  text-align: center;
  color: #fff;
  text-indent: 0.8em;
}

.mainvisual .mvtitleArea .subtitle {
  font-size: 19.38px;
  font-weight: 600;
  line-height: 29.06px;
  letter-spacing: 0.12em;
  text-align: center;
  color: #fff;
  margin-top: 14px;
}

/* about */
.about {
  background-color: #fff;
  padding: 60px;
  width: 1000px;
  margin: auto;
}

.about .catchcopy {
  font-size: 28px;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.4em;
  text-align: center;
  color: #191010;
  margin-bottom: 150px;
}

.about .line-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin: auto;
}

.about .line-title img {
  width: 476px;
}

.about .bodycopy p {
  font-size: 20px;
  font-weight: 300;
  line-height: 32px;
  margin-top: 32px;
}

.about .bodycopy p:first-child {
  margin-top: 150px;
}

/* point */
.point {
  width: 1000px;
  margin: auto;
  padding: 0 30px;
  margin-bottom: 150px;
}

.point .titleArea {
  margin: 150px auto;
}

.point .titleArea .title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.point .titleArea .title img {
  width: 300px;
}

.point .titleArea .subtitle {
  font-size: 21.98px;
  font-weight: 300;
  line-height: 32.97px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 15px;
}

.point .itemWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

.point .itemWrap .point-item {
  width: calc(50% - 10px);
  background-color: #fff;
  padding: 20px 20px 32px;
}

.point .itemWrap .point-item .labelArea {
  display: flex;
  align-items: center;
  gap: 16px;
}

.point .itemWrap .point-item .labelArea .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0.12em;
}

.point .itemWrap .point-item .contentArea {
  font-size: 14px;
  font-weight: 300;
  line-height: 27px;
  margin-top: 20px;
}

/* interview */
.interview__read {
  width: 1000px;
  margin: auto;
  padding: 30px;
  background-color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 40px;
}

.experience {
  width: 1000px;
  margin: auto auto 220px auto;
}

.experience .titleArea {
  margin: 150px auto;
}

.experience .titleArea .title {
  font-family: var(--engfont01);
  font-size: 50.24px;
  font-weight: 700;
  line-height: 58.48px;
  letter-spacing: 0.4em;
  text-align: center;
  color: #534C4C;
}

.experience .titleArea .subtitle {
  font-size: 21.98px;
  font-weight: 300;
  line-height: 32.97px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 15px;
}

.experience__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
}

.experience__inner .experience-item {
  width: 33%;
  background-color: #fff;
}

.experience__inner .experience-item .labelArea {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  height: 150px;
}

.experience__inner .experience-item .labelArea .number {
  width: 89px;
}

.experience__inner .experience-item .labelArea .title {
  width: calc(100% - 89px);
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

.experience__inner .experience-item .imageArea {
  width: 100%;
}

.experience__inner .experience-item .imageArea img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.experience__inner .experience-item .attributesArea {
  font-size: 12px;
  font-weight: 600;
  line-height: 17px;
  letter-spacing: 0.3em;
  text-align: right;
  margin: 10px 30px 10px auto;
}

.experience__inner .experience-item .contentsArea {
  padding: 30px;
  font-size: 14px;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.2em;
  text-align: justify;
}

/* entry */
.entry {
  width: 1000px;
  margin: auto;
  padding: 30px;
}

.entry__inner {
  padding: 40px;
  background-color: #fff;
}

.entry__inner .entry__title {
  padding: 12px 0;
  width: 150px;
  background: linear-gradient(100.03deg, rgba(234, 222, 222, 0.7) -0.99%, rgba(241, 210, 210, 0.7) 67.2%);
  position: relative;
  font-size: 13px;
  font-weight: 300;
  line-height: 19.5px;
  letter-spacing: 0.3em;
  text-align: center;
}

.entry__inner .entry__title::before {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(130deg);
  transform-origin: 9px 3px;
}

.entry__inner .entry__title::after {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(130deg);
  transform-origin: 21px -2px;
}

.entry__inner .entry__content {
  margin-bottom: 50px;
}

.entry__inner .entry__content:last-child {
  margin-bottom: 0;
}

.entry__inner .entry__content p {
  margin-top: 17px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}

/* process */
.process {
  width: 1000px;
  margin: auto;
  padding: 30px;
}

.process .titleArea {
  margin: 150px auto;
}

.process .titleArea .title {
  font-family: var(--engfont01);
  font-size: 50.24px;
  font-weight: 700;
  line-height: 58.48px;
  letter-spacing: 0.4em;
  text-align: center;
  color: #534C4C;
}

.process .titleArea .subtitle {
  font-size: 21.98px;
  font-weight: 300;
  line-height: 32.97px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 15px;
}

.process__inner {
  padding: 40px;
  background-color: #fff;
}

.process__inner .process__title {
  padding: 12px 0;
  width: 150px;
  background: linear-gradient(100.03deg, rgba(234, 222, 222, 0.7) -0.99%, rgba(241, 210, 210, 0.7) 67.2%);
  position: relative;
  font-size: 13px;
  font-weight: 300;
  line-height: 19.5px;
  letter-spacing: 0.3em;
  text-align: center;
}

.process__inner .process__title::before {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(130deg);
  transform-origin: 9px 3px;
}

.process__inner .process__title::after {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(130deg);
  transform-origin: 21px -2px;
}

.process__inner .process__content ol,
.process__inner .process__content ul {
  margin-top: 17px;
}

.process__inner .process__content ol li,
.process__inner .process__content ul li {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  margin-left: 20px;
}

.process__inner .process__content ol li {
  list-style: decimal;
}

.process__inner .process__content ul li {
  list-style: disc;
}

/* information */
.information {
  width: 1000px;
  margin: auto;
  padding: 30px;
}

.information__inner {
  padding: 40px;
  background-color: #fff;
}

.information__inner .information__title {
  padding: 12px 0;
  width: 150px;
  background: linear-gradient(100.03deg, rgba(234, 222, 222, 0.7) -0.99%, rgba(241, 210, 210, 0.7) 67.2%);
  position: relative;
  font-size: 13px;
  font-weight: 300;
  line-height: 19.5px;
  letter-spacing: 0.3em;
  text-align: center;
}

.information__inner .information__title::before {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(130deg);
  transform-origin: 9px 3px;
}

.information__inner .information__title::after {
  content: '';
  background-color: #555;
  height: 1px;
  width: 30px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(130deg);
  transform-origin: 21px -2px;
}

.information__inner .information__content {
  margin-bottom: 50px;
}

.information__inner .information__content:last-child {
  margin-bottom: 0;
}

.information__inner .information__content p {
  margin-top: 17px;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
}

.information__inner .information__content p.company {
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
}

.information__inner .information__content p .bold {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.12em;
}

/* footer */
footer {
  width: 1000px;
  margin: auto;
}

.cardArea {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
}

.cardArea .card-item {
  width: 375px;
  background-color: #fff;
}

.cardArea .card-item .card-title {
  font-family: var(--engfont01);
  font-size: 28px;
  font-weight: 700;
  line-height: 32.59px;
  letter-spacing: 0.3em;
  text-align: center;
  color: #534C4C;
  margin-top: 30px;
}

.cardArea .card-item .card-subtitle {
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.cardArea .card-item .card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cardArea .card-item .card-image img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.cardArea .card-item .card-link {
  background: linear-gradient(130deg, #E57C7C 0%, #E57C7C 13%, #666666 13%, #666666 100%);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0.3em;
  color: #fff;
  width: 315px;
  padding: 15px 0;
  text-decoration: none;
  display: block;
  position: relative;
  text-align: center;
  margin: 30px auto;
}

.copyright {
  font-family: var(--engfont01);
  font-size: 18px;
  font-weight: 700;
  line-height: 20.95px;
  letter-spacing: 0.12em;
  text-align: center;
  margin-top: 150px;
}

.linkArea {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0 auto;
  padding-bottom: 40px;
  gap: 63px;
}

.linkArea li a:hover {
  opacity: 0.6;
}

/* viewmore */
.viewmore__trigger {
  font-size: 14px;
  font-weight: 300;
  line-height: 27px;
  letter-spacing: 0.2em;
  color: #9D7001;
  cursor: pointer;
  margin: 15px auto 20px;
  display: none;
  text-align: right;
}

.viewmore__trigger::before {
  display: inline-flex;
  content: url(https://storage.googleapis.com/sy-web-platform-asset/shotobiyo.co.jp/image/arrow.svg);
  vertical-align: sub;
  margin-right: 5px;
  width: 16px;
  height: 13px;
}

.viewmore__trigger.close::before {
  transform: rotate(180deg);
  vertical-align: middle;
}

.interview__viewmore {
  margin-right: 30px;
}

.entry-banner-wrapper {
  display: none;
}

.line-entry-banner-wrapper {
  display: none;
}

.vision-message-wrapper {
  display: none;
}

/* sp only style */
@media screen and (max-width:750px) {
  header {
    width: 100%
  }

  .logoArea {
    flex-direction: column;
    gap: 5px;
  }

  .logoArea .left {
    font-size: 18px;
    font-weight: 700;
    line-height: 20.95px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .logoArea .left img {
    width: 148px;
    height: 21px;
  }

  .logoArea .right {
    font-size: 32px;
    font-weight: 400;
    line-height: 34.91px;
    letter-spacing: 0.12em;
    text-align: center;
  }

  .logoArea .right img {
    width: 161px;
    height: 35px;
  }

  .header__menu li .link__item {
    font-size: 13px;
    font-weight: 300;
    line-height: 15.72px;
    letter-spacing: 0.12em;
  }

  .header__menu li .entry__btn {
    display: none;
  }

  /* mv */
  .mainvisual {
    width: 100%;
    height: 300px;
  }

  .mainvisual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .mainvisual .mvtitleArea {
    height: 70px;
  }

  .mainvisual .mvtitleArea .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 37.25px;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
  }

  .mainvisual .mvtitleArea .subtitle {
    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0.12em;
    margin-top: 10px;
  }

  /* about */
  .about {
    padding: 52px 30px 60px;
    width: 100%;
  }

  .about .catchcopy {
    display: none;
  }

  .about .line-title {
    gap: 10px;
    padding: 12px 0;
    width: 260px;
  }

  .about .line-title::before {
    transform-origin: 17px 5px;
  }

  .about .line-title::after {
    transform: rotate(130deg);
    transform-origin: 42px -2px;
  }

  .about .line-title .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 37.25px;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
  }

  .about .line-title .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.3em;
  }

  .about .bodycopy p {
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
    margin-top: 20px;
  }

  .about .bodycopy p:first-child {
    margin-top: 30px;
  }

  /* point */
  .point {
    width: 100%;
    margin: auto;
    padding: 0;
    margin-bottom: 40px;
  }

  .point .titleArea {
    margin: 56px auto;
  }

  .point .titleArea .title img {
    width: auto;
  }

  .point .titleArea .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.12em;
    margin-top: 10px;
  }

  .point .itemWrap {
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
  }

  .point .itemWrap .point-item {
    width: 100%;
  }

  /* interview */
  .interview__read {
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    line-height: 27px;
  }

  .experience {
    width: 100%;
    margin: auto auto 40px auto;
  }

  .experience .titleArea {
    margin: 56px auto;
  }

  .experience .titleArea .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 37.25px;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
  }

  .experience .titleArea .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.12em;
    margin-top: 10px;
  }

  .experience__inner {
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    flex-direction: column;
  }

  .experience__inner .experience-item {
    width: 100%;
  }

  .experience__inner .experience-item .contentsArea {
    text-align: justify;
  }

  /* entry */
  .entry {
    width: 100%;
    padding: 0;
  }

  .entry__inner {
    padding: 30px;
  }

  /* process */
  .process {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
  }

  .process .titleArea {
    margin: 56px auto;
  }

  .process .titleArea .title {
    font-size: 32px;
    font-weight: 700;
    line-height: 37.25px;
    letter-spacing: 0.6em;
    text-indent: 0.6em;
  }

  .process .titleArea .subtitle {
    font-size: 14px;
    font-weight: 300;
    line-height: 21px;
    letter-spacing: 0.12em;
    margin-top: 10px;
  }

  .process__inner {
    padding: 30px;
  }

  /* information */
  .information {
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    background: #F6F4F3;
  }

  .information__inner {
    padding: 30px;
  }


  /* footer */
  footer {
    width: 100%;
  }

  .cardArea {
    gap: 40px;
    overflow-x: hidden;
    flex-direction: column;
  }

  .cardArea .card-item {
    width: 100%;
  }

  .viewmore__trigger {
    display: block;
  }

  .entry-banner-wrapper,
  .line-entry-banner-wrapper {
    width: 100vw;
    display: block;
    background: #FFFFFF;
    position: fixed;
    bottom: 0;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  }

  .entry-banner-wrapper .entry-banner {
    display: flex;
    justify-content: center;
    background: #FFFFFF;
    max-width: 1000px;
    padding: 22px 30px;
  }

  .line-entry-banner-wrapper .line-entry-banner {
    background: #FFFFFF;
    max-width: 1000px;
    padding: 21px 30px 26px;
  }

  .entry-banner-wrapper .entry-banner a,
  .line-entry-banner-wrapper .line-entry-banner a {
    text-decoration: none;
  }

  .line-entry-banner-wrapper .line-entry-banner .message-wrapper {
    margin-bottom: 23px;
  }

  .line-entry-banner-wrapper .line-entry-banner .message-wrapper .message {
    text-align: center;
  }

  .line-entry-banner-wrapper .line-entry-banner .message-wrapper .message p {
    color: #3B3B3B;
    text-align: center;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 3.9px;
  }

  .line-entry-banner-wrapper .line-entry-banner button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .line-entry-banner-wrapper .line-entry-banner button img {
    width: 26px;
    height: 26px;
  }

  .entry-banner-wrapper .entry-banner button,
  .line-entry-banner-wrapper .line-entry-banner button {
    background: linear-gradient(130deg, #eda3a3 0%, #eda3a3 15%, #E57C7C 15%, #E57C7C 100%);
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;
    letter-spacing: 4.2px;
    color: #FFFDFD;
    width: 315px;
    height: 51px;
    padding: 15px 0;
    text-decoration: none;
    text-align: center;
    border: none;
  }

  .line-entry-banner-wrapper .line-entry-banner .button-wrapper .button {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .line-entry-banner-wrapper .line-entry-banner button {
    width: 315px;
  }

  footer {
    padding: 0 0 120px 0;
  }

  .body-wrapper {
    width: unset;
    background: #F6F4F3;
    margin: auto;
  }

  .point-item .viewmore__trigger {
    margin: 15px auto 0;
  }

  .top1-wrapper,
  .top2-wrapper {
    width: calc(100vw + 21px);
    position: absolute;
    top: 0;
    left: 0;
  }

  .top3-wrapper {
    height: 520px;
    position: absolute;
    top: 0;
    left: 0;
  }

  .top1 {
    opacity: 1;
    transform: translateX(0);
    animation: top1_fade 3s forwards;
    animation-delay: 1s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }

  @keyframes top1_fade {
    0% {
      opacity: 1;
      transform: translateX(0);
    }

    100% {
      opacity: 0;
      transform: translateX(-21px);
    }
  }

  .top2 {
    opacity: 1;
    transform: translateX(-21px);
    animation: top2_fade 3s forwards;
    animation-delay: 3s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }

  @keyframes top2_fade {
    0% {
      opacity: 1;
      transform: translateX(-21px);
    }

    50% {
      opacity: 1;
      transform: translateX(calc(-21px / 2));
    }

    100% {
      opacity: 0;
      transform: translateX(0);
    }
  }

  .top3 {
    width: 100vw !important;
    height: 100% !important;
    opacity: 0;
    transform: translateY(-42%);
    animation: top3_fade 5s forwards;
    animation-delay: 5s;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
  }

  @keyframes top3_fade {
    0% {
      opacity: 0;
      transform: translateY(-42%);
    }

    100% {
      opacity: 1;
      transform: translateY(-23%);
    }
  }

  .message1 {
    opacity: 0;
    animation: message_1_fade 3s forwards;
    animation-delay: 1s;
    transition: opacity 1s ease-in-out;
  }

  @keyframes message_1_fade {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .message2 {
    opacity: 0;
    animation: message_2_fade 3s forwards;
    animation-delay: 3s;
    transition: opacity 1s ease-in-out;
  }

  @keyframes message_2_fade {
    0% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }

  .vision-message-wrapper {
    padding-top: 42px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vision-message-wrapper .vision-message .message-wrapper .message p {
    color: #191010;
    font-family: "Hiragino Kaku Gothic Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 23.797px;
    letter-spacing: 5.6px;
  }

  .pc-image-wrapper {
    display: none;
  }

  .experience__inner .experience-item .labelArea {
    height: auto;
  }
}