@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400&family=Inter:wght@400&family=Noto+Serif+JP:wght@400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #FDFBF7;
  color: #111;
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  letter-spacing: .05em;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #111;
  text-decoration: none;
  transition: .5s;
}

a:hover {
  color: #F4C479;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
  pointer-events: none;
}

.type {
  line-height: 1.1;
  overflow: hidden;
}

.type span {
  display: inline-block;
  transform: translateY(1em);
  transition: transform 1.5s cubic-bezier(.16, .84, .44, 1);
  will-change: transform;
}

.type.play span {
  transform: translate(0, 0) scale(1, 1) !important;
}

.fade,
.fade>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s cubic-bezier(.16, .84, .44, 1), transform 1.5s cubic-bezier(.16, .84, .44, 1);
}

.fade.show,
.fade.show>* {
  opacity: 1;
  transform: translateY(0);
}

.header {
  font-family: "Inter", serif;
  font-size: 12px;
  padding: 50px 0;
  position: relative;
}

.gnavi {
  overflow: hidden;
  position: absolute;
  left: 50px;
  top: 80px;
}

.gnavi a {
  display: block;
  float: left;
  margin-right: 40px;
}

.spnavi-btn,
.spnavi {
  display: none;
}

.logo {
  width: 116px;
}

.lang {
  position: absolute;
  right: 50px;
  top: 80px;
}

a.active {
  border-bottom: 1px solid #111;
}

.main img {
  border-radius: 6px;
}

.hero {
  padding: 0 50px;
}

.about,
.services,
.message {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 84%;
  margin: 300px auto 0;
}

.about {
  margin-top: 50px;
}

.about .lead {
  width: 65.6%;
  font-size: 15px;
  letter-spacing: .1em;
  line-height: 2.5;
}

.about .origin {
  width: 31.2%;
  padding-left: 30px;
  border-left: 1px solid #ddd;
  font-size: 12px;
}

.heading {
  color: #F4C479;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  margin-bottom: 150px;
}

.services {
  margin-bottom: -100px;
}

.service-item {
  width: 48.4%;
  margin-bottom: 100px;
}

.service-item .no {
  border-top: 1px solid #ddd;
  font-family: "Inter", serif;
  font-size: 12px;
  padding: 20px 0;
}

.service-item .title {
  font-size: 16px;
  margin: 20px 0 15px;
}

.message .text,
.message .portrait {
  width: 48.4%;
}

.message .text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.message .text .body {
  padding-left: 30px;
  border-left: 1px solid #ddd;
}

.message .portrait img {
  width: 100%;
  height: 100%;
  max-height: 90vh;
  object-fit: cover;
  object-position: top center;
}

.footer {
  background: #FAF7F2;
  margin-top: 300px;
  padding: 150px 0 50px;
}

.profile {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 84%;
  margin: 0 auto;
}

.profile p,
.profile dl {
  width: 48.4%;
}

.profile dl {
  display: flex;
  flex-wrap: wrap;
}

.profile dt {
  width: 30%;
}

.profile dd {
  width: 70%;
}

.profile dt:nth-of-type(n+2),
.profile dd:nth-of-type(n+2) {
  border-top: 1px solid #ddd;
  margin-top: 25px;
  padding-top: 25px;
}

.contact {
  margin: 100px 0 150px;
}

.contact a {
  display: block;
  width: 84%;
  margin: 0 auto;
  border: 1px solid #F4C479;
  border-radius: 6px;
  padding: 100px;
  position: relative;
  transition: 1s;
}

.contact a::before,
.contact a::after {
  content: '';
  display: block;
  border: 1px solid #F4C479;
  position: absolute;
  top: 50%;
}

.contact a::before {
  width: 30%;
  height: 1px;
  border-width: 1px 0 0 0;
  right: 100px;
}

.contact a::after {
  width: 40px;
  height: 40px;
  border-width: 1px 1px 0 0;
  right: 106px;
  margin-top: -20px;
  transform: rotate(45deg);
}

.contact a:hover {
  background: rgba(244, 196, 121, .1);
}

.copyright {
  display: flex;
  justify-content: space-between;
  font-family: "Inter", serif;
  font-size: 12px;
  padding: 0 50px;
}










@media screen and (max-width: 1023px) {
  br.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }

  .header {
    padding: 30px 0;
  }

  .gnavi,
  .lang {
    display: none;
  }

  .spnavi-btn {
    display: block;
    height: 60px;
    position: fixed;
    right: 5vw;
    top: 40px;
    width: 60px;
    z-index: 102;
    cursor: pointer;
  }

  .spnavi-btn::before,
  .spnavi-btn::after {
    background: #333;
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    position: absolute;
    left: 15px;
    top: 27px;
    transition: top .3s, transform .3s;
  }

  .spnavi-btn::after {
    top: 33px;
  }

  .spnavi-btn.x::before {
    top: 30px;
    transform: rotate(-45deg);
  }

  .spnavi-btn.x::after {
    top: 30px;
    transform: rotate(45deg);
  }

  .spnavi {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    background: rgba(253, 251, 247, .8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: .5s;
    padding-top: 30vh;
  }

  .spnavi a {
    display: block;
    font-size: 18px;
    text-align: center;
    margin: 30px 0;
  }

  .spnavi span {
    display: block;
    text-align: center;
    margin-top: 60px;
  }

  .spnavi span a {
    display: inline-block;
    font-size: 13px;
    margin: 0 10px;
  }

  .spnavi.show {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    padding: 0 4%;
  }

  .about,
  .services,
  .message {
    flex-direction: column;
    margin: 120px auto 0;
  }

  .about {
    margin-top: 30px;
  }

  .about .lead {
    width: 100%;
    font-size: 14px;
    line-height: 2.2;
  }

  .about .origin {
    width: 100%;
    margin: 25px 0 0;
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid #ddd;
  }

  .heading {
    font-size: 33px;
    margin-bottom: 30px;
  }

  .service-item {
    width: 100%;
    margin-bottom: 0;
  }

  .service-item:nth-of-type(n+3) {
    margin-top: 30px;
  }

  .message .text,
  .message .portrait {
    width: 100%;
  }

  .message .text .body {
    padding: 30px 0 0;
    border-left: 0;
    border-top: 1px solid #ddd;
  }

  .message .portrait {
    margin-top: 30px;
  }

  .message .portrait img {
    height: 110vw;
    object-position: center center;
  }

  .footer {
    background: #FAF7F2;
    margin-top: 120px;
    padding: 120px 0 30px;
  }

  .profile {
    flex-direction: column;
    margin: 0 auto;
  }

  .profile p,
  .profile dl {
    width: 100%;
  }

  .contact {
    margin: 60px 0 120px;
  }

  .contact a {
    padding: 30px 5%;
    text-align: center;
  }

  .contact a::before,
  .contact a::after {
    display: none;
  }

  .copyright {
    padding: 0 8%;
  }
}