@charset "UTF-8";
html {
  font-size: 100%;
}

body {
  width: 100%;
  background-color: #e8f8fb;
}

a {
  color: #5e5343;
}

.inner {
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
  text-align: center;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100px;
  background-color: #e8f8fb;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.site-logo {
  font-size: 36px;
  margin-left: 61px;
  color: #5e5343;
  font-family: "Noto Serif", serif;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .site-logo {
    font-size: 28px;
    margin-left: 30px;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 85px;
}
@media screen and (max-width: 767px) {
  .nav__list {
    padding: 0;
  }
}

.nav__item:not(:first-child) {
  margin-left: 35px;
}
@media screen and (max-width: 767px) {
  .nav__item:not(:first-child) {
    margin-left: 0;
  }
}

.nav__link {
  font-family: "Noto Serif", serif;
  color: #5e5343;
  font-size: 25px;
  font-weight: bold;
}

/* メニューオープン時 */
.nav-wrapper.slide-in {
  opacity: 1;
  visibility: visible;
}

.burger-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  /************************************/
  /*  base_sp  /*
  /* 　デフォルトのbuttonスタイルをリセット*/
  .button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    font: inherit;
    margin: 0;
    outline: none;
    padding: 0;
    vertical-align: middle;
  }
  /* ------------------ */
  /* humberger-menu */
  /* ------------------ */
  .header {
    padding: 0 40px;
  }
  /* 以下、ハンバーガーボタン */
  .burger-btn {
    display: block;
    height: 39px;
    position: relative;
    width: 39px;
    z-index: 3;
    /* codepenの挙動のため */
    background-color: transparent;
    border: none;
  }
  .bar {
    background-color: #5e5343;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 20px;
  }
  .bar_top {
    top: 10px;
  }
  .bar_mid {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .bar_bottom {
    bottom: 10px;
  }
  .burger-btn.close .bar_top {
    -webkit-transform: translate(-50%, 10px) rotate(45deg);
            transform: translate(-50%, 10px) rotate(45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .burger-btn.close .bar_mid {
    opacity: 0;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .burger-btn.close .bar_bottom {
    -webkit-transform: translate(-50%, -8px) rotate(-45deg);
            transform: translate(-50%, -8px) rotate(-45deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  /* スクロール制御 */
  .noscroll {
    overflow: hidden;
  }
  /* 以下、ハンバーガーメニュー */
  .nav-wrapper {
    visibility: hidden;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
    z-index: 2; /*キービジュアルと.btn_triggerとの重なりの前後関係を調整*/
  }
  .header-nav {
    background-color: #e8f8fb;
    height: 120%;
    width: 100%;
    z-index: 2;
  }
  .nav__list {
    display: block;
    left: 50%;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .nav__item {
    margin-bottom: 40px;
    margin-right: 0;
  }
  /* メニューオープン時 */
  .nav-wrapper.fade {
    opacity: 1;
    visibility: visible;
  }
}
.fv {
  background-color: #e8f8fb;
  padding: 20px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.fv__title {
  font-size: 58px;
  font-weight: bold;
  color: #5e5343;
  margin-left: 43px;
  margin-top: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 1029px) {
  .fv__title {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .fv__title {
    font-size: 32px;
    margin-left: 0;
  }
}

.fv__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .fv__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.fv__text {
  font-size: 20px;
  margin-left: 43px;
  margin-top: 70px;
  font-weight: normal;
  color: #5e5343;
}
@media screen and (max-width: 767px) {
  .fv__text {
    margin-left: 0;
  }
}

.fv__img {
  max-width: 318px;
  margin: 0 85px 0 151px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv__img {
    margin: 30px 0 0 0;
  }
}

.work {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background-color: #e8f8fb;
  height: 1200px;
}
@media screen and (max-width: 767px) {
  .work {
    height: auto;
    padding-bottom: 30px;
  }
}

.work__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .work__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.work__img {
  max-width: 465px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 20px;
}

.work__toptext {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 27px;
  color: #5e5343;
  margin-left: 60px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .work__toptext {
    font-size: 20px;
    margin-left: 0;
    margin-top: 30px;
  }
}

.work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .work__list {
    -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;
  }
}

.work__item {
  width: 300px;
  height: 400px;
  border: solid 2px #5e5343;
  border-radius: 10px;
  padding: 20px;
  position: relative;
}

.work__item:not(:first-child) {
  margin-left: 90px;
}
@media screen and (max-width: 767px) {
  .work__item:not(:first-child) {
    margin-left: 0;
    margin-top: 20px;
  }
}

.work__text__area {
  margin: 0 20px 0 20px;
}

.work__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #0c69ac;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.work__text {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5e5343;
  font-size: 13px;
}

.work__img__soon {
  width: 128px;
  height: 110px;
  position: absolute;
  bottom: 1px;
  right: 10px;
}

.skill {
  background-color: #FFFFFF;
}

.swiper {
  width: auto;
  height: 200px;
}

.swiper-slide {
  width: 150px;
}

.swiper__img {
  width: 150px;
}

.skill__text {
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #444444;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .skill__text {
    font-size: 12px;
    padding: 0 20px 30px 20px;
  }
}

.promise {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #e8f8fb;
  padding-bottom: 30px;
}

.promise__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .promise__list {
    -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;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.promise__item {
  width: 320px;
  height: 450px;
  border: solid 2px #5e5343;
  position: relative;
}
@media screen and (max-width: 767px) {
  .promise__item {
    width: 280px;
  }
}

.promise__item:not(:first-child) {
  margin-left: 35px;
}
@media screen and (max-width: 767px) {
  .promise__item:not(:first-child) {
    margin-left: 0;
  }
}

.promise__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .promise__img {
    width: 230px;
    margin: 0 auto;
  }
}

.promise__text__area {
  margin: 0 20px 0 20px;
}

.promise__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  color: #0c69ac;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
}

.promise__text {
  margin-top: 45px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
  color: #5e5343;
  font-size: 13px;
}

.about {
  background-color: #FFFFFF;
  padding-bottom: 130px;
  width: 100%;
  margin: 0 auto;
}

.about__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.about__img {
  max-width: 550px;
  border-radius: 20px;
  margin-left: 70px;
  margin-top: 93px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .about__img {
    margin: 0 auto;
  }
}

.about__name {
  font-size: 57px;
  color: #5e5343;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 230px;
  margin-left: 80px;
}
@media screen and (max-width: 1029px) {
  .about__name {
    font-size: 32px;
    margin-left: 100px;
  }
}
@media screen and (max-width: 767px) {
  .about__name {
    margin: 30px auto;
  }
}

.about__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .about__sub {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.my__photo {
  width: 370px;
  border-radius: 20px;
  margin-left: 70px;
  margin-top: 93px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .my__photo {
    margin: 0 auto;
  }
}

.about__text {
  margin-top: 90px;
  margin-left: 120px;
  max-width: 600px;
  font-size: 19px;
  font-family: "Noto Sans JP", sans-serif;
  color: #5e5343;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin: 0 auto;
    font-size: 22px;
    line-height: 1.5;
    padding: 30px 20px 30px 20px;
  }
}

.message {
  position: relative;
}

.message__top_img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .message__top_img {
    height: 300px;
  }
}

.message__text {
  position: absolute;
  top: 77px;
  right: 44px;
  color: #FFFFFF;
  font-size: 49px;
  text-align: right;
  font-family: "Noto Serif", serif;
  text-shadow: 3px 3px 3px #ecf4bd;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 26px;
    text-shadow: 3px 3px 3px #91928d;
  }
}

.contact {
  background-color: #e8f8fb;
  padding-bottom: 100px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.contact__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .contact__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 50px auto 0;
  }
}

.contact__text {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 170px;
  line-height: 1.5;
  font-size: 19px;
  color: #5e5343;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin: 0;
  }
}

.contact__text_area {
  text-align: center;
}

.contact__btn {
  margin-top: 100px;
  padding: 5px 10px 5px 10px;
  border: solid 1px;
  border-radius: 5px;
  width: 150px;
  display: inline-block;
  background-color: #f7d830;
}
.contact__btn a {
  font-size: 20px;
}

.contact__img {
  width: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .contact__img {
    margin: 30px auto;
  }
}

.section__title {
  font-size: 43px;
  font-family: "Noto Sans JP", sans-serif;
  color: #5e5343;
  font-weight: bold;
  padding-top: 97px;
  text-align: center;
}

.footer {
  background-color: #e8f8fb;
  text-align: center;
  padding-bottom: 80px;
}