@charset "UTF-8";
/*====================================
# color
====================================*/
/*====================================
# font
====================================*/
/*フォントの読み込み*/
/*====================================
# レイアウト幅
====================================*/
/* ブレークポイント
-------------------------------------*/
/* メディアクエリー
-------------------------------------*/
/*====================================
# 共通クラス
====================================*/
body {
  background: #FEFCF9;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  box-sizing: border-box;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

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

.inner {
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    box-sizing: content-box;
  }
}

@media (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}

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

.section {
  margin: 160px auto 0;
}
@media (max-width: 900px) {
  .section {
    margin-top: 90px;
  }
}

.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  visibility: visible;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  text-decoration: none;
  transition: all 0.3s ease 0s;
}
.to-top img {
  width: 60px;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  .to-top img {
    width: 42px;
  }
}

.section-title__head {
  text-align: center;
  margin-top: 180px;
  position: relative;
}
.section-title__head::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 80px;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  background: #DED8CE;
}
@media (max-width: 767px) {
  .section-title__head::before {
    height: 50px;
    top: -100px;
  }
}

.section__title {
  font-size: 32px;
}
.section__title span {
  color: #597979;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 30px;
  }
}

.section-title__lead {
  margin-top: 10px;
  font-size: 18px;
}
@media (max-width: 767px) {
  .section-title__lead {
    font-size: 14px;
  }
}

.button {
  width: 250px;
  height: 80px;
  background: transparent;
  color: #fff;
  font-size: 28px;
  font-family: inherit;
  margin: 60px auto;
  display: inline-block;
  border: 3px solid #DED8CE;
  position: relative;
}
.button::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 100%;
  height: 100%;
  background: #597979;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  background: rgba(247, 241, 231, 0.7);
  border-radius: 50px;
  width: 68%;
  margin: 20px auto 0;
  box-shadow: 10px 10px 0px 0px rgba(222, 216, 206, 0.4);
}
@media (max-width: 767px) {
  .header {
    display: none;
  }
}

.header__nav {
  display: flex;
}

.header-nav__list {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  padding: 10px 0 10px;
  line-height: 1.1em;
}
.header-nav__list li {
  margin-left: 40px;
  text-align: center;
}
.header-nav__list li:first-child {
  margin-left: 0;
}
.header-nav__list li a {
  display: inline-block;
  color: #597979;
  font-size: 18px;
}
.header-nav__list li a span {
  font-size: 12px;
}

.header__logo {
  margin: 0 40px;
}
.header__logo h1 a {
  display: inline-block;
  height: 60px;
  padding-top: 5px;
}
.header__logo h1 a img {
  width: 50px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  z-index: 15;
  background: #333333;
  padding: 10px 15px;
  height: 100%;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-icon {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  background: #333333;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
@media (max-width: 767px) {
  .drawer-icon {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }
  .drawer-icon:hover {
    opacity: 0.7;
  }
}
.drawer-icon.is-active {
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.drawer-icon.is-active .drawer-icon__bars {
  width: 27px;
  height: 20px;
  display: block;
  position: relative;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  background: #333333;
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  background: #333333;
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27px;
  height: 20px;
  display: block;
  transition: all 0.3s ease;
}
.drawer-icon__bars::before {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}
.drawer-icon__bars::after {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content__items {
  margin-top: 56px;
  margin-left: 22px;
}

.drawer-content__item + .drawer-content__item {
  margin-top: 33px;
}
.drawer-content__item a {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  line-height: 1.18em;
  letter-spacing: 0.1em;
  padding-left: 4px;
}
.drawer-content__item a span {
  font-size: 10px;
  line-height: 0.9em;
  padding-left: 2px;
  letter-spacing: -0.1em;
  margin-left: 32px;
  position: relative;
}
.drawer-content__item a span::before {
  content: "／";
  position: absolute;
  left: -21px;
  top: 0;
  width: 10px;
  height: 10px;
  color: #fff;
}
.drawer-content__item a:hover {
  opacity: 0.7;
}

.drawer-background {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  z-index: 15;
  background: #597979;
  padding: 10px 15px;
  height: 100%;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-icon {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  background: #597979;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
@media (max-width: 767px) {
  .drawer-icon {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }
  .drawer-icon:hover {
    opacity: 0.7;
  }
}
.drawer-icon.is-active {
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.drawer-icon.is-active .drawer-icon__bars {
  width: 27px;
  height: 20px;
  display: block;
  position: relative;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  background: #597979;
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  background: #597979;
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27px;
  height: 20px;
  display: block;
  transition: all 0.3s ease;
}
.drawer-icon__bars::before {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}
.drawer-icon__bars::after {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content__items {
  margin-top: 56px;
  margin-left: 22px;
}

.drawer-content__item + .drawer-content__item {
  margin-top: 33px;
}
.drawer-content__item a {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  line-height: 1.18em;
  letter-spacing: 0.1em;
  padding-left: 4px;
}
.drawer-content__item a span {
  font-size: 10px;
  line-height: 0.9em;
  padding-left: 2px;
  letter-spacing: -0.1em;
  margin-left: 32px;
  position: relative;
}
.drawer-content__item a span::before {
  content: "／";
  position: absolute;
  left: -21px;
  top: 0;
  width: 10px;
  height: 10px;
  color: #fff;
}
.drawer-content__item a:hover {
  opacity: 0.7;
}

.drawer-background {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

@media (min-width: 1100px) {
  .top {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .top {
    padding: 0 15px;
  }
}

.top__mainvisual {
  width: 50%;
  height: 680px;
  margin-top: 100px;
  margin-left: auto;
  border-radius: 50px;
  background: url(../../img/mainvisual2.png) no-repeat center center/cover;
  position: relative;
}
@media (max-width: 767px) {
  .top__mainvisual {
    background: url(../../img/mainvisual2.png) no-repeat center 30%/cover;
    margin-top: 20px;
    width: 100%;
    height: 300px;
  }
}

.top__content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
@media (max-width: 767px) {
  .top__content {
    top: 340px;
  }
}

.top__title {
  font-size: 70px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  color: #597979;
  line-height: 1em;
}
@media (max-width: 767px) {
  .top__title {
    font-size: 60px;
  }
}

.top__text {
  font-size: 20px;
  margin-top: 30px;
  color: #597979;
}
@media (max-width: 767px) {
  .top__text {
    font-size: 16px;
    margin-top: 5px;
  }
}

@media (max-width: 767px) {
  .about {
    padding: 0 15px;
  }
}

.about-title__head {
  margin-top: 255px;
}

.about__container {
  margin-top: 60px;
  display: flex;
}
@media (max-width: 767px) {
  .about__container {
    display: block;
    max-width: 767px;
    margin: 60px auto;
  }
}

.about__head {
  width: 50%;
}
@media (max-width: 767px) {
  .about__head {
    width: 100%;
  }
}

.about__img {
  max-width: 300px;
  margin-left: auto;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .about__img {
    width: 250px;
  }
}
.about__img img {
  width: 100%;
  border-radius: 50%;
}
.about__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -65px;
  width: 300px;
  height: 300px;
  background: rgba(89, 121, 121, 0.6);
  border-radius: 50%;
  z-index: -10;
}
@media (max-width: 767px) {
  .about__img::after {
    width: 250px;
    height: 250px;
    left: -25px;
  }
}
@media (max-width: 767px) {
  .about__img {
    margin: 0 auto;
  }
}

.about__icon {
  max-width: 400px;
}

.about__body {
  width: 50%;
  margin-left: 60px;
  text-align: left;
  padding-top: 50px;
}
@media (max-width: 767px) {
  .about__body {
    width: 100%;
    margin-left: 0;
    padding-top: 30px;
  }
}

.about__name {
  margin-top: 10px;
  font-size: 28px;
}
.about__name span {
  color: #597979;
}

.about__text {
  margin-top: 30px;
  padding-right: 45px;
}
@media (max-width: 767px) {
  .about__text {
    padding-right: 0;
  }
}

.fa-code:before {
  font-size: 55px;
}

.fa-wordpress:before {
  font-size: 51px;
}
@media (max-width: 767px) {
  .fa-wordpress:before {
    font-size: 41px;
  }
}

.fa-pen-nib:before {
  font-size: 50px;
}

.fa-html5:before {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fa-html5:before {
    font-size: 40px;
  }
}

.fa-css3-alt:before {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fa-css3-alt:before {
    font-size: 40px;
  }
}

.fa-sass:before {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fa-sass:before {
    font-size: 40px;
  }
}

.fa-js:before {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fa-js:before {
    font-size: 40px;
  }
}

.fa-figma:before {
  font-size: 50px;
}
@media (max-width: 767px) {
  .fa-figma:before {
    font-size: 40px;
  }
}

.fa-gear:before {
  font-size: 55px;
}

.fa-solid:before {
  font-size: 55px;
}

.service {
  position: relative;
  background: #F7F1E7;
  margin-top: 250px;
  position: relative;
  padding: 0 15px 60px 15px;
}
@media (max-width: 767px) {
  .service {
    padding-bottom: 0;
  }
}
.service::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 215px;
  top: -215px;
  left: 0;
  background: url(../../img/wave.svg) no-repeat center top/cover;
}
.service::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 215px;
  bottom: -215px;
  left: 0;
  background: url(../../img/wave.svg) no-repeat center top/cover;
  transform: rotateZ(180deg);
  z-index: -10;
}

.service__head::before {
  top: -180px;
}

.service-skill__items {
  display: flex;
  width: 600px;
  margin: 0 auto 40px;
}
@media (max-width: 900px) {
  .service-skill__items {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .service-skill__items {
    display: block;
    width: 270px;
  }
}

.service-skill__wrapper {
  display: flex;
}
.service-skill__wrapper + .service-skill__wrapper {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .service-skill__wrapper + .service-skill__wrapper {
    margin-left: 0;
    margin-top: 20px;
  }
}

.service-skill__item {
  width: 70px;
}
.service-skill__item + .service-skill__item {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .service-skill__item + .service-skill__item {
    margin-left: 30px;
  }
}
.skill__name {
  margin-top: 5px;
}
@media (max-width: 767px) {
  .skill__name {
    margin-top: 0;
    font-size: 14px;
  }
}

.service__container {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service__container {
    margin-top: 40px;
  }
}

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

.service__item {
  width: calc(33.33333333% - 16px);
  background: #FEFCF9;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
  border-radius: 30px;
  margin-left: 24px;
}
.service__item:first-child {
  margin-left: 0;
}
@media (max-width: 767px) {
  .service__item {
    width: 100%;
    margin: 30px auto;
    margin-left: 0;
  }
}

.service__title {
  margin-top: 25px;
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .service__title {
    font-size: 19px;
  }
}

.service__text {
  margin-top: 20px;
  text-align: left;
}

.work {
  margin-top: 270px;
}

.work__nav {
  margin-top: 30px;
}

.work-nav__list {
  display: flex;
  max-width: 390px;
  margin: 0 auto;
}

.work-nav-list__item {
  margin-left: 40px;
  position: relative;
  transition: all 0.5s ease 0s;
  cursor: pointer;
}
.work-nav-list__item:first-child {
  margin-left: 0;
}
.work-nav-list__item:hover {
  opacity: 0.7;
}
.work-nav-list__item.is-active::after {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: 3px;
  left: -5px;
  bottom: -10px;
  background: #597979;
}

.work-content__wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 60px auto 0;
}
@media (max-width: 767px) {
  .work-content__wrapper {
    display: block;
    margin-top: 40px;
  }
}

.work-content__item {
  width: calc(33.33333333% - 16px);
  background: #fff;
  padding-bottom: 10px;
  border-radius: 30px;
  box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  position: relative;
  margin-left: 24px;
}
.work-content__item:nth-child(3n+1) {
  margin-left: 0;
}
.work-content__item:nth-child(4n) {
  margin-top: 30px;
}
.work-content__item a {
  color: #333333;
}
.work-content__item:hover {
  opacity: 0.7;
}
.work-content__item::before {
  content: "サイトを見る!";
  position: absolute;
  width: 190px;
  height: 80px;
  top: -60px;
  right: 0;
  line-height: 60px;
  background: url(../../img/hukidashi.png) no-repeat center center/cover;
  display: none;
}
.work-content__item:hover::before {
  display: block;
}
@media (max-width: 767px) {
  .work-content__item {
    width: 100%;
    margin: 60px auto 0;
    margin-left: 0;
  }
}

.work-content__img {
  margin-top: 10px;
  position: relative;
}

.work-content__head {
  background: rgba(89, 121, 121, 0.6);
  color: #fff;
  padding: 10px 0;
  border-radius: 30px 30px 0 0;
}

.contact-form {
  width: 60%;
  margin: 60px auto;
}
@media (max-width: 767px) {
  .contact-form {
    width: 80%;
    margin-top: 40px;
  }
}

.contact-form__row {
  display: flex;
}
.contact-form__row + .contact-form__row {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .contact-form__row {
    display: block;
  }
}

.contact-form__label {
  width: 160px;
}

.contact-form__input {
  margin: 0;
  padding: 0;
  width: calc(100% - 160px);
}
@media (max-width: 767px) {
  .contact-form__input {
    margin-top: 3px;
    width: 100%;
  }
}
.contact-form__input [type=text] {
  box-shadow: none;
  border: none;
  border: 1px solid #597979;
  background: #fff;
  padding: 7px 12px 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form__input [type=text] {
    font-size: 14px;
    padding: 0;
  }
}
.contact-form__input [type=text]:hover {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
}
.contact-form__input [type=text]:focus {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
  outline: none;
}
.contact-form__input [type=email] {
  box-shadow: none;
  border: none;
  border: 1px solid #597979;
  background: #fff;
  padding: 6px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form__input [type=email] {
    font-size: 14px;
    padding: 1px;
  }
}
.contact-form__input [type=email]:hover {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
}
.contact-form__input [type=email]:focus {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
  outline: none;
}
.contact-form__input textarea {
  box-shadow: none;
  border: none;
  border: 1px solid #333333;
  background: #fff;
  padding: 7px 12px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 5px;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  width: 100%;
  height: 200px;
  resize: vertical;
}
@media (max-width: 767px) {
  .contact-form__input textarea {
    width: 100%;
    padding: 5px 0;
    height: 160px;
  }
}
.contact-form__input textarea:hover {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
}
.contact-form__input textarea:focus {
  border: 1px solid #597979;
  box-shadow: 0 8px 8px -8px rgba(89, 121, 121, 0.7);
  outline: none;
}

.contact-form__button {
  margin: 39px auto 0;
  width: 250px;
  height: 80px;
  position: relative;
  transition: all 0.3s ease;
}
.contact-form__button [type=submit] {
  display: inline-block;
  padding: 11px 50px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444;
  color: #fff;
  box-shadow: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  letter-spacing: 0.025em;
  border: 3px solid rgb(225, 224, 224);
  background: transparent;
  height: inherit;
  width: inherit;
  transition: all 0.3s ease;
}
.contact-form__button [type=submit].-active {
  border: 3px solid #DED8CE;
}
.contact-form__button [type=submit].-active:hover {
  position: absolute;
  top: -10px;
  left: -10px;
}

.contact-button__bg {
  position: absolute;
  background: rgb(225, 224, 224);
  width: 250px;
  height: 80px;
  z-index: -10;
  transition: all 0.3s ease;
  top: -10px;
  left: -10px;
}
.contact-button__bg.-active {
  background: #597979;
}

.contact__button {
  font-family: inherit;
  box-shadow: none;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4444;
  letter-spacing: 0.025em;
  cursor: pointer;
}

.contact-message {
  text-align: center;
  margin-top: 60px;
  display: none;
}

.contact-message-error {
  text-align: center;
  margin-top: 60px;
  display: none;
  color: rgba(242, 31, 31, 0.581);
}

.footer {
  margin-top: 120px;
  background: #DED8CE;
  padding: 20px;
  text-align: center;
}

.copyright {
  color: #333333;
  font-size: 12px;
  font-family: "M PLUS Rounded 1c", sans-serif;
}
/*# sourceMappingURL=style.css.map */