@charset "UTF-8";
@media (min-width: 769px) {
  html {
    font-size: 0.0694444444vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 0.2666666667vw;
  }
}
body {
  font-size: 16px;
  font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #222;
  background: url(../images/130727222626.png);
}

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

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

.header {
  overflow: hidden;
  padding: 0 5%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  transition: 0.3s;
}

.header-nav__list {
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .header-nav__list {
    display: none;
  }
}
.header-nav__item {
  padding: 20px 10px;
  margin-left: 10px;
}

.header-nav__item a {
  display: block;
  overflow: hidden; /* 1つ目の影を隠す */
  color: transparent; /* テキスト本体は透明にする */
  /*
   影の設定
   1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
   2つ目：位置はテキスト本体と同じ、ぼかしなし
  */
  text-shadow: 0 0 0 #fff, 0 -1.5em 0 #fff;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  font-size: 20px;
  font-family: "outfit";
  font-weight: 300;
  letter-spacing: -0.01em;
}

.header-nav__item a:hover {
  text-shadow: 0 1.5em 0 #fff, 0 0 0 #fff;
}

.hamburger-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: none;
  margin: 5px 0 5px auto;
  z-index: 1;
}
.hamburger-btn div {
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}

.hamburger-btn div:nth-child(1) {
  left: 6px;
  top: 9px;
}

.hamburger-btn div:nth-child(2) {
  left: 6px;
  top: 17px;
}

.hamburger-btn div:nth-child(3) {
  left: 6px;
  top: 25px;
}

@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: block;
  }
}
.hamburger-btn.open {
  position: fixed;
  top: 0;
  right: 5%;
}

.hamburger-btn.open div:nth-child(1) {
  transform: rotate(225deg);
  top: 17px;
}

.hamburger-btn.open div:nth-child(2) {
  display: none;
}

.hamburger-btn.open div:nth-child(3) {
  transform: rotate(-225deg);
  top: 17px;
}

.drawer {
  display: none;
}

.drawer-nav {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.drawer-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.drawer-nav__item {
  padding: 20px 10px;
}

.drawer-nav__item a {
  color: white;
  font-size: 20px;
  font-family: "Bebas Neue", "Yu Gothic";
}

.drawer-nav__item a:hover {
  opacity: 0.8;
}

.mv {
  position: relative;
  background: url(../images/pt3.png) repeat, url(../images/mv.jpg) no-repeat center/cover;
  padding: 200px 0 200px 0;
  text-align: center;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .mv {
    padding: 0;
    height: 60vw;
  }
}
.mv-title {
  position: relative;
  font-size: 80px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: transparent;
  overflow: hidden;
  animation: col 1s 0.6s forwards cubic-bezier(0.8, 0, 0.17, 1);
  opacity: 0;
  color: #fff;
  text-shadow: 2px 2px 2px #000;
}
@media screen and (max-width: 768px) {
  .mv-title {
    font-size: 10vw;
  }
}

@keyframes col {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.mv-title::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  animation: bg 1s 0.6s cubic-bezier(0.8, 0, 0.17, 1);
  transform: translate(0, 100%);
}

@keyframes bg {
  0% {
    transform: translate(-100%, 0);
  }
  40%, 60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100%, 0);
  }
}
a.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 10px;
  font-family: "Outfit";
  transform: translateX(-50%);
  padding-top: 80px;
  color: #fff;
  transition: opacity 0.4s;
}

a.scroll-down:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  a.scroll-down {
    display: none;
  }
}
a.scroll-down span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: sdb 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

a.scroll-down span:nth-of-type(1) {
  animation-delay: 0s;
}

a.scroll-down span:nth-of-type(2) {
  top: 16px;
  animation-delay: 0.15s;
}

a.scroll-down span:nth-of-type(3) {
  top: 32px;
  animation-delay: 0.3s;
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.title {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.25em;
  padding-left: 0.25em;
  margin-inline: auto;
}

.text-wrap {
  display: flex;
  /*  gap: 8px;*/
  overflow: hidden;
}

.text-wrap.title-anim .letter {
  /*  text-shadow: 0 0 0 #000, 0 -1.5em 0 #000;*/
  transform: translateY(0) rotate(0);
}

.letter {
  color: #000;
  transform: translateY(1.5em) rotate(180deg);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: calc(var(--index) * 0.1s);
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sub-title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 400;
  font-family: "Outfit";
  text-align: center;
  letter-spacing: 0.1em;
  font-style: italic;
  text-align: center;
  margin-inline: auto;
  margin-bottom: 50px;
  overflow: hidden;
}

.sub-title span {
  position: relative;
  display: block;
  padding: 0 30px;
  translate: 0 1.5em;
  transition: translate 0.4s;
  z-index: 1;
}

.sub-title span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: -100%;
  translate: 0 -50%;
  background: linear-gradient(to right, red 20px, transparent 20px calc(100% - 20px), red 20px);
  z-index: 0;
  transition: left 0.4s;
}

.sub-title span.sub-title-anim {
  translate: 0 0;
}

.sub-title span.sub-title-anim::before {
  left: 0;
}

.skills {
  padding: 150px 0 0;
}

@media screen and (max-width: 768px) {
  .skills {
    padding: 100px 0 0;
  }
}
.skills__list {
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  padding: 0 5%;
  margin: 0 auto;
}

.skills__item {
  position: relative;
  background-color: #fff;
  width: 30%;
  max-width: 400px;
  border-radius: 5px;
  color: #000;
  box-shadow: 2px 3px 7px #333333;
  opacity: 0;
  overflow: hidden;
}

.skills__item.effect-scroll {
  animation: col 1s 0s forwards cubic-bezier(0.8, 0, 0.17, 1);
}

.skills__item.effect-scroll:nth-child(2) {
  animation: col 1s 0.4s forwards cubic-bezier(0.8, 0, 0.17, 1);
}

.skills__item.effect-scroll:nth-child(3) {
  animation: col 1s 0.8s forwards cubic-bezier(0.8, 0, 0.17, 1);
}

.skills__item.effect-scroll::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #000;
  animation: bg 1s 0s cubic-bezier(0.8, 0, 0.17, 1);
  transform: translate(0, 100%);
}

.skills__item.effect-scroll:nth-child(2)::before {
  animation: bg 1s 0.4s cubic-bezier(0.8, 0, 0.17, 1);
}

.skills__item.effect-scroll:nth-child(3)::before {
  animation: bg 1s 0.8s cubic-bezier(0.8, 0, 0.17, 1);
}

.skills__img {
  aspect-ratio: 16/9;
  background-color: #000;
  border-radius: 5px 5px 0 0;
}

.skills__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px 5px 0 0;
  vertical-align: bottom;
}

.skills__txt {
  padding: 10px;
}

.skills__txt h3 {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.skills__txt p {
  font-size: 15px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .skills__list {
    flex-direction: column;
  }
  .skills__item {
    width: 100%;
    margin: 0 auto 30px;
    display: block;
  }
  .skills__item:last-child {
    margin-bottom: 0px;
  }
}
.effect-fade {
  opacity: 0;
  transform: translate(0, 100px);
  transition: all 1000ms cubic-bezier(1, 0, 0, 0.34);
}

.effect-fade:nth-of-type(2) {
  transition-delay: 400ms;
}

.effect-fade:nth-of-type(3) {
  transition-delay: 800ms;
}

.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.profile {
  padding: 150px 0 0;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 100px 0 0;
  }
}

.profile-content {
  display: flex;
  height: auto;
  background: url(../images/margaret-1487905_1920.jpg) no-repeat;
  background-attachment: fixed;
  background-position: right center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .profile-content {
    padding: 50px 0;
  }
}

.profile__left {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .profile__left {
    display: none;
  }
}

.profile__right {
  width: 56%;
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .profile__right {
    width: 100%;
    padding: 20px;
  }
}

.profile__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.profile__item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .profile__item {
    flex-direction: column;
  }
}
.profile__item span:first-child {
  flex-shrink: 0;
}

.js-fadein {
  opacity: 0;
}

.js-fadein.is-active {
  animation: fadein 3s forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.works {
  padding: 150px 0 0;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 100px 0 0;
  }
}

.works-item__title {
  font-size: 18px;
  font-weight: 600;
}

.works__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .works__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.works__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  transition: background-color 0.4s;
}
.works__item:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.works__image {
  padding: 5px 10px;
}

.works__text {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 5px 10px 10px;
  border-radius: 0 0 5px 5px;
}

.works-item__item {
  display: flex;
}

.works-item__link::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.category {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: auto;
  align-self: flex-end;
}
.category ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.category li {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  font-family: "Outfit";
  padding: 2px 6px;
  background-color: #000;
  color: #fff;
}

.no-post {
  text-align: center;
}

.contact {
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 100px 0;
  }
}

.contact__inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 48px;
}

.contact__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.contact__item dt {
  font-size: 18px;
}
.contact__item dt span {
  display: inline-block;
  font-size: 14px;
  color: #F03341;
  vertical-align: text-top;
  margin-left: 5px;
}
.contact__item dt span::before {
  display: inline-block;
  content: "＊";
}
.contact__item dd {
  font-size: 16px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(29, 29, 29, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: rgba(29, 29, 29, 0.2);
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100%;
  padding: 7px 17px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(48, 48, 48, 0.1);
  border-radius: 5px;
}

textarea {
  min-height: 150px;
}

.contact-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 30px auto 0;
}
@media screen and (max-width: 768px) {
  .contact-btn-wrap {
    flex-direction: column;
  }
}

.confirm .form__item {
  align-items: center;
}
.confirm .form__item dt {
  margin-top: 0;
}

.confirm-lead {
  font-size: 16px;
  font-weight: 600;
}

.thanks__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  margin: 50px 0;
  text-align: center;
}

.wpcf7-list-item {
  padding-left: 24px;
  text-indent: -24px;
}

.wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  display: none;
}

.btn {
  display: block;
  width: 300px;
  font-size: 20px;
  line-height: 60px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background-color: #333;
  color: #fff;
  text-align: center;
  transition: background-color 0.4s;
  cursor: pointer;
}
.btn:hover {
  background-color: #000;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

#top-btn {
  position: relative;
  position: fixed;
  bottom: 107px;
  right: 17px;
  width: 50px;
  height: 50px;
  background-color: #000;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.4s;
}

#top-btn:hover {
  opacity: 0.6;
}

#top-btn::before {
  position: absolute;
  top: 14px;
  left: 17px;
  right: "";
  content: "";
  width: 3px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
}

#top-btn::after {
  position: absolute;
  top: 14px;
  left: "";
  right: 17px;
  content: "";
  width: 3px;
  height: 20px;
  background-color: #fff;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  #top-btn {
    position: relative;
    position: fixed;
    bottom: 107px;
    right: 0;
    width: 40px;
    height: 40px;
  }
  #top-btn::before {
    position: absolute;
    top: 14px;
    left: 13px;
    right: "";
    content: "";
    width: 3px;
    height: 20px;
    background-color: #fff;
    transform: rotate(45deg);
    top: 10px;
    height: 18px;
  }
  #top-btn::after {
    position: absolute;
    top: 14px;
    left: "";
    right: 13px;
    content: "";
    width: 3px;
    height: 20px;
    background-color: #fff;
    transform: rotate(-45deg);
    top: 10px;
    height: 18px;
  }
}
footer {
  background: url(../images/pt3.png) repeat, url(../images/teafold-4594431_960_720.jpg) no-repeat bottom center/cover;
  text-align: center;
}

footer p {
  font-size: 12px;
  color: white;
  padding: 100px 0 10px 0;
}

/************* thanks.html *************/
.page__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: calc(100vh - 127px);
  text-align: center;
}

.page__inner p {
  font-size: 24px;
  margin-bottom: 30px;
}
.page__inner a {
  text-decoration: underline;
  transition: color 0.4s;
}
.page__inner a:hover {
  color: red;
}

@media screen and (max-width: 768px) {
  .thanks-page__inner p {
    font-size: 16px;
  }
}
.thanks-page__inner a {
  font-size: 14px;
  color: #000;
  transition: opacity 0.4s;
}

.thanks-page__inner a:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  .thanks-page__inner a {
    font-size: 12px;
  }
}
.thanks-page__inner span {
  background-color: #fff;
  padding: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}
/*# sourceMappingURL=maps/style.css.map */