@charset "UTF-8";
/*===================================
#common - 全体に共通するスタイル
==================================*/
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #000;
  font-family: "Noto Sans Cham", sans-serif;
  line-height: 1.6875;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 66px;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
}

a {
  text-decoration: none;
}

body {
  background: #FAF8F5;
}

.header {
  position: fixed;
  width: 100%;
  height: 110px;
  padding: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
@media (max-width: 767px) {
  .header {
    height: 65px;
  }
}

.header_inner {
  display: flex;
  align-items: center;
  height: inherit;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .header_inner {
    height: 65px;
    background: #323232;
  }
}

.header-logo {
  width: 200px;
}
.header-logo img {
  display: block;
  padding-top: 15px;
  height: 100%;
}
@media (max-width: 767px) {
  .header-logo {
    display: none;
  }
}

.header_nav {
  margin-left: auto;
  padding-right: 107px;
  align-items: center;
}
.header_nav_list {
  display: flex;
}
.header-nav-item + .header-nav-item {
  margin-left: 82px;
}
@media (max-width: 767px) {
  .header-nav-item {
    display: none;
  }
}

.header-nav-item-link {
  color: #323232;
  text-align: center;
  font-family: Helvetica;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.drawer-icon {
  position: fixed;
  top: 20px;
  right: 46px;
  z-index: 51;
  display: none;
  transform: transition 0.5s ease 0s;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  transform: rotate(-45deg);
  top: 10px;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  transform: rotate(45deg);
  top: 10px;
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}

.drawer-icon__bars {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 24px;
  height: 1px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon-bar1 {
  top: 0;
}

.drawer-icon-bar2 {
  top: 11px;
}

.drawer-icon-bar3 {
  top: 22px;
}

.drawer-content {
  width: 375px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 50;
  padding: 160px 130px;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content__link {
  color: #FFF;
  font-family: Helvetica;
  font-size: 32px;
  font-weight: 400;
  display: block;
  text-align: center;
  line-height: normal;
}
.drawer-content__link + .drawer-content__link {
  padding-top: 60px;
}

.top {
  height: 100%;
  position: relative;
  margin-top: 100px;
  padding: 323px 0 270px;
}
@media (max-width: 767px) {
  .top {
    margin-top: 65px;
    padding: 190px 0 287px;
  }
}

.top-visual {
  text-align: center;
}

.top-visual-picture {
  height: 300px;
  background: url(../img/IMG_3335\ -\ コピー.PNG) no-repeat center center/cover;
  width: 200px;
  opacity: 0.2;
  position: absolute;
  top: 30%;
  left: 42%;
}
@media (max-width: 767px) {
  .top-visual-picture {
    width: 140px;
    height: 105px;
    top: 20%;
    left: 32%;
  }
}

.top-title {
  color: #000;
  font-family: Lato;
  font-size: 128px;
  height: 142px;
  line-height: normal;
  z-index: 49;
}
@media (max-width: 767px) {
  .top-title {
    height: 110px;
    color: #323232;
    text-align: center;
    font-size: 48px;
  }
}

.top-subtitle {
  color: #000;
  text-align: center;
  font-family: Noto Sans Cham;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 37px;
}
@media (max-width: 767px) {
  .top-subtitle {
    color: #000;
    font-size: 10px;
    padding-top: 30px;
  }
}

.section__title {
  text-align: center;
  font-family: "Lato", sans-serif;
  color: #000;
  font-size: 52px;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 32px;
    padding-top: 0;
  }
}

.section__body {
  padding-bottom: 47px;
}
@media (max-width: 767px) {
  .section__body {
    padding-bottom: 100px;
  }
}

.sm {
  display: none;
}
@media (max-width: 767px) {
  .sm {
    display: block;
  }
}

.skill-inner {
  max-width: 1200px;
  padding: 0 160px;
}
@media (max-width: 767px) {
  .skill-inner {
    padding: 0 75px;
  }
}

.skill-title {
  padding-top: 130px;
}
.skill-list {
  display: flex;
  gap: 30px;
  margin-top: 70px;
}
@media (max-width: 767px) {
  .skill-list {
    display: block;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .skill-item + .skill-item {
    padding-top: 69px;
  }
}

.skill-relative {
  position: relative;
}

.skill-relative-2 {
  position: relative;
}

.skill-relative-3 {
  position: relative;
}

.skill-absolute {
  position: absolute;
  top: 38.5%;
  left: 10%;
}
@media (max-width: 767px) {
  .skill-absolute {
    top: 37%;
    left: 20%;
  }
}

.skill-absolute-2 {
  position: absolute;
  top: 39%;
  left: 11%;
}
@media (max-width: 767px) {
  .skill-absolute-2 {
    top: 46%;
    left: 20%;
  }
}

.skill-absolute-3 {
  position: absolute;
  top: 45.5%;
  left: 10%;
}
@media (max-width: 767px) {
  .skill-absolute-3 {
    top: 50%;
    left: 20%;
  }
}

.skill-item-image img {
  width: 355px;
  height: 620px;
}
@media (max-width: 767px) {
  .skill-item-image img {
    width: 234px;
    height: 408px;
  }
}

.skill-item-body {
  width: 272px;
}
@media (max-width: 767px) {
  .skill-item-body {
    width: 137px;
  }
}

.skill-item-title {
  text-align: center;
  color: #000;
  font-size: 24px;
  line-height: normal;
  padding-top: 70px;
}
@media (max-width: 767px) {
  .skill-item-title {
    font-size: 14px;
    padding-top: 54px;
  }
}

.item3 {
  padding-top: 30px;
}

.skill-item-text {
  font-size: 16px;
  padding-top: 73px;
  line-height: 25px; /* 156.25% */
}
@media (max-width: 767px) {
  .skill-item-text {
    font-size: 10px;
    font-style: normal;
    line-height: 20px; /* 200% */
    padding-top: 31px;
  }
}

.works__title {
  padding-top: 188px;
}

.works__contents {
  display: flex;
  margin-top: 100px;
}
@media (max-width: 767px) {
  .works__contents {
    display: block;
    margin-top: 33px;
  }
}
@media (max-width: 767px) {
  .works__contents + .works__contents {
    margin-top: -17px;
  }
}

@media (max-width: 767px) {
  .works-3 {
    margin-top: 87px;
  }
}

.works__float__left {
  width: 590px;
  height: 555px;
  background-color: #D78746;
  border-radius: 0 100px 0 0;
}
@media (max-width: 767px) {
  .works__float__left {
    width: 285px;
    height: 250px;
  }
}

.work__absolute-1 {
  position: relative;
}
.work__absolute-1 img {
  position: absolute;
  top: 12%;
  left: 18%;
}
@media (max-width: 767px) {
  .work__absolute-1 img {
    top: 13%;
    left: 30%;
  }
}

.row-reverse {
  flex-direction: row-reverse;
  text-align: left;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .row-reverse {
    margin-top: 33px;
  }
}

.works-row-reverse {
  width: 660px;
  height: 557px;
  background-color: #D78746;
  border-radius: 100px 0 0 0;
}
@media (max-width: 767px) {
  .works-row-reverse {
    width: 285px;
    height: 250px;
    margin-left: 88px;
  }
}

.work__absolute-2 {
  position: relative;
}
.work__absolute-2 img {
  position: absolute;
  top: 12%;
  right: 30%;
}
@media (max-width: 767px) {
  .work__absolute-2 img {
    top: 14%;
    right: 27%;
  }
}

.work__absolute-3 {
  position: relative;
}
.work__absolute-3 img {
  position: absolute;
  top: 11%;
  left: 18%;
}

.works__img {
  float: left;
  width: 670px;
  height: 100%;
}
@media (max-width: 767px) {
  .works__img {
    width: 285px;
    height: 250px;
  }
}

.inner-img {
  position: absolute;
  width: 474px;
  height: 299px;
  transform: translate(84px, 43px);
}
.inner-img img {
  width: 270px;
}
@media (max-width: 767px) {
  .inner-img {
    width: 202px;
    height: 127px;
    flex-shrink: 0;
    transform: translate(37px, 18px);
  }
}

.inner-img-2 {
  position: absolute;
  width: 473px;
  height: 300px;
  transform: translate(-112px, 42px);
}
@media (max-width: 767px) {
  .inner-img-2 {
    width: 202px;
    height: 127px;
    transform: translate(-48px, 18px);
  }
}

.works__float__right {
  width: 360px;
  float: right;
  margin-top: 78px;
  margin-bottom: 210px;
  margin-left: 225px;
}
@media (max-width: 767px) {
  .works__float__right {
    width: 260px;
    margin-top: 15px;
    margin-bottom: 70px;
    margin-left: 15px;
    float: none;
  }
  .works__float__right + .works__float__right {
    margin-bottom: 0;
  }
}

.works__right-row-reverse {
  width: 360px;
  float: right;
  margin-top: 90px;
  margin-bottom: 210px;
  margin-right: 240px;
}
@media (max-width: 767px) {
  .works__right-row-reverse {
    width: 260px;
    margin-top: 17px;
    margin-bottom: 70px;
    margin-left: 90px;
    margin-right: 0;
    float: none;
  }
}

.text__title {
  color: #D78746;
  font-size: 32px;
}
@media (max-width: 767px) {
  .text__title {
    font-size: 24px;
  }
}

.text__skill {
  color: #323232;
  font-size: 14px;
  padding-top: 10px;
  letter-spacing: 0.3px;
}
@media (max-width: 767px) {
  .text__skill {
    font-size: 14px;
    padding-top: 8px;
  }
}

.text__contents {
  color: #000;
  font-size: 16px;
  /* 162.5% */
  padding-top: 20px;
}
@media (max-width: 767px) {
  .text__contents {
    font-size: 12px;
    padding-top: 10px;
    line-height: 24px;
  }
}

.text__website {
  padding-top: 10px;
}
.text__website a {
  color: #323232;
  font-family: Lato;
  font-size: 12px;
  text-decoration-line: underline;
}
@media (max-width: 767px) {
  .text__website a {
    font-size: 12px;
  }
}

.website__name {
  color: #D78746;
  font-family: Lato;
  font-size: 16px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .website__name {
    font-size: 14px;
    padding-top: 7px;
  }
}

.about-inner {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .about-inner {
    padding-left: 36px;
    padding-right: 36px;
  }
}

.about-title {
  padding-top: 100px;
  padding-bottom: 47px;
}
@media (max-width: 767px) {
  .about-title {
    padding-top: 35px;
    padding-bottom: 40px;
  }
}

.about-contents {
  display: flex;
  border: solid 5px #D78746;
  border-radius: 270px 0;
}
@media (max-width: 767px) {
  .about-contents {
    display: block;
    border: none;
  }
}

.about-picture {
  flex: 0 0 40%;
  width: 80%;
}
.about-picture img {
  border-radius: 270px 0 0 0;
}
@media (max-width: 767px) {
  .about-picture img {
    border-radius: 83px 0 0 0;
    height: 302px;
  }
}
@media (max-width: 767px) {
  .about-picture {
    width: 100%;
  }
}

.about-card {
  flex: 0 0 50%;
  padding: 80px 0px 93px 58px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .about-card {
    padding: 22px 37px 49px;
    border: solid 5px #D78746;
    border-radius: 0 0 88px 0;
  }
}

.about-card-title {
  color: #000;
  font-size: 20px;
  line-height: normal;
  padding-top: 20px;
}

.about-card-name {
  color: #000;
  font-size: 16px;
  line-height: normal;
  padding-top: 20px;
}
@media (max-width: 767px) {
  .about-card-name {
    font-size: 14px;
  }
}

.about-card-content {
  color: #000;
  font-size: 14px;
  line-height: normal;
  padding-top: 18px;
}
@media (max-width: 767px) {
  .about-card-content {
    font-size: 12px;
    padding-top: 13px;
  }
}

.contact-title {
  padding-top: 65px;
}
@media (max-width: 767px) {
  .contact-title {
    padding-top: 0;
  }
}

.contact-contents {
  background-color: #D78746;
  border-radius: 225px 0 0 0;
  padding-top: 65px;
  margin-top: 52px;
  height: 1214px;
}
@media (max-width: 767px) {
  .contact-contents {
    width: 375px;
    height: 877px;
    border-radius: 76px 0 0 0;
    margin-top: 40px;
    padding-top: 16px;
  }
}

.contact__main {
  text-align: left;
  margin: 75px auto;
  background: #fff;
  width: 1066px;
  height: 922px;
  border-radius: 76px;
  padding: 66px 0;
}
.contact__main p {
  padding-left: 190px;
  padding-right: 150px;
}
@media (max-width: 767px) {
  .contact__main p {
    padding-left: 0px;
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .contact__main {
    font-size: 10px;
    padding: 60px 45px;
    margin-top: 16px;
    margin-bottom: 16px;
    width: 343px;
    height: 825px;
    border-radius: 76px;
    background: #FAF8F5;
    text-align: left;
  }
}

.dt {
  color: #000;
  font-size: 16px;
  line-height: normal;
}

.dd {
  border: none;
  color: #D7D6D6;
  font-size: 16px;
  line-height: normal;
}

.contact-form__row {
  width: 670px;
  display: flex;
  text-align: left;
  align-items: center;
  margin-left: 138px;
  padding-top: 100px;
  border-bottom: dotted 1px #000;
}
.contact-form__row + .contact-form__row {
  margin-top: 0;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .contact-form__row + .contact-form__row {
    padding-top: 15px;
  }
}
@media (max-width: 767px) {
  .contact-form__row {
    width: 215px;
    padding-top: 38px;
    margin-left: 16px;
  }
}

.contact-form__label {
  width: 150px;
  padding-bottom: 20px;
}

.contact-form__input {
  width: calc(100% - 150px);
  padding-left: 90px;
  padding-bottom: 23px;
  color: #D7D6D6;
  font-size: 16px;
  line-height: normal;
}

.contact-form__row2 {
  display: flex;
  padding-top: 70px;
  padding-left: 138px;
}
@media (max-width: 767px) {
  .contact-form__row2 {
    display: block;
    padding-top: 28px;
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .contact-form__label2 {
    margin-left: 16px;
  }
}

.contact-form__button {
  width: 273px;
  margin: 55px auto 0;
  text-align: center;
  border-radius: 25px;
  background: #D78746;
  color: #FFF;
  font-size: 16px;
  line-height: normal;
  padding: 20px 100px;
}
.contact-form__button button {
  color: #FFF;
  background: #D78746;
}
@media (max-width: 767px) {
  .contact-form__button {
    width: 200px;
    font-size: 10px;
    margin: 50px auto 0;
    padding: 14px 75px;
  }
}

.contact-form__input {
  width: calc(100% - 150px);
  padding-left: 75px;
  padding-bottom: 15px;
  color: #D7D6D6;
  font-size: 20px;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact-form__input {
    display: block;
    padding-top: 5px;
    padding-left: 60px;
  }
}
.contact-form__input [type=text] {
  box-shadow: none;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  opacity: 0.5;
  background: #fff;
  width: 100%;
}
.contact-form__input [type=email] {
  box-shadow: none;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: none;
  opacity: 0.5;
  background: #fff;
  width: 100%;
}

.contact-form__input2 {
  border-radius: 25px;
}
.contact-form__input2 textarea {
  width: 511px;
  height: 216px;
  padding: 17px 26px;
  border-radius: 25px;
  box-shadow: none;
  border: 1px solid #000;
  background: #fff;
  margin-left: 20px;
  appearance: none;
  color: inherit;
  font-family: inherit;
  font-size: 14px;
}
@media (max-width: 767px) {
  .contact-form__input2 textarea {
    width: 250px;
    height: 320px;
    border-radius: 25px;
    margin-left: 0;
  }
}

.contact-message {
  height: 200px;
  text-align: center;
  margin-top: 60px;
  display: none;
}
.contact-message.-error {
  color: #f00;
}

.footer {
  background: #323232;
  color: #FFF;
  padding: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding: 20px 47px;
  }
}

@media (max-width: 767px) {
  .footer-copyright {
    font-size: 10px;
  }
}

.small {
  font-family: Inter;
}/*# sourceMappingURL=style.css.map */