@charset "UTF-8";
body {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  color: #333;
}
body.is-fixed {
  overflow: hidden;
}

.main {
  margin-top: 78px;
}
@media screen and (min-width:768px) {
  .main {
    -ms-flex-preferred-size: 79.2%;
        flex-basis: 79.2%;
    margin-top: 0;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .button {
    -webkit-transition: background 0.3s, color 0.3s, opacity 0.3s;
    transition: background 0.3s, color 0.3s, opacity 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__icon-path {
    fill: #4a4a4a;
  }
  .button:hover .button__text {
    color: #4a4a4a;
  }
}
.button--bg {
  background: #fff;
}
@media screen and (min-width:768px) {
  .button--bg {
    color: #4a4a4a;
  }
  .button--bg:hover {
    opacity: 0.7;
  }
}
.button--bg .button__text {
  color: #4a4a4a;
}

.button__icon {
  width: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.button__icon-path {
  fill: #fff;
}
.button__icon-path--contact {
  fill: #4a4a4a;
}

.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

@media screen and (min-width:768px) {
  .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.header {
  background-color: #ae9890;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (min-width:768px) {
  .header {
    position: relative;
    -ms-flex-preferred-size: 20.8%;
        flex-basis: 20.8%;
    padding: 50px 20px;
  }
}

.header__container {
  width: 100%;
  position: relative;
}
@media screen and (min-width:768px) {
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
}

.header__logo {
  display: inline-block;
  padding: 14px 24px;
}
@media screen and (min-width:768px) {
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
}
.header__logo img {
  height: 50px;
}

.header__menu-button {
  border: none;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width:768px) {
  .header__menu-button {
    display: none;
  }
}
.header__menu-button.is-checked .drawer-icon__bar:nth-of-type(1) {
  top: 15px;
  -webkit-animation: spinCrazy1 1.1s ease-in-out forwards;
          animation: spinCrazy1 1.1s ease-in-out forwards;
}
.header__menu-button.is-checked .drawer-icon__bar:nth-of-type(2) {
  -webkit-animation: spinFadeOut 0.9s ease-in forwards;
          animation: spinFadeOut 0.9s ease-in forwards;
}
.header__menu-button.is-checked .drawer-icon__bar:nth-of-type(3) {
  top: 15px;
  -webkit-animation: spinCrazy2 1.1s ease-in-out forwards;
          animation: spinCrazy2 1.1s ease-in-out forwards;
}
.header__menu-button.is-unchecked .drawer-icon__bar:nth-of-type(1) {
  -webkit-animation: spinBack1 1.1s ease-in-out forwards;
          animation: spinBack1 1.1s ease-in-out forwards;
}
.header__menu-button.is-unchecked .drawer-icon__bar:nth-of-type(2) {
  -webkit-animation: spinFadeIn 0.9s ease-in forwards;
          animation: spinFadeIn 0.9s ease-in forwards;
}
.header__menu-button.is-unchecked .drawer-icon__bar:nth-of-type(3) {
  -webkit-animation: spinBack2 1.1s ease-in-out forwards;
          animation: spinBack2 1.1s ease-in-out forwards;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #fff;
  border-radius: 5px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 5px;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 15px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 25px;
}

/* --- 開くアニメーション --- */
@-webkit-keyframes spinCrazy1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 5px;
  }
  60% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  } /* 高速3回転 */
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 15px;
  }
}
@keyframes spinCrazy1 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 5px;
  }
  60% {
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  } /* 高速3回転 */
  100% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 15px;
  }
}
@-webkit-keyframes spinCrazy2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 25px;
  }
  60% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  } /* 反対方向に回転 */
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 15px;
  }
}
@keyframes spinCrazy2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 25px;
  }
  60% {
    -webkit-transform: rotate(-720deg);
            transform: rotate(-720deg);
  } /* 反対方向に回転 */
  100% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 15px;
  }
}
@-webkit-keyframes spinFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
@keyframes spinFadeOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
    opacity: 0.6;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
}
/* --- 閉じるアニメーション --- */
@-webkit-keyframes spinBack1 {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 15px;
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 5px;
  }
}
@keyframes spinBack1 {
  0% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 15px;
  }
  40% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 5px;
  }
}
@-webkit-keyframes spinBack2 {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 15px;
  }
  40% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 25px;
  }
}
@keyframes spinBack2 {
  0% {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 15px;
  }
  40% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 25px;
  }
}
@-webkit-keyframes spinFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes spinFadeIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(720deg);
            transform: rotate(720deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.header__contents {
  display: none;
  height: calc(100vh - 88px);
  border-top: 1px solid #fff;
  padding-top: 60px;
}
@media screen and (min-width:768px) {
  .header__contents {
    display: block;
    border: none;
  }
}

.header__nav-item + .header__nav-item {
  margin-top: 24px;
}

.fv {
  position: relative;
}

.fv__contents {
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 100%;
  height: 209px;
  background: url(../img/sp/bg_fv.png) center center no-repeat;
  background-size: 100% auto;
  padding: 32px;
}
@media screen and (min-width:768px) {
  .fv__contents {
    background: url(../img/bg_fv.png) center center no-repeat;
    background-size: 100% auto;
    bottom: 100px;
    left: 0;
    max-width: 627px;
    height: 174px;
    padding-top: 24px;
    padding-left: 96px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .fv__contents {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
  }
}

.fv__heading-main {
  display: block;
  font-size: 40px;
  letter-spacing: 0.1em;
}

.fv__heading-sub {
  display: block;
  margin-top: 12px;
  font-size: 14px;
}

.section {
  padding: 48px 0;
}

.section__inner {
  padding: 0 32px;
}
@media screen and (min-width:768px) {
  .section__inner {
    max-width: 944px;
    margin: 0 auto;
  }
}

.section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 32px;
}
@media screen and (min-width:768px) {
  .section__heading {
    margin-bottom: 24px;
  }
}
.section__heading--center {
  text-align: center;
}

.section__heading-main {
  font-size: 40px;
  letter-spacing: 0.1em;
  display: inline-block;
  position: relative;
  width: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .section__heading-main {
    font-size: 56px;
  }
}
@media screen and (min-width:768px) {
  .section__heading-main {
    font-size: 60px;
  }
}
.section__heading-main::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -29px;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(-45deg, #f3a68c, #f3a68c 2px, #fff 2px, #fff 4px);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 1s ease-out;
  transition: -webkit-transform 1s ease-out;
  transition: transform 1s ease-out;
  transition: transform 1s ease-out, -webkit-transform 1s ease-out;
}
.section__heading-main.is-animated::after {
  -webkit-animation: slideLine 1s ease-out forwards;
          animation: slideLine 1s ease-out forwards;
}

@-webkit-keyframes slideLine {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  70% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1.05);
            transform: scaleX(1.05); /* 少しオーバーしてバウンド感 */
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes slideLine {
  0% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  70% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1.05);
            transform: scaleX(1.05); /* 少しオーバーしてバウンド感 */
  }
  100% {
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.section__heading-sub {
  font-size: 11px;
}
.section__lead-text {
  font-size: 16px;
  line-height: 1.6;
}

.section__contents {
  margin-top: 40px;
}

@media screen and (min-width:768px) {
  .service__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8%;
    margin-top: 20px;
  }
}

.service__item + .service__item {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .service__item + .service__item {
    margin-top: 0;
  }
}

.service__item-img {
  text-align: center;
  margin-bottom: 14px;
}

.service__item-name {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  margin-bottom: 10px;
}

.service__item-text {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width:768px) {
  .service__item-text {
    text-align: center;
  }
}

@media screen and (min-width:768px) {
  .works__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 8%;
       -moz-column-gap: 8%;
            column-gap: 8%;
    row-gap: 60px;
    margin-top: 20px;
  }
}

.works__item + .works__item {
  margin-top: 40px;
}
@media screen and (min-width:768px) {
  .works__item + .works__item {
    margin-top: 0;
  }
}

.works__item-img {
  margin-bottom: 12px;
}
.works__item-img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.works__item-name {
  font-size: 16px;
  margin-bottom: 6px;
  font-weight: bold;
}

.works__item-link {
  text-decoration: underline;
  font-size: 14px;
}

@media screen and (min-width:768px) {
  .about__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 40px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about__img {
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 330px;
}

.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

.about__text-contents {
  margin-top: 20px;
}

.flow {
  background-color: #fafafa;
}

.flow__list {
  margin-top: 64px;
}
@media screen and (min-width:768px) {
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width:768px) and (max-width:1024px) {
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
  }
}

.flow__item {
  position: relative;
  border: 1px solid #808080;
  padding: 46px 16px 24px;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
@media screen and (min-width:768px) {
  .flow__item + .flow__item {
    margin-top: 0;
  }
}

.flow__item-nam {
  position: absolute;
  top: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 24px;
  background-color: #ae9890;
  color: #fff;
  width: 48px;
  height: 48px;
  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;
}

.flow__item-img {
  margin-bottom: 24px;
  text-align: center;
}

.flow__item-name {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flow__item-text {
  font-size: 14px;
  line-height: 1.6;
}

.skills {
  background-color: #fafafa;
}

.skills__img {
  margin-bottom: 32px;
}
.skills__img img {
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

@media screen and (min-width:768px) {
  .skills__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
  }
}

.skills__contents {
  margin-top: 30px;
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 10px;
}
@media (min-width: 414px) {
  .skills__contents {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width:768px) {
  .skills__contents {
    gap: 20px 20px;
  }
}

.skills__content {
  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;
}
@media screen and (min-width:768px) {
  .skills__content {
    padding-inline: 20px;
  }
}

.skills__image {
  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;
  width: 40px;
  height: 47px;
}
.skills__image img {
  width: 40px;
  height: 47px;
}

.skills__description {
  margin-top: 30px;
}

.contact {
  background-color: #fafafa;
}

.contact__links {
  margin-top: 40px;
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (min-width:768px) {
  .contact__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.link-icon {
  border: 2px solid #808080;
  padding: 6px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width:768px) {
  .link-icon:hover {
    background: #ae9890;
    border: 2px solid #ae9890;
  }
  .link-icon:hover .contact__icon-path {
    fill: #fff;
  }
  .link-icon:hover .link__text {
    color: #fff;
  }
}

.contact-link__icon {
  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;
}

.contact__icon-path {
  fill: #333;
}

.footer {
  text-align: center;
  padding: 10px;
}

.footer__copy {
  font-size: 11px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}