@charset "UTF-8";
/*
Theme Name: れいじみわ
Author: Your Name
Description: あなたのテーマの説明
Version: 1.0
*/
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap");
.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.courgette-regular {
  font-family: "Courgette", cursive;
  font-weight: 400;
  font-style: normal;
}

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

.anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.libre-caslon-display-regular {
  font-family: "Libre Caslon Display", serif;
  font-weight: 400;
  font-style: normal;
}

.habibi-regular {
  font-family: "Habibi", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  font-family: "Oswald", sans-serif;
  color: #fff;
  width: 100%;
}
body.is-fixed {
  overflow: hidden;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  html, body {
    height: auto;
  }
}

.cursor,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .cursor,
  .cursor-trail {
    display: none;
  }
}

.cursor {
  width: 10px;
  height: 10px;
  background-color: white;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
@media screen and (max-width: 767px) {
  .cursor {
    display: none;
  }
}

.cursor-trail {
  width: 25px;
  height: 25px;
  background-color: rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.cursor-trail.is-active {
  transform: translate(-50%, -50%) scale(2.2);
  background-color: rgba(255, 255, 255, 0.4);
}
.cursor-trail.is-clicked {
  background-color: rgba(28, 28, 28, 0.8);
}
@media screen and (max-width: 767px) {
  .cursor-trail {
    display: none;
  }
}

.cursor--active {
  transform: translate(-50%, -50%) scale(1.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .cursor--active {
    display: none;
  }
}

a:hover ~ .cursor-trail,
button:hover ~ .cursor-trail,
.clickable:hover ~ .cursor-trail {
  transform: translate(-50%, -50%) scale(2.2);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  a:hover ~ .cursor-trail,
  button:hover ~ .cursor-trail,
  .clickable:hover ~ .cursor-trail {
    display: none;
  }
}

#loading {
  background: radial-gradient(circle at center, #193278 10%, #8f64ab 100%);
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#loadingLogo {
  font-size: 60px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  transform: translateY(-100vh);
}

.header {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .header {
    padding-right: 10px;
  }
}
.header .drawer-icon {
  position: absolute;
  top: 0;
  right: 0;
}

.drawer-icon {
  position: fixed;
  width: 150px;
  max-width: 150px;
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101;
  background-color: transparent;
  border: none;
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    align-items: center;
    text-align: right;
  }
}
.drawer-icon__bar {
  display: none;
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(2) {
  opacity: 0;
}
.drawer-icon.is-open .drawer-icon__bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.drawer-icon__img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  z-index: 102;
  transition: filter 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .drawer-icon__img {
    max-width: 100px;
    transform: none;
  }
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: -20%;
  width: 20%;
  height: 100%;
  background: url(../img/drawer.jpeg) center center no-repeat;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transition: right 0.3s ease, clip-path 0.6s ease;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .drawer-menu {
    width: 30%;
    right: -30%;
  }
}
.drawer-menu.is-open {
  right: 0;
  transition: right 0.5s ease;
}
.drawer-menu.is-closing {
  right: -100vw;
  transition: right 2.5s ease;
}

.drawer-nav__list {
  list-style: none;
  padding: 0;
  text-align: center;
}
.drawer-nav__list li {
  margin: 20px 0;
}
.drawer-nav__list li a {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .drawer-nav__list li a {
    font-size: 12px;
  }
}
.drawer-nav__list li a:hover {
  opacity: 0.7;
}

.drawer-icon__img {
  animation: rotateY 5s linear infinite;
  transform-style: preserve-3d;
  transition: filter 0.3s ease;
}
.drawer-icon__img:hover {
  filter: invert(1) brightness(0.7) saturate(0);
  transform: scale(2);
}

@keyframes rotateY {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
}

.button {
  align-items: center;
  display: flex;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
.button__bg {
  background-color: #fff;
}
.button__bg .button__text {
  color: #030a5b;
}
.button__border {
  border: 1px solid #fff;
}
.button__border .button__text {
  color: #fff;
}
.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}
.button__icon_path {
  fill: #fff;
}
.button__icon_path__contact {
  fill: #030a5b;
}
.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.fv {
  margin: 450px 450px 550px 450px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .fv {
    margin-top: 250px;
    margin-bottom: 150px;
  }
}

.fv__inner {
  text-align: center;
  margin: 0 auto;
  white-space: nowrap;
  min-width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.fv__title,
.fv__title__sub {
  color: white;
  transition: color 0.3s ease;
}

.fv__inner:hover .fv__title,
.fv__inner:hover .fv__title__sub {
  color: rgba(255, 255, 255, 0.5);
}

.fv__title,
.fv__title__sub {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
  word-break: break-word;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  white-space: nowrap;
  border-bottom: none;
}
.fv__title.fast-fade,
.fv__title__sub.fast-fade {
  animation-duration: 0.5s;
  animation-delay: 0s;
}

a {
  text-decoration: none;
}

.fv__title {
  font-size: 35px;
  animation-delay: 2.5s;
  font-family: "Habibi", serif;
}
@media screen and (min-width: 768px) {
  .fv__title {
    font-size: 30px;
  }
}

.fv__title__sub {
  font-size: 15px;
  animation-delay: 3s;
  font-family: "Libre Caslon Display", serif;
}
@media screen and (min-width: 768px) {
  .fv__title__sub {
    font-size: 12px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__item + .works__item {
  margin-top: 40px;
}
.works__item_img {
  margin-bottom: 12px;
}
.works__item_img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.works__item_name {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 6px;
  margin-top: 7px;
  font-weight: 200;
}
.works__item_link {
  text-decoration: underline;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
  color: white;
  transition: color 0.3s ease;
}
.works__item_link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.works__list {
  margin-bottom: 300px;
  padding-left: 0;
}

.works__item_link {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpLink 1s ease-out forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .works__item_link img {
    max-width: 200px;
  }
}
@keyframes fadeInUpLink {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__item_link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.works__item {
  list-style: none;
  padding-left: 0;
}

.scrollarea {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.scrollarea__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.scrollarea__text {
  display: inline-block;
  white-space: nowrap;
  font-size: 100px;
  letter-spacing: 0.3em;
  animation: scroll-left 12s linear infinite;
  font-family: "Anton", sans-serif;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.about__img {
  margin-bottom: 32px;
}
.about__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 600px;
}
.about__text {
  font-size: 16px;
  line-height: 1.6;
}
.about__text + .about__text {
  margin-top: 1em;
}

.page__bottom {
  color: #fff;
}
.page__bottom__item {
  padding: 40px;
}
/*----------------------------- pc ----------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 79.2%;
  }
  .header {
    position: relative;
    flex-basis: 20.8%;
  }
  .header__menu_button {
    display: none;
  }
  .header__contents {
    display: block;
    border: none;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
    opacity: 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__text {
    color: #030a5b;
  }
  .button__bg {
    color: #030a5b;
  }
  .button__bg:hover {
    opacity: 0.7;
  }
  .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;
  }
  .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5%;
    justify-content: center;
    align-items: center;
    align-items: stretch;
  }
  .works__item {
    justify-content: flex-end;
    flex: 1;
  }
  .works__item + .works__item {
    margin-top: 0;
  }
  .works__item_img {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  .works__item_img img {
    object-fit: contain;
    max-width: 400px;
  }
  .works__item_img .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .page__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page__bottom__item {
    padding: 54px 10px;
  }
}
/*----------------------------- tbb ----------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__head_main {
    font-size: 54px;
  }
  .fv__contents {
    bottom: 50%;
    transform: translateY(50%);
  }
}
/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
.wrapper {
  display: flex;
  flex-direction: column;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
}

.button {
  align-items: center;
  display: flex;
  padding: 6px 10px 6px 30px;
  width: 160px;
  margin: 0 auto;
}
.button__bg {
  background-color: #fff;
}
.button__bg .button__text {
  color: #030a5b;
}
.button__border {
  border: 1px solid #fff;
}
.button__border .button__text {
  color: #fff;
}
.button__icon {
  width: 24px;
  display: flex;
  align-items: center;
}
.button__icon_path {
  fill: #fff;
}
.button__icon_path__contact {
  fill: #030a5b;
}
.button__text {
  margin-left: 10px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #fff;
}

.section {
  padding: 48px 0;
  margin-top: 150px;
}
.section__inner {
  padding: 0 32px;
  text-align: center;
}
.section__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.section__head__center {
  text-align: center;
}
.section__head_main {
  font-size: 40px;
  letter-spacing: 0.1em;
  font-family: "Habibi", serif;
}
.section__head_sub {
  font-size: 11px;
}
.section__lead_text {
  font-size: 16px;
  line-height: 1.6;
}
.section__contents {
  margin-top: 40px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.inner {
  padding-left: 200px;
  padding-right: 200px;
}

.char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service__item ::marker {
  display: none;
}
.service__item + .service__item {
  margin-top: 40px;
}
.service__item_img {
  text-align: center;
  margin-bottom: 14px;
}
.service__item_name {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}
.service__item_text {
  font-size: 14px;
  line-height: 1.6;
}
.service__list {
  gap: 20px;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service__list {
    gap: 8%;
    display: flex;
    flex-direction: row;
    margin-top: 90px;
    align-items: stretch;
    text-align: center;
    justify-content: center;
  }
  .service__item + .service__item {
    margin-top: 0;
    max-height: 0;
  }
  .service .service__item:nth-child(2) .service__item_img {
    margin-bottom: 23px;
  }
  .service .service__item:nth-child(3) .service__item_img {
    margin-bottom: 18px;
  }
}

@media screen and (max-width: 767px) {
  .service__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .service__item {
    width: 90%;
    max-width: 320px;
    margin-bottom: 32px;
  }
  .service__item ::marker {
    display: none;
  }
}
.service__list {
  list-style: none;
  padding-left: 0;
}

.scrollarea {
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
}

.scrollarea__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.scrollarea__text {
  display: inline-block;
  white-space: nowrap;
  font-size: 100px;
  letter-spacing: 0.3em;
  animation: scroll-left 12s linear infinite;
  font-family: "Anton", sans-serif;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.flow__list {
  margin-top: 64px;
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .flow__list {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .flow__list {
    flex-direction: column;
  }
}
.flow__item {
  position: relative;
  border: 1px solid #5c4ca3;
  padding: 46px 16px 24px;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(70, 241, 190);
  border-image: initial;
  max-width: 220px;
  width: 100%;
  text-align: inherit;
  flex-shrink: 0;
  min-height: 380px;
  padding-left: auto;
  padding-right: auto;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.flow__item + .flow__item {
  margin-top: 46px;
}
.flow__item_num {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translatex(-50%);
  font-size: 24px;
  background-color: rgb(5, 169, 120);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow__item_img {
  margin-bottom: 24px;
  text-align: center;
  margin-top: 10px;
}
.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;
}

.flow__item {
  opacity: 0;
}
.flow__item.fade-in-top, .flow__item.fade-in-bottom {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.flow__item.fade-in-top {
  animation-name: slideFromCenterTop;
}
.flow__item.fade-in-bottom {
  animation-name: slideFromCenterBottom;
}
.flow__item.delay-0 {
  animation-delay: 0s;
}
.flow__item.delay-1 {
  animation-delay: 0.3s;
}
.flow__item.delay-2 {
  animation-delay: 0.6s;
}
.flow__item.delay-3 {
  animation-delay: 0.9s;
}

@keyframes slideFromCenterTop {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(-40px);
  }
}
@keyframes slideFromCenterBottom {
  from {
    opacity: 0;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(40px);
  }
}
@media screen and (max-width: 767px) {
  .flow__item.fade-in-top, .flow__item.fade-in-bottom {
    animation-name: slideFromBottom;
  }
  @keyframes slideFromBottom {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
.flow__list {
  list-style: none;
  padding-left: 0;
}

.about__img {
  margin-top: auto;
  margin-bottom: auto;
}
.about__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
}
.about__text {
  font-size: 18px;
  line-height: 1.9;
  color: #d4d4d4;
}
.about__text + .about__text {
  margin-top: 1em;
}

@media screen and (max-width: 769px) {
  .about__inner .about__container {
    padding: 0 20px;
  }
}
@media screen and (min-width: 1300px) {
  .about__inner .about__container {
    padding: 0 175px;
  }
}

.about__me {
  text-align-last: left;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about__me {
    text-align-last: center;
  }
}

.about__en {
  margin-top: 40px;
}

.about__container {
  display: flex;
  flex-direction: row-reverse;
  gap: 120px;
  margin-top: 50px;
}

@media screen and (max-width: 1272px) {
  .about__container {
    min-width: 400px;
  }
}
@media screen and (max-width: 769px) {
  .about__container {
    min-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .about__container {
    min-width: 100px;
    flex-direction: column;
  }
}
.about__text {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 1s ease-out forwards;
}
@media screen and (max-width: 767px) {
  .about__text {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.message {
  text-align: center;
  margin-top: 150px;
}
.message__img {
  margin-bottom: 36px;
}
.message__img img {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.message__text {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 50px;
}

.message__body {
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-left: 120px;
  margin-right: 120px;
  margin-top: 40px;
}

.message__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
  align-items: center;
  margin: 0 auto;
}
.message__form_group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
  gap: 30px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .message__form_group {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

.message__name {
  width: 100%;
  max-width: 400px;
  text-align: left;
  align-items: flex-start;
}
.message__name:hover {
  background-color: #cfcfcf;
  color: #000;
}
.message__name::placeholder {
  padding: 6px;
}

.message__email {
  width: 100%;
  max-width: 400px;
}
.message__email:hover {
  background-color: #cfcfcf;
  color: #000;
}
.message__email::placeholder {
  padding: 6px;
}

.message__tel {
  width: 100%;
  max-width: 400px;
}
.message__tel:hover {
  background-color: #cfcfcf;
  color: #000;
}
.message__tel::placeholder {
  padding: 6px;
}

.message__button {
  text-align: center;
  align-items: center;
  border: 8px;
  border-color: #000;
  margin-top: 20px;
}

.message__button__text {
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: 500;
}
.message__button__text:hover {
  background-color: #cfcfcf;
  color: #000;
}

.message__label {
  width: 100%;
  text-align-last: left;
  align-self: flex-start;
  font-size: 20px;
  max-width: 274px;
}
@media screen and (max-width: 767px) {
  .message__label {
    text-align: left;
  }
}

.input {
  border-radius: 5px;
  border: none;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .input {
    align-items: left;
  }
}

.message_area {
  width: 100%;
  height: 100px;
  max-width: 400px;
}
.message_area:hover {
  background-color: #cfcfcf;
  color: #000;
}
.message_area::placeholder {
  padding: 6px;
}

.not-found {
  margin-bottom: 150px;
}

.not-found__message {
  margin-bottom: 50px;
}

.not-found__link {
  color: white;
  transition: color 0.3s ease;
  border-bottom: 2px solid #ffffff;
  font-size: 20px;
  margin-top: 20px;
}
.not-found__link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.footer {
  text-align: center;
  padding: 10px;
  margin-top: 225px;
  margin-bottom: 40px;
}
.footer__copy {
  font-size: 11px;
  font-family: sans-serif;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s; /* 任意で遅延させたいとき */
}

.input {
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  border: none;
  height: 30px;
  padding: 6px;
}
@media screen and (max-width: 767px) {
  .input {
    align-items: flex-start;
  }
}

.mail__links {
  display: flex;
  flex-direction: row;
  gap: 76px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
@media screen and (max-width: 1563px) {
  .mail__links {
    gap: 35px;
  }
}
.mail__links:hover .mail-link-p {
  transform: translate(8px, -8px);
  opacity: 0.6;
}
.mail__links .mail-link-p {
  transform: translateY(10px);
}
.mail__links .mail-link:hover + .mail-link-p {
  opacity: 1;
  transform: translateY(0);
}

.mail-link {
  font-weight: 10000;
  font-size: 130px;
  color: rgb(255, 255, 255);
  transition: color 0.3s ease;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  color: transparent;
  -webkit-text-stroke: 1px white;
  transition: all 0.3s ease;
}
.mail-link:hover {
  color: rgb(202, 202, 202);
  -webkit-text-stroke: 0px;
}

.mail-link-p {
  font-size: 65px;
  transition: transform 1s ease, color 1s ease, -webkit-text-stroke 1s ease;
}

@media screen and (max-width: 1563px) {
  .mail-link {
    font-size: 95px;
  }
  .mail-link-p {
    font-size: 50px;
  }
}
@media screen and (max-width: 1320px) {
  .mail-link {
    font-size: 80px;
  }
  .mail-link-p {
    font-size: 45px;
  }
}
@media screen and (max-width: 1024px) {
  .mail-link {
    font-size: 60px;
  }
  .mail-link-p {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .mail-link {
    font-size: 40px;
  }
  .mail-link-p {
    font-size: 25px;
  }
}
@media screen and (max-width: 560px) {
  .mail-link {
    font-size: 35px;
  }
  .mail-link-p {
    font-size: 23px;
  }
}
@media screen and (max-width: 480px) {
  .mail-link {
    font-size: 25px;
  }
  .mail-link-p {
    font-size: 15px;
  }
}
@media screen and (max-width: 360px) {
  .mail-link {
    font-size: 20px;
  }
  .mail-link-p {
    font-size: 10px;
  }
}
@media screen and (max-width: 200px) {
  .mail-link {
    font-size: 10px;
  }
  .mail-link-p {
    font-size: 5px;
  }
}
.sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline;
  }
}

/*----------------------------- pc --------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .wrapper {
    display: flex;
  }
  .main {
    flex-basis: 79.2%;
  }
  .header {
    position: relative;
    flex-basis: 20.8%;
  }
  .header__menu_button {
    display: none;
  }
  .header__contents {
    display: block;
    border: none;
  }
  .header__logo {
    font-size: 30px;
    letter-spacing: 0.12em;
    line-height: 1;
  }
  .header__container {
    width: 160px;
    margin: 0 auto;
    position: sticky;
    top: 50px;
  }
  .button {
    transition: background 0.3s, color 0.3s, opacity 0.3s;
    opacity: 0.3s;
  }
  .button:hover {
    background-color: #fff;
  }
  .button:hover .button__text {
    color: #030a5b;
  }
  .button__bg {
    color: #030a5b;
  }
  .button__bg:hover {
    opacity: 0.7;
  }
  .section {
    margin-top: 210px;
  }
  .section__inner {
    margin: 0 auto;
  }
  .section__head {
    margin-bottom: 24px;
  }
  .section__head_main {
    font-size: 60px;
  }
  .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;
  }
  r .works__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  r .works__item + r .works__item {
    margin-top: 0;
  }
  .about__container {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
  }
  .flow__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
  .flow__item + .flow__item {
    margin-top: 0;
  }
  .flow__list {
    list-style: none;
    padding-left: 0;
  }
  .message__container {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .page__bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .page__bottom__item {
    padding: 54px 10px;
  }
}
/*----------------------------- tb ----------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .section__head_main {
    font-size: 54px;
  }
  .fv__contents {
    bottom: 50%;
    transform: translateY(50%);
  }
  .flow__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    flex-shrink: 0;
  }
  .works__list {
    gap: 8%;
  }
}/*# sourceMappingURL=style.css.map */