@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}

input, textarea {
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 18px 0 0;
  z-index: 3;
}
.header__logo {
  width: 32%;
  height: 20%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 60px;
  }
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 35%;
  }
}
.header__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  object-fit: cover;
}
.header__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__wrap {
    padding: 30px 20px 0;
  }
}
@media screen and (min-width: 1024px) {
  .header__wrap {
    padding: 74px 75px 0 35px;
  }
}

/*ボタン外側*/
.openbtn {
  cursor: pointer;
  position: fixed;
  z-index: 9999;
  width: 50px;
  height: 20px;
  bottom: 10%;
  right: 4%;
}
@media screen and (min-width: 768px) {
  .openbtn {
    top: 5%;
    right: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .openbtn {
    top: 9%;
    right: 4%;
    width: 50px;
    height: 50px;
  }
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 13px;
  height: 2px;
  background-color: rgb(0, 0, 0);
}

.openbtn span:nth-of-type(1) {
  top: 22px;
  width: 60%;
}

.openbtn span:nth-of-type(2) {
  top: 29px;
  width: 40%;
}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active span:nth-of-type(1) {
  top: 20px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

.openbtn.active span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.openbtn:after {
  display: block;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  content: "MENU";
  font-size: 10px;
  color: #000;
  letter-spacing: 0.14em;
  transition: 0.5s;
  position: absolute;
  top: 40px;
  right: 10%;
}

.openbtn.active::after {
  content: "";
  transition: 0.5s;
}

.gnav {
  position: relative;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f0e6da;
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}
.gnav__nav {
  width: 260px;
  transform: translateY(50px);
  transition: 0.5s;
  opacity: 0;
  text-align: center;
  margin-bottom: 30%;
}
@media screen and (min-width: 768px) {
  .gnav__nav {
    transform: none;
    opacity: 1;
  }
}
@media screen and (min-width: 1024px) {
  .gnav__nav {
    margin-bottom: 0;
  }
}
.gnav__list {
  padding: 40px;
  transition: 0.4s;
  letter-spacing: 0.1em;
}
.gnav__link {
  display: block;
  width: 100%;
  color: #413136;
  text-decoration: none;
  font-size: 20px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .gnav__link {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .wrapper {
    padding: 27px;
  }
}

.scrolldown2 {
  /*描画位置※位置は適宜調整*/
  position: absolute;
  top: 78%;
  left: 3%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  z-index: 1;
  left: 10px;
  bottom: 10px;
  /*テキストの形状*/
  color: rgba(0, 0, 0, 0.671);
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 10px;
  /*縦書き設定*/
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: -3px;
  /*丸の形状*/
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.671);
  /*丸の動き1.9秒かけて透過し、永遠にループ*/
  animation: circlemove 1.9s ease-in-out infinite, cirlemovehide 1.9s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 70px;
  }
  100% {
    bottom: -5px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.61);
}

@media screen and (min-width: 1024px) {
  .stalker {
    pointer-events: none;
    position: fixed;
    top: -8px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: rgba(47, 39, 39, 0.5);
    border-radius: 50%;
    transition: transform 0.2s, top, 0.5s, left 0.5s, width 0.5s, height 0.5s, background-color 0.5s;
    transition-timing-function: ease-out;
    z-index: 999;
  }
  .stalker.hov_ {
    top: -24px;
    left: -24px;
    width: 50px;
    height: 50px;
    background: rgba(47, 39, 39, 0.5);
  }
}

.mv {
  background: url(../images/background.jpg) repeat;
  margin-bottom: 90px;
  position: relative;
}
.mv__pic {
  margin-bottom: 90px;
  width: 180px;
  height: 100vh;
}
@media screen and (min-width: 1024px) {
  .mv__pic {
    margin-bottom: 160px;
  }
}
.mv__txt {
  display: none;
  position: absolute;
  width: 70%;
  top: 30%;
  left: 15%;
}
@media screen and (min-width: 768px) {
  .mv__txt {
    display: none;
    position: absolute;
    width: 60%;
    top: 35%;
    left: 23%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__txt {
    display: none;
    position: absolute;
    width: 35%;
    top: 34%;
    left: 28%;
  }
}
@media screen and (min-width: 375px) {
  .mv__ob1 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__ob1 {
    display: none;
    position: absolute;
    top: 25%;
    right: 32%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__ob1 {
    top: 31%;
    right: 33%;
    width: 4%;
  }
}
@media screen and (min-width: 375px) {
  .mv__img1 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__img1 {
    display: block;
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__img1 {
    width: 100%;
  }
}
@media screen and (min-width: 375px) {
  .mv__ob2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__ob2 {
    position: absolute;
    top: 43%;
    right: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__ob2 {
    top: 60%;
    right: 23%;
    width: 7%;
  }
}
@media screen and (min-width: 375px) {
  .mv__img2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__img2 {
    display: block;
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__img2 {
    width: 100%;
  }
}
@media screen and (min-width: 375px) {
  .mv__ob3 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__ob3 {
    position: absolute;
    bottom: 30%;
    left: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__ob3 {
    position: absolute;
    width: 6%;
    bottom: 22%;
    right: 10%;
  }
}
@media screen and (min-width: 375px) {
  .mv__img3 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__img3 {
    display: block;
    width: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__img3 {
    display: block;
    width: 100%;
  }
}
@media screen and (min-width: 375px) {
  .mv__ob4 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__ob4 {
    display: none;
    position: absolute;
    bottom: 20%;
    right: 18%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__ob4 {
    bottom: 20%;
    right: 28%;
  }
}
@media screen and (min-width: 375px) {
  .mv__img4 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .mv__img4 {
    display: block;
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .mv__img4 {
    display: block;
    width: 45%;
  }
}

.about {
  position: relative;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1024px) {
  .about {
    margin: 0 0 160px 180px;
  }
}
.about__container {
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .about__container {
    display: flex;
    align-items: center;
    gap: 7%;
  }
}
@media screen and (min-width: 1024px) {
  .about__container {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 7%;
  }
}
.about__box {
  margin: auto 0;
}
.about__ttl {
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .about__ttl {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 32px;
    height: auto;
  }
}
@media screen and (min-width: 1024px) {
  .about__ttl {
    font-size: 40px;
  }
}
.about__ttl::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/heading_img.png");
  background-size: cover;
  margin-left: 6px;
}
.about__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .about__sub {
    margin-left: 20px;
  }
}
.about__subname {
  margin-left: 20px;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 400;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .about__subname {
    font-size: 18px;
    margin-left: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .about__subname {
    font-size: 30px;
    margin: 0 0 6px 10%;
    color: #413136;
    letter-spacing: 0.1em;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 21px;
    margin-left: 0;
    margin-bottom: 13px;
  }
}
.about__name {
  margin-bottom: 20px;
  font-size: 13px;
  color: #bcb6ab;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .about__name {
    font-size: 13px;
    margin-left: 10%;
  }
}
@media screen and (min-width: 1024px) {
  .about__name {
    font-size: 30px;
    margin: 0 0 6px 10%;
    color: #413136;
    letter-spacing: 0.1em;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 2%;
    margin-left: 0;
  }
}
.about__pic {
  margin: 0 auto;
  margin-bottom: 20px;
  margin-left: 20px;
}
@media screen and (min-width: 768px) {
  .about__pic {
    width: 250px;
    height: 280px;
  }
}
@media screen and (min-width: 1024px) {
  .about__pic {
    margin-left: 0;
  }
}
.about__img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__txt {
  margin: 0 auto 90px 20px;
  width: 80%;
  font-size: 16px;
  line-height: 1.8;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .about__txt {
    width: 80%;
    margin: 0 auto;
    font-size: 12px;
    line-height: 2;
  }
}
@media screen and (min-width: 1024px) {
  .about__txt {
    width: 100%;
    margin: 0;
    letter-spacing: 0.3em;
    font-size: 14px;
  }
}
.about__ob1 {
  position: absolute;
  top: -5%;
  left: 8%;
}
@media screen and (min-width: 768px) {
  .about__ob1 {
    top: -12%;
    left: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .about__ob1 {
    position: absolute;
    top: -18%;
    left: 30%;
  }
}
@media screen and (min-width: 375px) {
  .about__img1 {
    width: 8%;
  }
}
@media screen and (min-width: 768px) {
  .about__img1 {
    width: 4%;
  }
}
@media screen and (min-width: 1024px) {
  .about__img1 {
    width: 7%;
  }
}
@media screen and (min-width: 375px) {
  .about__ob2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about__ob2 {
    position: absolute;
    display: block;
    top: 14%;
    right: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .about__ob2 {
    position: absolute;
    display: block;
    top: 14%;
    right: 25%;
  }
}
@media screen and (min-width: 768px) {
  .about__img2 {
    width: 29%;
  }
}
@media screen and (min-width: 1024px) {
  .about__img2 {
    width: 40%;
  }
}
@media screen and (min-width: 375px) {
  .about__ob3 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .about__ob3 {
    display: block;
    position: absolute;
    bottom: -10%;
    right: 40%;
  }
}
@media screen and (min-width: 1024px) {
  .about__ob3 {
    display: block;
    bottom: 0%;
    right: 55%;
  }
}
@media screen and (min-width: 768px) {
  .about__img3 {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .about__img3 {
    width: 40%;
  }
}
@media screen and (min-width: 375px) {
  .about__ob4 {
    position: absolute;
    bottom: -7%;
    right: 8%;
  }
}
@media screen and (min-width: 768px) {
  .about__ob4 {
    bottom: -20%;
    right: 6%;
  }
}
@media screen and (min-width: 1024px) {
  .about__ob4 {
    position: absolute;
    bottom: 0;
    right: 10%;
  }
}
@media screen and (min-width: 375px) {
  .about__img4 {
    width: 50%;
  }
}
@media screen and (min-width: 768px) {
  .about__img4 {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .about__img4 {
    width: 60%;
  }
}

.works {
  position: relative;
  padding: 90px 0;
  margin-bottom: 90px;
  background-color: #f7f4f0;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1024px) {
  .works {
    padding: 160px 0;
  }
}
.works__ttl {
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .works__ttl {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .works__ttl {
    font-size: 40px;
    margin-left: 180px;
  }
}
.works__ttl::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/heading_img.png");
  background-size: cover;
  margin-left: 6px;
}
.works__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .works__sub {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .works__sub {
    color: #413136;
    font-family: "Noto Sans JP", sans-serif;
    margin-left: 180px;
  }
}
@media screen and (min-width: 1024px) {
  .works__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .works__list {
    padding: 0 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1024px) {
  .works__list {
    width: 100%;
    margin-bottom: 40px;
    padding: 0 10%;
  }
}
@media screen and (min-width: 768px) {
  .works__list--item {
    display: flex;
  }
}
@media screen and (min-width: 1024px) {
  .works__list--item {
    width: 30%;
  }
}
.works__pic {
  margin-bottom: 17px;
  transition-duration: 0.5s;
}
@media screen and (min-width: 1024px) {
  .works__pic {
    width: 100%;
  }
}
.works__pic:hover {
  transform: scale(0.9);
  transition-duration: 0.5s;
}
.works__img {
  width: 100%;
}
.works__txt {
  padding: 0 15px;
  margin-bottom: 6px;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .works__txt {
    font-size: 13px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .works__txt {
    font-size: 16px;
  }
}
.works__attach {
  margin-bottom: 50px;
  font-size: 12px;
  color: #bcb6ab;
  padding-left: 15px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .works__attach {
    font-size: 13px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .works__attach {
    font-size: 16px;
  }
}
.works__more {
  position: relative;
  display: block;
  width: 70%;
  padding: 18px 22px;
  color: #291b08;
  border: 1px solid #291b08;
  border-radius: 10em;
  background: #fff;
  text-align: center;
  margin: 0 auto;
  text-decoration: none;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: #291b08;
  transition: 1s;
}
@media screen and (min-width: 768px) {
  .works__more {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .works__more {
    width: 15%;
    padding: 21px 17px;
    overflow: hidden;
  }
}
.works .works__more:hover {
  background: #413136;
  color: #fff;
  transition: 1s;
}
.works__link {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #291b08;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.15em;
  z-index: 2;
}
@media screen and (min-width: 1024px) {
  .works__link {
    width: 100%;
  }
}
.works__ob1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .works__ob1 {
    position: absolute;
    display: block;
    top: 9%;
    right: 17%;
  }
}
@media screen and (min-width: 1024px) {
  .works__ob1 {
    position: absolute;
    display: block;
    top: 9%;
    right: 17%;
  }
}
.works__img1 {
  width: 40%;
}
.works__ob2 {
  position: absolute;
  top: 50%;
  left: 4%;
}
.works__img2 {
  width: 15%;
}
.works__ob3 {
  position: absolute;
  top: 85%;
  right: 1%;
}
.works__img3 {
  width: 15%;
}
.works__ob4 {
  position: absolute;
  bottom: 5%;
  left: 8%;
}
.works__img4 {
  width: 40%;
}

.skill {
  margin-bottom: 90px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1024px) {
  .skill {
    margin-bottom: 160px;
    position: relative;
  }
}
.skill__ttl {
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .skill__ttl {
    margin-left: 20px;
    margin-bottom: 10px;
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  .skill__ttl {
    font-size: 40px;
    margin-left: 180px;
  }
}
.skill__ttl::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/heading_img.png");
  background-size: cover;
  margin-left: 6px;
}
.skill__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .skill__sub {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .skill__sub {
    color: #413136;
    font-family: "Noto Sans JP", sans-serif;
    margin-left: 180px;
  }
}
.skill__wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .skill__wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .skill__wrap {
    width: 80%;
    gap: 10%;
  }
}
.skill__box {
  padding: 0 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .skill__box {
    justify-content: start;
  }
}
@media screen and (min-width: 1024px) {
  .skill__box {
    width: 40%;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .skill__right-box {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1024px) {
  .skill__right-box {
    margin-left: 20px;
    width: 100%;
  }
}
.skill__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 60px;
}
.skill__img {
  width: 100%;
}
.skill__attach {
  margin-bottom: 8px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
}
.skill__txt {
  width: 250px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-bottom: 50px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .skill__txt {
    width: 240px;
  }
}
@media screen and (min-width: 1024px) {
  .skill__txt {
    width: 70%;
  }
}
.skill__ob1 {
  position: absolute;
  top: 7%;
  right: -3%;
}
@media screen and (min-width: 375px) {
  .skill__ob1 {
    display: none;
  }
}
.skill__img1 {
  width: 50%;
}
.skill__ob2 {
  position: absolute;
  top: 95%;
  left: -1%;
}
@media screen and (min-width: 375px) {
  .skill__ob2 {
    display: none;
  }
}
.skill__img2 {
  width: 50%;
}

.photo {
  position: relative;
  padding: 90px 0 90px 0;
  margin-bottom: 90px;
  background: #f7f4f0;
}
.photo__ttl {
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .photo__ttl {
    font-size: 40px;
  }
}
.photo__ttl::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../images/heading_img.png");
  background-size: cover;
  margin-left: 6px;
}
.photo__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1024px) {
  .photo__sub {
    font-size: 16px;
  }
}
.photo__ob1 {
  position: absolute;
  top: -15%;
  right: 7%;
}
@media screen and (min-width: 1024px) {
  .photo__ob1 {
    position: absolute;
    top: 8%;
    right: 25%;
  }
}
.photo__img1 {
  width: 40%;
}
.photo__ob2 {
  position: absolute;
  top: 90%;
  left: 5%;
}
.photo__img2 {
  width: 40%;
}
.photo__ob3 {
  position: absolute;
  bottom: -13%;
  right: 10%;
}
@media screen and (min-width: 1024px) {
  .photo__ob3 {
    position: absolute;
    top: 97%;
    right: 16%;
  }
}
@media screen and (min-width: 1024px) {
  .photo__img3 {
    width: 10%;
  }
}

.swiper__photo {
  width: 90%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 60px;
  padding-left: 10vw;
}
@media screen and (min-width: 768px) {
  .swiper__photo {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    padding-left: 16%;
    margin-bottom: 0;
    margin-top: -30px;
    filter: opacity(90%);
  }
}
@media screen and (min-width: 1024px) {
  .swiper__photo {
    width: 100%;
    height: 100%;
    padding-left: 0;
    margin-left: 20px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.swiper__photo__slide01, .swiper__photo__slide02, .swiper__photo__slide03, .swiper__photo__slide04, .swiper__photo__slide05, .swiper__photo__slide06 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .swiper__photo__slide01, .swiper__photo__slide02, .swiper__photo__slide03, .swiper__photo__slide04, .swiper__photo__slide05, .swiper__photo__slide06 {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 1024px) {
  .swiper__photo {
    width: 80%;
    height: 80%;
  }
}

.category {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 20;
  color: #413136;
  font-family: futura-pt, sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .category {
    position: sticky;
    margin-left: 10%;
    margin-right: 0;
    top: 20px;
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  .category {
    margin-left: 0;
  }
}

.category::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 8px;
  background-color: #413136;
}

.photo__txt {
  position: relative;
  z-index: 20;
  width: 80%;
  margin-top: -100px;
  margin-left: auto;
  padding: 30px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #413136;
  background-color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .photo__txt {
    display: inline-block;
    width: 80%;
    padding: 25px;
    margin-left: 25%;
  }
}
@media screen and (min-width: 1024px) {
  .photo__txt {
    width: 80%;
    margin-left: -427px;
  }
}

.contact {
  margin: 0 auto;
  padding: 68px 38px 68px;
  text-align: center;
  color: #fff;
  background-color: #291b08;
}
@media screen and (min-width: 1024px) {
  .contact {
    padding: 120px 115px 136px;
    display: block;
  }
}
.contact__sub {
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.2em;
  font-size: 13px;
  text-decoration: none;
}
.contact__ttl {
  margin-bottom: 20px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-size: 25px;
}
@media screen and (min-width: 1024px) {
  .contact__ttl {
    font-weight: 600;
  }
}
.contact__line {
  border: 1px solid rgb(255, 255, 255);
  margin: 20px auto 20px;
  width: 70%;
  height: 1px;
}
@media screen and (min-width: 1024px) {
  .contact__line {
    width: 30%;
  }
}
.contact__txt {
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-size: 14px;
}

.point__read {
  display: block;
  text-decoration: none;
  color: rgb(255, 255, 255);
}

.works-page {
  position: relative;
  background-color: #f0e6da;
}

.works-box {
  margin-bottom: 90px;
}
@media screen and (min-width: 768px) {
  .works-box {
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .works-page__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 40px 50px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1024px) {
  .works-page__wrap {
    padding: 0 182px 90px;
  }
}

.works--page__ttl {
  padding-top: 178px;
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (min-width: 1024px) {
  .works--page__ttl {
    font-size: 40px;
  }
}

.works--page__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  .works--page__sub {
    color: #413136;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.works__photo {
  margin-bottom: 18px;
  padding: 0 15px;
  transition-duration: 0.5s;
}
@media screen and (min-width: 768px) {
  .works__photo {
    width: 204px;
    height: 112px;
    margin-bottom: 17px;
    padding: 0;
  }
}
@media screen and (min-width: 1024px) {
  .works__photo {
    width: 459px;
    height: auto;
  }
}

.works__photo:hover {
  transform: scale(0.9);
  transition-duration: 0.5s;
}

.works__sub--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works__txt2 {
  margin-bottom: 6px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .works__txt2 {
    width: 204px;
    font-size: 14px;
    margin-bottom: 6px;
    padding: 0;
    color: #413136;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
}
@media screen and (min-width: 1024px) {
  .works__txt2 {
    font-size: 15px;
    width: auto;
    padding: 0;
  }
}

.works__attach2 {
  padding: 0 15px 30px 15px;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #bcb6ab;
}
@media screen and (min-width: 768px) {
  .works__attach2 {
    width: 204px;
    padding: 0;
    font-size: 14px;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    font-size: 13px;
    color: #bcb6ab;
  }
}
@media screen and (min-width: 1024px) {
  .works__attach2 {
    font-size: 13px;
  }
}

.works__more-ob1 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .works__more-ob1 {
    position: absolute;
    display: block;
    top: 10%;
    right: 25%;
  }
}

.works__more-img1 {
  width: 60%;
}

.works__more-ob2 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .works__more-ob2 {
    position: absolute;
    display: block;
    top: 56%;
    left: 4%;
  }
}

.works__more-img2 {
  width: 60%;
}

.works__more-ob3 {
  display: none;
}
@media screen and (min-width: 1024px) {
  .works__more-ob3 {
    position: absolute;
    display: block;
    bottom: 2%;
    right: 10%;
  }
}

.works__more-img3 {
  width: 50%;
}

.description {
  background: #f0e6da;
  padding-bottom: 50px;
}
@media screen and (min-width: 1024px) {
  .description {
    padding-bottom: 120px;
  }
}
.description__visual {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .description__visual {
    padding-top: 120px;
    margin: 0 auto 40px;
    width: 85%;
    height: 85%;
  }
}
@media screen and (min-width: 1024px) {
  .description__visual {
    margin-bottom: 120px;
    width: 60%;
  }
}
.description__main {
  max-width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .description__main {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.description__ttl {
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 12px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .description__ttl {
    margin-bottom: 15px;
    padding: 0 70px;
  }
}
@media screen and (min-width: 1024px) {
  .description__ttl {
    font-size: 21px;
    margin-left: 16%;
  }
}
.description__sub {
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
  padding: 0 15px;
  font-size: 13px;
  color: #bcb6ab;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .description__sub {
    margin-bottom: 30px;
    padding: 0 70px;
  }
}
@media screen and (min-width: 1024px) {
  .description__sub {
    margin-left: 16%;
    font-size: 16px;
    margin-bottom: 60px;
  }
}
.description__wrap {
  margin-bottom: 90px;
}
.description__box {
  display: flex;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .description__box {
    display: flex;
  }
}
.description__subject {
  width: 100px;
  margin-bottom: 14px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-right: 20px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .description__subject {
    width: 142px;
    min-width: 142px;
    padding-right: 1em;
    font-size: 16px;
    letter-spacing: 0.05em;
  }
}
@media screen and (min-width: 1024px) {
  .description__subject {
    font-size: 17px;
  }
}
.description__answer {
  padding: 0 15px;
  margin-bottom: 20px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  text-align: center;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  .description__answer {
    font-size: 15px;
  }
}
.description__container {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .description__container {
    width: 60%;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .description__container {
    margin-left: 16%;
    margin-bottom: 4%;
  }
}

@media screen and (min-width: 768px) {
  .outline {
    width: 600px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .outline {
    width: 50%;
    margin-left: 16%;
    margin-bottom: 0;
  }
}
.outline__txt {
  padding: 0 15px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 28px;
  font-size: 15px;
}
@media screen and (min-width: 1024px) {
  .outline__txt {
    font-size: 17px;
    margin-bottom: 20px;
  }
}
.outline__answer {
  padding: 0 15px;
  margin-bottom: 50px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1024px) {
  .outline__answer {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.outline__more {
  padding: 0 15px;
  margin-bottom: 80px;
}
@media screen and (min-width: 1024px) {
  .outline__more {
    padding-top: 40px;
    margin-bottom: 120px;
  }
}
.outline__link {
  display: block;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  padding: 15px 22.5px;
  border: 1px solid #000;
  border-radius: 10em;
  background: #fff;
  text-align: center;
  margin: 0 auto;
  width: 140px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .outline__link {
    width: 15%;
    padding: 21px 17px;
  }
}
.outline__photo {
  width: 300px;
  height: auto;
  margin: 0 auto 50px;
}
@media screen and (min-width: 768px) {
  .outline__photo {
    width: 500px;
    height: auto;
    margin-bottom: 130px;
  }
}
@media screen and (min-width: 1024px) {
  .outline__photo {
    width: 50%;
    height: auto;
    padding-top: 20px;
    margin-bottom: 120px;
  }
}
.outline__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.works-page_more {
  display: block;
}

.works-page__link {
  display: block;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #000;
  text-decoration: none;
  padding: 15px 22.5px;
  border: 1px solid #000;
  border-radius: 10em;
  background: #fff;
  text-align: center;
  margin: 0 auto 80px;
  width: 140px;
  transition: 1s;
}
@media screen and (min-width: 1024px) {
  .works-page__link {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1024px) {
  .works-page__link {
    width: 15%;
    padding: 21px 17px;
  }
}

.works-page__link:hover {
  background: #000;
  color: #fff;
  transition: 1s;
}

.outline__txt::after {
  content: "";
  display: block;
  margin-top: 8px;
  width: 40%;
  height: 1px;
  background-color: #000000;
}
@media screen and (min-width: 1024px) {
  .outline__txt::after {
    width: 20%;
  }
}

.banner__answer {
  padding: 0 15px;
  margin-bottom: 50px;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.2rem;
}
@media screen and (min-width: 1024px) {
  .banner__answer {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.main-contact {
  background-color: #f0e6da;
}

.contact--page {
  background-color: #f0e6da;
}
.contact--page__ttl {
  padding-top: 178px;
  font-size: 30px;
  margin: 0 0 6px 10%;
  color: #413136;
  letter-spacing: 0.1em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .contact--page__ttl {
    margin-left: 8%;
    font-size: 40px;
  }
}
.contact--page__sub {
  margin: 0 0 50px 10%;
  color: #413136;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .contact--page__sub {
    margin-left: 8%;
  }
}
@media screen and (min-width: 1024px) {
  .contact--page__sub {
    color: #413136;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.form {
  margin: 0 0 0 37.5px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form {
    margin-left: 8%;
    width: 55%;
  }
}
.form__name {
  margin-bottom: 20px;
}
.form__email {
  margin-bottom: 20px;
}
.form__label {
  display: block;
  padding: 14px 0;
  color: #413136;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .form__label {
    margin-bottom: 8px;
  }
}
.form__input {
  width: 80%;
  padding: 15px;
  margin-bottom: 8px;
  background: rgb(255, 255, 255);
  border: none;
  border-radius: 7px;
  font-size: 14px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .form__input {
    width: 68%;
  }
}
.form__textarea {
  margin-bottom: 60px;
  width: 80%;
  height: 130px;
  padding: 15px;
  background: #fff;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 768px) {
  .form__textarea {
    width: 68%;
  }
}
@media screen and (min-width: 1024px) {
  .form__textarea {
    margin-bottom: 120px;
  }
}
.form__submit {
  display: block;
  width: 60%;
  padding: 8px 14px;
  border: 1px solid #000;
  border-radius: 10em;
  background: #fff;
  letter-spacing: 0.15em;
  font-family: futura-pt, sans-serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .form__submit {
    width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .form__submit {
    width: 23%;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
}
.form__submit:hover {
  cursor: pointer;
}
.form__txt {
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form__btn {
    display: block;
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .form__btn {
    padding-left: 20px;
    margin-bottom: 120px;
  }
}

.gnav-active {
  opacity: 1;
  pointer-events: auto;
}

.gnav__nav-active {
  transform: translateY(0);
  opacity: 1;
}/*# sourceMappingURL=style.css.map */