@charset "UTF-8";
.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about > * {
  min-height: 0%;
}

.about__link {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.about__link:hover {
  opacity: 0.7;
}

/* common:start */
body {
  background-color: #5a5ad2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "游ゴシック Medium", "Yu Gothic", "Yu Gothic Medium", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

/* common:end */
.about__text--bold, .about__text {
  line-height: 1.875;
  margin-block: -7px;
}

/* about:start */
.about {
  position: relative;
  margin-top: 50px;
  padding-bottom: 100px;
}
@media screen and (min-width: 1201px) {
  .about {
    margin-top: clamp(50px, 4vw, 90px);
    padding-bottom: clamp(100px, 7vw, 160px);
  }
}
.about__heading {
  position: relative;
  max-width: 620px;
  width: 100%;
  background-color: #fff;
  border: 1px #c8c800 solid;
  padding: 22px 12px;
  border-radius: 10px;
  font-size: 3rem;
  color: #5a5ad2;
  font-family: "mobo_semiBold", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__heading {
    padding-block: 14px;
    width: calc(100% - 30px);
    margin-inline: 15px;
    font-size: 2.7rem;
  }
}
@media screen and (min-width: 1201px) {
  .about__heading {
    max-width: clamp(620px, 44vw, 980px);
    padding: clamp(22px, 1.6vw, 34px) clamp(12px, 1.2vw, 24px);
    border-radius: clamp(10px, 0.8vw, 16px);
    font-size: clamp(3rem, 2.1vw, 4.4rem);
  }
}
.about__heading {
  --tag-bg: #fff;
  --notch: 5px;
  --tri-w: 11px;
  --tri-h: 22px;
}
.about__heading::before, .about__heading::after {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(100% - var(--notch));
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 1;
}
.about__heading::before {
  border-left: var(--tri-w) solid transparent;
  border-right: var(--tri-w) solid transparent;
  border-top: var(--tri-h) solid #c8c800;
}
.about__heading::after {
  margin-top: -1px;
  border-left: calc(var(--tri-w) - 1px) solid transparent;
  border-right: calc(var(--tri-w) - 1px) solid transparent;
  border-top: calc(var(--tri-h) - 1px) solid var(--tag-bg);
}
@media screen and (max-width: 768px) {
  .about__heading {
    --notch: 4px;
    --tri-w: 10px;
    --tri-h: 22px;
  }
}
@media screen and (min-width: 1201px) {
  .about__heading {
    --notch: clamp(5px, 0.45vw, 8px);
    --tri-w: clamp(11px, 0.9vw, 18px);
    --tri-h: clamp(22px, 1.7vw, 34px);
  }
}
.about__container {
  margin-top: 10px;
  max-width: 760px;
  width: 100%;
  background-color: #fff;
  border: 1px #afaf00 solid;
  padding: 68px 55px 105px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .about__container {
    width: calc(100% - 30px);
    margin-inline: 15px;
    padding: 48px 25px 84px;
  }
}
@media screen and (min-width: 1201px) {
  .about__container {
    margin-top: clamp(10px, 1vw, 18px);
    max-width: clamp(760px, 54vw, 1150px);
    padding: clamp(68px, 4vw, 98px) clamp(55px, 3.6vw, 82px) clamp(105px, 6vw, 160px);
    border-radius: clamp(5px, 0.6vw, 10px);
  }
}
.about__subheading {
  font-size: 1.8rem;
  color: #5a5ad2;
  font-family: "mobo_semiBold", sans-serif;
}
@media screen and (min-width: 1201px) {
  .about__subheading {
    font-size: clamp(1.8rem, 1.3vw, 2.6rem);
  }
}
.about__subheading::after {
  content: "";
  display: block;
  background: #5a5ad2;
  margin-top: 9px;
  margin-bottom: 35px;
  height: 1px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__subheading::after {
    margin-bottom: 20px;
    height: 2px;
  }
}
@media screen and (min-width: 1201px) {
  .about__subheading::after {
    margin-top: clamp(9px, 0.8vw, 14px);
    margin-bottom: clamp(35px, 2.2vw, 55px);
    height: clamp(1px, 0.15vw, 2px);
  }
}
.about__text {
  font-size: 1.6rem;
}
@media screen and (min-width: 1201px) {
  .about__text {
    font-size: clamp(1.6rem, 1.05vw, 2.2rem);
  }
}
.about__text--bold {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (min-width: 1201px) {
  .about__text--bold {
    font-size: clamp(1.6rem, 1.05vw, 2.2rem);
  }
}
.about__text:not(:first-of-type) {
  margin-top: 18px;
}
@media screen and (min-width: 1201px) {
  .about__text:not(:first-of-type) {
    margin-top: clamp(18px, 1.2vw, 28px);
  }
}
.about__section:not(:first-child) {
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .about__section:not(:first-child) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1201px) {
  .about__section:not(:first-child) {
    margin-top: clamp(90px, 6vw, 140px);
  }
}
.about__career {
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
  margin-top: -7px;
}
.about__career .about__text--bold {
  margin: 0;
}
.about__contents[data-device=iphone] .about__label,
.about__contents[data-device=iphone] .about__info-label,
.about__contents[data-device=iphone] .about__text,
.about__contents[data-device=iphone] .about__text--bold {
  font-weight: 500;
}
.about__label {
  padding-right: 0.5em;
  white-space: nowrap;
  font-size: 1.6rem;
}
@media screen and (min-width: 1201px) {
  .about__label {
    font-size: clamp(1.6rem, 1.05vw, 2.2rem);
  }
}
.about__item:not(:first-child) {
  margin-top: 16px;
}
@media screen and (min-width: 1201px) {
  .about__item:not(:first-child) {
    margin-top: clamp(16px, 1.1vw, 24px);
  }
}
.about__info:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .about__info:not(:first-of-type) {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1201px) {
  .about__info:not(:first-of-type) {
    margin-top: clamp(40px, 2.6vw, 70px);
  }
}
.about__info-label {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about__info-label {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1201px) {
  .about__info-label {
    font-size: clamp(1.6rem, 1.1vw, 2rem);
    margin-bottom: clamp(10px, 0.9vw, 16px);
  }
}
.about__buttons {
  scroll-margin-top: 140px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 26px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__buttons {
    position: static;
    bottom: 0;
    left: 0;
    transform: inherit;
    margin-top: 14px;
    width: calc(100% - 30px);
    margin-inline: 15px;
    gap: 15px;
  }
}
@media screen and (min-width: 1201px) {
  .about__buttons {
    bottom: clamp(40px, 3vw, 70px);
    gap: clamp(26px, 2vw, 40px);
  }
}
.about__link {
  width: min(295px, 100%);
  background-color: #fff;
  padding: 29px 20px;
  border: 1px #afaf00 solid;
  border-radius: 5px;
  text-align: center;
  box-shadow: 8px 8px 0 rgba(30, 30, 160, 0.2509803922);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5a5ad2;
  font-family: "mobo_semiBold", sans-serif;
  font-size: 2.5rem;
  line-height: 1.2;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 768px) {
  .about__link {
    font-size: 1.5rem;
    line-height: 1.3333333333;
    padding: 19px 0;
    min-height: 100px;
    box-shadow: 4px 4px 0 rgba(30, 30, 160, 0.2509803922);
  }
}
@media screen and (max-width: 375px) {
  .about__link {
    font-size: 4vw;
  }
}
@media screen and (min-width: 1201px) {
  .about__link {
    width: min(clamp(295px, 20vw, 420px), 100%);
    padding: clamp(29px, 2vw, 44px) clamp(20px, 1.6vw, 28px);
    border-radius: clamp(5px, 0.6vw, 10px);
    box-shadow: clamp(8px, 0.7vw, 14px) clamp(8px, 0.7vw, 14px) 0 rgba(30, 30, 160, 0.2509803922);
    font-size: clamp(2.5rem, 1.6vw, 3.4rem);
  }
}
@media (any-hover: hover) {
  .about__link:hover {
    opacity: 1;
    background-color: #cccccc;
    color: #fff;
  }
}
.about__link:focus-visible {
  opacity: 1;
  background-color: #cccccc;
  color: #fff;
}
.about__link-text {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.about__link-text:link {
  color: #0000EE;
}
.about__link-text:visited {
  color: #551A8B;
}

/* about:end */