.tt-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .tt-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .tt-sp-only {
    display: none;
  }
}

.tt-home {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .tt-home .tt-content {
    padding-top: 0;
  }
}
.tt-home-btn a {
  background: #007FDE;
  border-radius: 32px;
  color: #fff;
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  text-decoration: none;
  width: 330px;
  position: relative;
}
.tt-home-btn a::after {
  content: url(../../img/recruit/common/tt-btn-arrow.svg);
  display: inline-block;
  width: 8px;
  height: 14px;
  position: absolute;
  right: 20px;
}
.tt-home-btn a:hover {
  background: #0068B6;
}
@media screen and (min-width: 768px) {
  .tt-home-btn a {
    border-radius: 32px;
    font-size: 1.125rem;
    padding: 19px 0;
    width: 330px;
  }
}
.tt-home-btn.dark a {
  background: #0068B6;
}
.tt-home-image-wide {
  width: calc(100% + 28px);
  margin: 0 -14px;
}
@media screen and (min-width: 768px) {
  .tt-home-image-wide {
    width: 100%;
    margin: 0;
  }
}

.tt-home-line {
  position: absolute;
  top: 0;
  left: calc(50% - 130px);
  z-index: 5;
}
.tt-home-line::after, .tt-home-line::before {
  position: absolute;
  top: 0;
  left: 0;
  height: 100svh;
  width: 156px;
  background-color: gray;
  mix-blend-mode: overlay;
  opacity: 0.8;
  transform: skew(-45deg);
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .tt-home-line::after, .tt-home-line::before {
    width: 260px;
  }
}

.tt-home-title {
  height: 196svw;
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 44px;
}
@media screen and (min-width: 768px) {
  .tt-home-title {
    height: 760px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }
}
.tt-home-title-main {
  width: 100%;
  margin: auto;
  padding: 0 30px;
  z-index: 10;
  position: absolute;
  top: 54svw;
  left: 0;
}
.tt-home-title-main > h1 {
  margin-bottom: 20px;
}
.tt-home-title-main > h1 img {
  max-width: 400px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tt-home-title-main {
    max-width: 1160px;
    width: 100%;
    margin: 64px 80px;
    padding: 0;
    z-index: 10;
    position: static;
  }
  .tt-home-title-main > h1 {
    margin-bottom: 20px;
  }
  .tt-home-title-main > h1 img {
    width: 400px;
  }
}

.tt-home-carousel-lins {
  position: absolute;
  top: 0;
  left: 10%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .tt-home-carousel-lins {
    top: 0;
    left: 33%;
  }
}
.tt-home-carousel-lins > div {
  display: block;
  position: absolute;
  top: -100svh;
  left: calc(100svh + 125px);
  width: 260px;
  height: 760px;
  background-color: #BAFF00;
  opacity: 0.8;
  transform: skew(-45deg);
  z-index: 5;
  transition: background-color 0.5s;
}
.tt-home-carousel-lins > div:nth-child(1) {
  background-color: #BAFF00;
}
.tt-home-carousel-lins > div:nth-child(2) {
  background-color: #FFF738;
}
.tt-home-carousel-lins > div:nth-child(3) {
  background-color: #00FF9D;
}
.tt-home-carousel-lins > div.active {
  top: 0;
  left: 0;
  opacity: 1;
}
.tt-home-carousel-lins > div.in {
  animation: 0.5s both carousel-lins-in;
}
@keyframes carousel-lins-in {
  0% {
    top: -100svh;
    left: calc(100svh + 125px);
    width: 10px;
  }
  50% {
    top: 0;
    left: 125px;
    width: 10px;
  }
  100% {
    top: 0;
    left: 0;
    width: 260px;
  }
}
.tt-home-carousel-lins > div.out {
  animation: 0.5s both carousel-lins-out;
}
@keyframes carousel-lins-out {
  0% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: -100px;
    opacity: 0;
  }
}
.tt-home-carousel-imgs {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100svw;
  height: 100svw;
}
@media screen and (min-width: 768px) {
  .tt-home-carousel-imgs {
    left: 45%;
    width: 55%;
    height: 760px;
    min-width: 760px;
    z-index: 1;
    overflow: hidden;
  }
}
.tt-home-carousel-imgs img {
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  transition: 1s;
}
@media screen and (min-width: 768px) {
  .tt-home-carousel-imgs img {
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    min-height: 760px;
    transition: 1s;
  }
}
.tt-home-carousel-imgs img.active {
  left: 0;
}
.tt-home-carousel-imgs img.in {
  animation: 0.5s both carousel-imgs-in;
}
@keyframes carousel-imgs-in {
  from {
    left: 100%;
  }
  to {
    left: 0;
  }
}
.tt-home-carousel-imgs img.out {
  animation: 0.5s both carousel-imgs-out;
}
@keyframes carousel-imgs-out {
  from {
    left: 0;
  }
  to {
    left: -100%;
  }
}
.tt-home-carousel-subs {
  position: relative;
}
.tt-home-carousel-subs > span {
  font-size: 1.75rem;
  color: #0068B6;
  position: absolute;
  top: 0;
  left: 100px;
  opacity: 0;
}
.tt-home-carousel-subs > span.active {
  opacity: 1;
  left: 0;
}
.tt-home-carousel-subs > span.in {
  animation: 0.5s both carousel-btns-in;
}
@keyframes carousel-btns-in {
  from {
    opacity: 0;
    left: 100px;
  }
  to {
    opacity: 1;
    left: 0;
  }
}
.tt-home-carousel-subs > span.out {
  animation: 0.5s both carousel-btns-out;
}
@keyframes carousel-btns-out {
  from {
    opacity: 1;
    left: 0;
  }
  to {
    opacity: 0;
    left: -100px;
  }
}
.tt-home-carousel-btns {
  position: absolute;
  bottom: 40px;
  display: flex;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, 0);
}
.tt-home-carousel-btns > div {
  width: 16px;
  height: 16px;
  border-radius: 8px;
  background: #FFFFFF;
  margin: 0 8px;
  cursor: pointer;
  transition: 0.5s background-color;
}
.tt-home-carousel-btns > div.active {
  background: #007FDE;
}

.tt-home-wrap {
  max-width: 1160px;
  width: 100%;
  z-index: 10;
}

.tt-home-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 30px 64px 30px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .tt-home-section {
    padding: 80px 80px;
  }
}
.tt-home-section > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  flex-direction: column;
}
.tt-home-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}
.tt-home-section h3 {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}
.tt-home-section span {
  font-size: 1rem;
  font-weight: 400;
  display: block;
  color: #0068B6;
}
.tt-home-section p {
  font-size: 1.125rem;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 0;
}
.tt-home-section p:first-child {
  margin-top: 0;
}
.tt-home-section .tt-home-btn {
  margin-top: 40px;
  margin-bottom: 0;
}
.tt-home-section .tt-home-btn:first-child {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .tt-home-section > div {
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .tt-home-section h2 {
    font-size: 2.25rem;
  }
  .tt-home-section h3 {
    font-size: 2.25rem;
    font-weight: bold;
    text-align: left;
  }
  .tt-home-section span {
    font-size: 1rem;
    font-weight: normal;
  }
  .tt-home-section p {
    font-size: 1.125rem;
    font-weight: normal;
    margin-top: 40px;
  }
  .tt-home-section .tt-home-btn {
    margin-top: 40px;
  }
}
.tt-home-section-center {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.tt-home-section-center p {
  font-weight: 700;
  max-width: 680px;
  line-height: 2;
}
.tt-home-section-column {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 64px;
}
.tt-home-section-column-item {
  width: 100%;
  padding-bottom: 40px;
}
.tt-home-section-column-item:last-child {
  padding-bottom: 0;
}
.tt-home-section-column-item img {
  width: 100%;
  margin-bottom: 16px;
}
.tt-home-section-column-item label {
  font-size: 1.125rem;
  font-weight: bold;
}
.tt-home-section-column-item p {
  font-size: 1.125rem;
  margin-top: 16px;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .tt-home-section-column {
    flex-direction: row;
  }
  .tt-home-section-column-item {
    max-width: 360px;
    width: 31%;
    padding-bottom: 0;
  }
  .tt-home-section-column-item p {
    margin-bottom: 0;
  }
}
.tt-home-section-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .tt-home-section-left {
    width: 31%;
    display: block;
  }
}
.tt-home-section-right {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .tt-home-section-right {
    width: 65%;
    margin-top: 0;
  }
}
.tt-home-section-left-half {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .tt-home-section-left-half {
    width: 48%;
  }
}
.tt-home-section-right-half {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .tt-home-section-right-half {
    width: 48%;
    margin-top: 0;
  }
}
.tt-home-section-bottom {
  width: 100%;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .tt-home-section-bottom {
    margin-top: 64px;
  }
}
.tt-home-section-images {
  width: calc(100% + 60px);
  position: relative;
  left: -30px;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 50svw;
}
.tt-home-section-images > div {
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.tt-home-section-images img {
  width: 50svw;
  margin-right: 8px;
}
.tt-home-section-images img:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .tt-home-section-images {
    height: auto;
  }
  .tt-home-section-images img {
    width: 32.7%;
    margin-right: 0;
  }
}
.tt-home-section-news {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.tt-home-section-news-item {
  padding: 24px 0;
  border-bottom: 1px solid #E5E5E5;
}
.tt-home-section-news-item:first-child {
  border-top: 1px solid #E5E5E5;
}
.tt-home-section-news-item label {
  font-size: 1rem;
  font-weight: normal;
}
.tt-home-section-news-item .tag {
  display: inline;
  font-size: 0.875rem;
  font-weight: normal;
  background: #000000;
  color: #FFFFFF;
  padding: 2px 4px;
  margin-left: 8px;
}
.tt-home-section-news-item h4 {
  font-size: 1.125rem;
  padding: 16px 0 0 0;
  margin-bottom: 0;
  line-height: 1.5;
}
.tt-home-section-news-item p {
  font-size: 1rem;
  font-weight: normal;
  padding: 16px 0 0 0;
  margin: 0;
}
.tt-home-section-news-item dl dt {
  margin-bottom: 0.5rem;
}
.tt-home-section-news-item dl dd {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
}
.tt-home-section-news-item .credit {
  text-align: right;
  padding-top: 8px;
}
.tt-home-section-news .photo-box {
  padding-top: 32px;
}
.tt-home-section-news .photo-box-item {
  margin: 0;
  padding-bottom: 24px;
  text-align: center;
}
.tt-home-section-news .photo-box-item img {
  width: 90%;
}
.tt-home-section-news .photo-box-item figcaption {
  font-size: 0.875rem;
  line-height: 1.43;
}
@media screen and (min-width: 768px) {
  .tt-home-section-news {
    width: 760px;
    margin-top: 0;
  }
  .tt-home-section-news .photo-box {
    display: flex;
    flex-wrap: wrap;
  }
  .tt-home-section-news .photo-box-item {
    width: 50%;
  }
}

.section-about .tt-home-line:before {
  content: " ";
  background: #FFF738;
  height: 200svw;
  mix-blend-mode: overlay;
  opacity: 0.8;
}
@media screen and (min-width: 768px) {
  .section-about .tt-home-line:before {
    height: 960px;
  }
}

.section-interview {
  color: #FFFFFF;
  background: #027FDE;
}
.section-interview span {
  color: #CCCCCC;
}
.section-interview .tt-home-line:before {
  content: " ";
  background: #BAFF00;
  height: 200svw;
  mix-blend-mode: overlay;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .section-interview .tt-home-line:before {
    height: 654px;
  }
}
.section-interview .tt-home-line::after {
  content: " ";
  background: #E44DFF;
  left: 88px;
  height: 200svw;
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .section-interview .tt-home-line::after {
    left: 130px;
    height: 654px;
  }
}

.section-ourjob {
  color: #333333;
}
.section-ourjob span {
  color: #0068B6;
}
.section-ourjob .tt-home-line::before {
  content: " ";
  height: 203svw;
  background: #00FF9D;
  left: 240px;
}
@media screen and (min-width: 768px) {
  .section-ourjob .tt-home-line::before {
    height: 730px;
  }
}

.section-project {
  color: #FFFFFF;
  background: #027FDE;
}
.section-project span {
  color: #CCCCCC;
}
.section-project .tt-home-line::before {
  content: " ";
  background: #00EBFF;
  height: 200svw;
}
@media screen and (min-width: 768px) {
  .section-project .tt-home-line::before {
    height: 880px;
  }
}
.section-project .tt-home-line::after {
  content: " ";
  background: #E44DFF;
  left: -880px;
  height: 200svw;
}
@media screen and (min-width: 768px) {
  .section-project .tt-home-line::after {
    height: 880px;
  }
}

.section-recruit {
  padding-bottom: 120px;
}
.section-recruit .tt-home-line::before {
  content: " ";
  background: #BAFF00;
  top: 520px;
  left: -100svw;
  width: 200svw;
  height: 200svw;
  transform: none;
}
@media screen and (min-width: 768px) {
  .section-recruit .tt-home-line::before {
    top: 410px;
    height: 158px;
  }
}

/*# sourceMappingURL=home.css.map */
