* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: "futura-pt", "montserrat", sans-serif;
  font-weight: 400;
  font-style: normal;
}
html {
  font-size: 0.625rem;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-size: 1.8rem;
  color: #53524e;
  overflow-x: hidden;
  margin: 0 auto;
  letter-spacing: 0.2em;
}
p {
  line-height: 1.6;
  font-size: 1.6rem;
  line-height: 2;
}
a {
  color: #53524e;
  outline: none;
}
ul {
  list-style: none;
}
h1 {
  font-size: 3.0rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
}
h2 {
  font-size: 2.8rem;
  line-height: 1.6;
  font-weight: 500;
  text-align: left;
  margin-bottom: 20px;
}
.red {
  color: #b33e5c;
}
/**FV**/
.FV {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.FV-txt {
  text-align: center;
}
.FV .txt-rotate {
  color: #b33e5c;
}
/**body**/
.body {
  background: #f5f5f5;
  padding: 100px 50px;
}
.body h1 {
  font-size: 1.9rem;
  margin-bottom: 200px;
}
.work {
  display: flex;
  max-width: 1220px;
  margin: 150px auto;
}
.work:nth-child(even) {
  flex-direction: row-reverse;
}
h2 .small {
  font-size: 1.5rem;
  display: block;
}
.work-img {}
.work-img img {
  max-width: 600px;
}
.work-img img.PC-mock {
  max-width: 700px;
}
.work-txt {
  flex: 1;
  margin-right: 50px;
  letter-spacing: 0em;
}
.work:nth-child(odd) .work-txt {
  margin-right: 0;
  margin-left: 50px;
}
/**ボタンスタイル**/
.link-btn {
  font-family: 'Arial', 'Helvetica', sans-serif; /* 絵文字を含まないフォントを指定 */
  font-style: normal;
  display: flex;
  font-size: 1.8rem;
  margin-top: 50px;
  align-items: center;
}
.link-btn a {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
.link-btn a::before, .link-btn a::after {
  content: '';
  position: absolute;
  width: 100%;
  left: 0;
}
.link-btn a::before {
  background-color: #b33e5c;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-btn a::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #b33e5c;
}
.link-btn a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.link-btn a:hover::after {
  transform: translate3d(0, 0, 0);
}
.link-btn a span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.link-btn a:hover span {
  transform: translate3d(-200%, 0, 0);
}
/* ポップアップの背景 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
/* ポップアップの中身 */
.popup-content {
  position: relative;
  background: #fff;
  padding: 100px 30px;
  border-radius: 8px;
  width: 90%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  height: 90vh;
}
.popup-content h3 {
  text-align: center;
  margin: 50px 0;
}
.popup-work_FV {
  display: block;
  width: 80%;
  max-width: 1050px;
  margin: 100px auto;
  justify-content: space-between;
}
.popup-work_txt {
  width: 85%;
  margin: 0 auto;
}
.popup-work_txt .wrapper {
  display: flex;
  margin-bottom: 50px;
}
.popup-work_txt .wrapper .txt-period {
  margin: 0 40px;
}
.popup-work_txt .txt {
  margin-left: 20px;
}
.popup-work_img {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
  flex-wrap: wrap;
}
.popup-work_img img {
  width: 85%;
  max-width: 650px;
  margin: 20px;
  justify-content: space-between;
}
h3.popup-work_banner-ttl {
  margin: 140px 0 20px;
}
.popup-work_banner-txt {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
}
.popup-work_banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
}
.popup-work_banner img {
  width: 140px;
  margin: 0 10px 10px;
}
.popup-content2 .popup-work_FV {
  width: 40%;
  max-width: 300px;
  margin: 0px 30px 0 0;
  justify-content: space-between;
}
.popup-content2 .popup-work_txt {
  width: 45%;
  margin: 100px 0;
}
.popup-content2 .popup-work_gaiyo {
  display: flex;
  justify-content: center;
}
.popup-content2 .popup-work_img img {
  width: 35%;
  max-width: 300px;
}
/* ×ボタン */
.close-btn {
  position: fixed;
  top: 3vh;
  right: 6vw;
  background: none;
  border: none;
  font-size: 5.5rem;
  cursor: pointer;
}
.circle {
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 100px;
  margin-right: 10px;
}
.profile {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  padding: 50px 30px;
  align-items: center;
}
.profile-img {
  width: 150px;
}
.profile-txt {
  margin-left: 50px;
}
.profile-txt p {
  font-size: 1.2rem;
}
.email {
  color: #5e9abd;
  letter-spacing: 0.1em;
}
footer img {
  width: 25px;
  margin: 0 10px;
}
.footer-wrapper {
  padding: 0 50px 10px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1150px) {
  .body {
    padding: 50px 30px;
  }
  .body h1 {
    margin-bottom: 30px;
  }
  .work {
    display: block;
    margin: 50px auto 70px;
  }
  .work-img img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto 50px;
  }
  .work-txt {
    flex: 1;
    letter-spacing: 0em;
    max-width: 700px;
    margin: 0 auto;
  }
  .link-btn {
    justify-content: center;
    margin-top: 30px;
  }
  .work:nth-child(odd) .work-txt {
    margin: 0 auto;
  }
  .popup-content {
    padding: 30px 15px;
  }
  .popup-content2 .popup-work_gaiyo {
    display: block;
  }
  .popup-content2 .popup-work_FV {
    width: 100%;
    margin: 0 auto;
  }
  .popup-content2 .popup-work_txt {
    width: 100%;
    margin: 50px 0;
  }
}
@media (max-width: 630px) {
  h2 {
    font-size: 2.5rem;
  }
  p {
    line-height: 1.7;
  }
  .popup-content {
    width: 95%;
  }
  .popup-work_txt {
    width: 100%;
    margin-bottom: 20px;
  }
  .popup-work_txt .txt {
    margin: 0;
	font-size: 1.2rem;
  }
  .popup-work_img img {
    width: 100%;
    margin: 20px 0;
  }
  .popup-work_banner {
    width: 100%;
  }
  .popup-work_banner img {
    width: 90px;
    margin: 0 5px 10px;
  }
  .popup-work_txt .wrapper {
    display: block;
    margin-bottom: 20px;
  }
  .popup-work_FV {
    width: 100%;
    margin: 50px auto;
  }
  .popup-work_txt .wrapper .txt-period {
    margin: 20px 0 0;
  }
  h3.popup-work_banner-ttl {
    margin: 70px 0 10px;
  }
  .popup-work_img {
    display: block;
  }
  .popup-content2 .popup-work_img img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
  .profile {
    display: block;
  }
  .profile-img {
    width: 60%;
    display: block;
    margin: 0 auto 20px;
  }
  .profile-txt {
    margin-left: 20px;
  }
}