html {
  scroll-behavior: smooth;
}

body {
  font-family: "Ysabeau Office";
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: auto;
  color: #44413D;
  background-color: #FFFDFA;
}
@media screen and (max-width: 900px) {
  body {
    font-size: 14px;
  }
}

.u-wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0 80px;
}
@media screen and (max-width: 900px) {
  .u-wrapper {
    padding: 0 30px;
  }
}

.header {
  background-color: #FFDC96;
  width: 100%;
  height: auto;
  position: fixed;
  z-index: 100;
  top: 0;
}

.header__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .header__inner {
    width: 100%;
    padding: 10px 30px;
  }
}

.header__title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.8;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 12.5px 0;
}
@media screen and (max-width: 900px) {
  .header__title {
    font-size: 24px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  font-weight: 600;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .header__nav {
    display: none;
  }
}

.header__navLeft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.header__navRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.header__itemLink {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__itemLink:hover {
  opacity: 0.8;
}

.header__togglebtn {
  display: none;
}
@media screen and (max-width: 900px) {
  .header__togglebtn {
    display: block;
    width: 30px;
    height: 38px;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 20;
  }
}

.header__hamburgerLine {
  display: block;
  position: absolute;
  background-color: #44413D;
  width: 30px;
  height: 1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header__hamburgerLine:nth-child(1) {
  top: 11px;
}
.header__hamburgerLine:nth-child(2) {
  top: 20px;
}
.header__hamburgerLine:nth-child(3) {
  top: 29px;
}

.header__mask {
  background-color: #ffffff;
  position: fixed;
  width: 100%;
  height: 100vh;
  right: -120%;
  top: 63.2px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.header__masknav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 80px auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #44413D;
  font-weight: 600;
  font-size: 20px;
}

.header__maskList {
  margin-top: 42px;
}
.header__maskList:first-of-type {
  margin-top: 0;
}

.header__maskLink {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.header__maskLink:hover {
  opacity: 0.8;
}

.open .header__hamburgerLine:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}
.open .header__hamburgerLine:nth-child(2) {
  display: none;
}
.open .header__hamburgerLine:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}
.open .header__mask {
  right: 0;
  z-index: 10;
}

.firstview {
  padding-top: 141px;
  width: 100%;
  background: transparent url(./img/firstview_pc.png) repeat;
}
@media screen and (max-width: 900px) {
  .firstview {
    padding-top: 63.2px;
    background: transparent url(./img/firstview_sp.png) repeat;
  }
}

.firstview__container {
  padding: 192px 160px;
  line-height: 1.8;
}
@media screen and (max-width: 900px) {
  .firstview__container {
    padding: 165px 30px;
  }
}

.firstview__title {
  font-size: 96px;
  font-weight: 800;
  text-shadow: 2px 2px 2px #747272;
}
@media screen and (max-width: 1101px) {
  .firstview__title {
    font-size: 56px;
  }
}
@media screen and (max-width: 900px) {
  .firstview__title {
    font-size: 36px;
  }
}

.slide-in {
  opacity: 0;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
  -webkit-animation: slideIn 1.5s forwards;
          animation: slideIn 1.5s forwards;
}
.slide-in:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

@-webkit-keyframes slideIn {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideIn {
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.firstview__text {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 1101px) {
  .firstview__text {
    font-size: 20px;
  }
}
@media screen and (max-width: 900px) {
  .firstview__text {
    font-size: 14px;
  }
}

.section__inner {
  padding: 131px 80px 40px;
}
@media screen and (max-width: 900px) {
  .section__inner {
    padding: 50px 0;
  }
}

.section__inner--works {
  padding: 131px 0 40px;
}
@media screen and (max-width: 900px) {
  .section__inner--works {
    padding: 50px 0;
  }
}

.section__title {
  height: auto;
  padding: 10px 0 30px;
}
@media screen and (max-width: 900px) {
  .section__title {
    padding: 10px 0 0;
  }
}

.section__title--works {
  padding: 10px 80px 20px;
}
@media screen and (max-width: 900px) {
  .section__title--works {
    padding: 10px 0;
  }
}

.section__title--en {
  font-size: 50px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.section__title--en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #44413D;
}
@media screen and (max-width: 900px) {
  .section__title--en {
    font-size: 32px;
  }
}

.section__title--ja {
  padding-top: 10px;
}

.about__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
  }
}

.about__img {
  width: 31.6%;
  min-width: 320px;
}
@media screen and (max-width: 900px) {
  .about__img {
    width: 74.35%;
    max-width: 290px;
    min-width: 100px;
  }
}

.about__textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
}
@media screen and (max-width: 900px) {
  .about__textContainer {
    padding: 0;
  }
}

.name,
.about__text {
  line-height: 30px;
}
@media screen and (max-width: 900px) {
  .name,
  .about__text {
    line-height: 25px;
  }
}

.about__text {
  margin-bottom: 50px;
}
@media screen and (max-width: 900px) {
  .about__text {
    margin-bottom: 30px;
  }
}

.viewmore__btn {
  letter-spacing: 0;
  font-weight: 600;
  background-color: #FFDC96;
  text-align: center;
  width: 160px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  border: 1px solid #44413D;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.viewmore__btn:hover {
  background-color: #44413D;
  color: #FFDC96;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 900px) {
  .viewmore__btn {
    width: 130px;
    height: 40px;
    margin: 0 auto;
  }
}

.card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .card__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 20px;
  }
}

.card__item {
  max-width: 360px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 26.5px 20px;
  border: 2px solid #44413D;
  border-radius: 10px;
  gap: 20px;
  background-color: #ffffff;
}
@media screen and (max-width: 900px) {
  .card__item {
    max-width: 300px;
    padding: 19.5px 30px;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: opacity 2s, -webkit-transform 1s ease-in-out;
  transition: opacity 2s, -webkit-transform 1s ease-in-out;
  transition: opacity 2s, transform 1s ease-in-out;
  transition: opacity 2s, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.fadeIn.is-scrollIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fadeIn-load {
  opacity: 0;
  -webkit-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: opacity 2s, -webkit-transform 1s ease-in-out;
  transition: opacity 2s, -webkit-transform 1s ease-in-out;
  transition: opacity 2s, transform 1s ease-in-out;
  transition: opacity 2s, transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
}

.fadeIn-load.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.card__itemTitle {
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .card__itemTitle {
    font-size: 16px;
  }
}

.card__itemImg {
  width: 150px;
  height: 150px;
}
@media screen and (max-width: 900px) {
  .card__itemImg {
    width: 130px;
    height: 130px;
  }
}

.card__itemText {
  line-height: 25px;
}
@media screen and (max-width: 900px) {
  .card__itemText {
    line-height: 20px;
  }
}

.works__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding-bottom: 40px;
  gap: 0;
}
@media screen and (max-width: 900px) {
  .works__container {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 900px) {
  .swiper-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.works__item--inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 44px 10px;
  border: 2px solid #44413D;
  border-radius: 10px;
  gap: 20px;
  background-color: #ffffff;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.3s;
  transition: transform 0.2s, opacity 0.3s, -webkit-transform 0.2s;
}
.works__item--inner:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 900px) {
  .works__item--inner {
    max-width: 300px;
    padding: 41.09px 10px;
  }
}
.works__item--inner img {
  width: 100%;
  height: auto;
}

.swiper-slide {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 10px;
}

.works__itemTitle {
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
}

.works__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.swiper__btnNext,
.swiper__btnPrev {
  width: 80px;
  height: auto;
}
@media screen and (max-width: 900px) {
  .swiper__btnNext,
  .swiper__btnPrev {
    display: none;
  }
}
.swiper__btnNext::after,
.swiper__btnPrev::after {
  display: none;
}
.swiper__btnNext img,
.swiper__btnPrev img {
  width: 18px;
  height: 32px;
}
.swiper__btnNext img:hover,
.swiper__btnPrev img:hover {
  opacity: 0.7;
}

.swiper__btnPrev {
  padding-left: 37px;
}

.swiper__btnNext {
  padding-left: 15px;
}

.contact__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.contact__text {
  letter-spacing: 0;
}
@media screen and (max-width: 900px) {
  .contact__text {
    line-height: 25px;
    letter-spacing: 0.03em;
  }
}

.wpcf7-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.wpcf7-form-control {
  display: block;
  width: 500px;
  height: auto;
  opacity: 1;
  visibility: visible;
  background: #ffffff;
  border: 1px solid #44413D;
  padding: 8px;
  border-radius: 5px;
  margin-top: 5px;
}
@media screen and (max-width: 900px) {
  .wpcf7-form-control {
    width: 100%;
  }
}

.wpcf7-submit {
  letter-spacing: 0;
  font-weight: 600;
  background-color: #FFDC96;
  text-align: center;
  width: 160px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  cursor: pointer;
  border: 1px solid #44413D;
  border-radius: 50px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.wpcf7-submit:hover {
  background-color: #44413D;
  color: #FFDC96;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
@media screen and (max-width: 900px) {
  .wpcf7-submit {
    width: 130px;
    height: 40px;
    margin: 0 auto;
  }
}

.wpcf7-form label {
  font-size: 14px;
  letter-spacing: 0;
}

.footer {
  background-color: #FFDC96;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: 600;
  font-size: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 900px) {
  .footer__inner {
    line-height: 16px;
    padding-top: 21.5px;
    padding-bottom: 21.5px;
  }
}

.footer__itemRight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .footer__itemRight {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .footer__itemLeft {
    font-size: 12px;
  }
}

.arrow img {
  width: 24px;
  height: 24px;
}
@media screen and (max-width: 900px) {
  .arrow img {
    width: 18px;
    height: 18px;
  }
}

.works__detail {
  margin-top: 141px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .works__detail {
    margin-top: 63.2px;
  }
}

.section__title--detail {
  padding: 20px 0 10px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .section__title--detail {
    padding: 10px 0 0;
  }
}

.works__detailItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.works__detailCard {
  width: 30%;
  min-width: 270px;
  max-width: 450px;
  background: #ffffff;
  padding: 44px 20px;
  border: 1px solid #44413D;
  border-radius: 10px;
  overflow: hidden;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: opacity 0.3s, -webkit-transform 0.2s;
  transition: transform 0.2s, opacity 0.3s;
  transition: transform 0.2s, opacity 0.3s, -webkit-transform 0.2s;
}
.works__detailCard:hover {
  opacity: 0.7;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.works__cardImg{
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__detailCard img {
  width: 100%;
  height: 100%;
}

.works__cardTitle {
  letter-spacing: 0;
  text-align: center;
  margin-top: 20px;
}

.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid #44413D;
  border-radius: 50px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.page-numbers:hover {
  background-color: #44413D;
  color: #ffffff;
}

.current {
  background-color: #44413D;
  color: #ffffff;
}

.prev,
.next {
  border: none;
  background-color: #FFFDFA;
  width: 20px;
  font-size: 14px;
  font-weight: 800;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.prev:hover,
.next:hover {
  background-color: #FFFDFA;
  color: #44413D;
  opacity: 0.7;
}

.about__detail {
  margin-top: 141px;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .about__detail {
    margin-top: 63.2px;
  }
}

.section__inner--detail {
  padding: 50px 80px 0 80px;
}
@media screen and (max-width: 900px) {
  .section__inner--detail {
    padding: 40px 0 0 0;
  }
}

.about__title--left {
  font-size: 42px;
  font-weight: 600;
  padding: 30px 0 10px;
}
@media screen and (max-width: 900px) {
  .about__title--left {
    font-size: 24px;
  }
}

.about__title--num {
  color: #FFC757;
  position: relative;
  display: inline-block;
}
.about__title--num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: #44413D;
}

.profile__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .profile__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about-wrapper {
  padding: 20px 60px 70px 60px;
}
@media screen and (max-width: 900px) {
  .about-wrapper {
    padding: 20px 0 30px 0;
  }
}

.profile__textContainer {
  line-height: 30px;
}
@media screen and (max-width: 900px) {
  .profile__textContainer {
    line-height: 25px;
  }
}

.profile__img {
  width: 31.6%;
  min-width: 320px;
}
@media screen and (max-width: 900px) {
  .profile__img {
    width: 74.35%;
    max-width: 290px;
    min-width: 100px;
  }
}

.about__title--right {
  font-size: 42px;
  font-weight: 600;
  padding: 30px 0 10px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .about__title--right {
    font-size: 24px;
  }
}

.skill__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .skill__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    position: relative;
  }
}

.skill__textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .skill__textContainer {
    gap: 10px;
  }
}

.skill__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.skill__list--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.skill__listItem {
  width: 140px;
  height: 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  padding: 5px 30px;
  background-color: #44413D;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .skill__listItem {
    width: 55px;
    height: 30px;
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
    padding: 0 5px;
  }
}

.skill__itemText {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
@media screen and (max-width: 900px) {
  .skill__itemText {
    font-size: 14px;
  }
}

.last {
  font-size: 16px;
}
@media screen and (max-width: 900px) {
  .last {
    font-size: 12px;
  }
}

.skill__listText {
  line-height: 30px;
}
@media screen and (max-width: 900px) {
  .skill__listText {
    line-height: 25px;
  }
}

.skill__text {
  line-height: 30px;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .skill__text {
    text-align: center;
    line-height: 70px;
  }
}

.skill__img {
  width: 17.8571%;
}
@media screen and (max-width: 900px) {
  .skill__img {
    width: 21.2121%;
    position: absolute;
    right: 0;
    bottom: 30px;
  }
}

.career__textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .career__textContainer {
    gap: 20px;
  }
}

.career__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 900px) {
  .career__list {
    gap: 20px;
  }
}

.career__date {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 30px;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .career__date {
    font-size: 16px;
    line-height: 25px;
  }
}

.career__list--inner {
  line-height: 30px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 900px) {
  .career__list--inner {
    line-height: 25px;
    letter-spacing: 0.03em;
  }
}

.career__textTitle {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 900px) {
  .career__textTitle {
    font-size: 16px;
  }
}

.card__container--about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .card__container--about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.myVision__textContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 30px;
  letter-spacing: 0.05em;
  position: relative;
}
@media screen and (max-width: 900px) {
  .myVision__textContainer {
    line-height: 25px;
    letter-spacing: 0.03em;
  }
}

.myVision__img {
  width: 150px;
  float: right;
  margin-left: 20px;
}
@media screen and (max-width: 900px) {
  .myVision__img {
    width: 21.2121%;
  }
}

.works__post {
  padding: 30px 0 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .works__post {
    padding: 30px 0;
  }
}

.works__postTitle {
  font-size: 28px;
}
@media screen and (max-width: 900px) {
  .works__postTitle {
    font-size: 20px;
  }
}

.works__postThumbnail {
  padding: 40px 0 30px;
}
.works__postThumbnail img {
  width: 60%;
  height: auto;
}
@media screen and (max-width: 900px) {
  .works__postThumbnail {
    padding: 20px 0;
  }
}

.works__custom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.works__customBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 30px 40px;
}
@media screen and (max-width: 900px) {
  .works__customBottom {
    padding: 20px 0;
    gap: 20px;
  }
}

.works__customText {
  width: 71.66%;
  text-align: left;
  line-height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 900px) {
  .works__customText {
    width: 77.77%;
    line-height: 20px;
  }
}

.works__postBtn {
  width: 40px;
  height: 40px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .works__postBtn {
    width: 30px;
    height: 30px;
  }
}
.works__postBtn a {
  width: 40px;
  height: 40px;
  border: 1px solid #44413D;
  border-radius: 50px;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
}
@media screen and (max-width: 900px) {
  .works__postBtn a {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.works__postBtn a:hover {
  background-color: #44413D;
  color: #ffffff;
}

.arrowLeft {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.arrowLeft:hover {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.arrowRight {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.arrowRight:hover {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}