@charset "UTF-8";
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Old Mincho", serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

img:not([alt]) {
  filter: blur(10px);
}

input,
button,
select,
textarea {
  font: inherit;
  border: none;
  border-radius: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 99;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
}

#header__pc-inner {
  display: none;
}

.header__pc-inner {
  width: 95vw;
  margin-inline: auto;
  padding: 0 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
}
@media screen and (max-width: 1024px) {
  .header__pc-inner {
    display: none;
  }
}

.header__pc-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__pc-logo {
  font-family: "Tagesschrift", system-ui;
  color: #333;
  font-weight: 700;
}

.header__pc-link {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 2.5;
  color: #333;
  letter-spacing: 0.05em;
  transition: ease 0.4s;
  padding: 12px 19px;
  cursor: pointer;
}
.header__pc-link:hover {
  background-color: #5d627b;
  color: #fff;
  transition: ease 0.4s;
}

.header__sp-inner {
  position: relative;
}

.header__sp-btn {
  display: none;
  position: fixed;
  top: 0px;
  right: 10px;
  z-index: 25;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 1024px) {
  .header__sp-btn {
    display: block;
  }
}

.header__sp-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333;
  width: 45%;
}

.header__sp-btn span:nth-of-type(1) {
  top: 15px;
}

.header__sp-btn.open span:nth-of-type(1) {
  top: 48%;
  transform: translate(-6%, -6%) rotate(315deg);
  width: 48%;
}

.header__sp-btn span:nth-of-type(2) {
  top: 23px;
}

.header__sp-btn.open span:nth-of-type(2) {
  opacity: 0;
}

.header__sp-btn span:nth-of-type(3) {
  top: 31px;
}

.header__sp-btn.open span:nth-of-type(3) {
  top: 48%;
  transform: translate(-6%, -6%) rotate(-315deg);
  width: 48%;
}

@media screen and (max-width: 1024px) {
  .circle-bg {
    position: fixed;
    z-index: 15;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(rgba(196, 206, 231, 0.8) 50%, rgba(255, 227, 164, 0.8) 100%);
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all 0.6s;
  }
}

.circle-bg.circleactive {
  transform: scale(50);
}

#gnav-ifonewrap {
  display: none;
}

@media screen and (max-width: 1024px) {
  #gnav-ifonewrap.active {
    display: block;
  }
}

.header__sp-list {
  position: fixed;
  z-index: 16;
  width: 100%;
  height: 100vh;
  overflow: auto;
  margin-inline: auto;
  padding-top: 50px;
  text-align: center;
}

.header__sp-link {
  display: inline-block;
  cursor: pointer;
  width: 90%;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  line-height: 2.5;
  color: #333;
  letter-spacing: 0.05em;
  transition: ease 0.4s;
  padding: 12px 19px;
  cursor: pointer;
}
.header__sp-link:hover {
  background-color: #5d627b;
  color: #fff;
  transition: ease 0.4s;
}

.scroll {
  padding-top: 60px;
  position: relative;
  text-align: center;
  background-color: #e3e3e3;
}
@media screen and (max-width: 768px) {
  .scroll {
    padding-top: 40px;
  }
}

.scroll span {
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .scroll span {
    font-size: 12px;
  }
}

.scroll::before {
  animation: scroll 2s infinite;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  content: "";
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .scroll::before {
    height: 10px;
    width: 10px;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    transform: rotate(-45deg) translate(0, 0);
  }
  40% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    transform: rotate(-45deg) translate(-20px, 20px);
  }
  100% {
    opacity: 0;
  }
}
.fv__inner {
  width: 100vw;
  height: 90vh;
  position: relative;
}

.fv__inner::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 90vh;
  background: url(../imges/fv.jpg);
  background-size: cover;
  background-position: center;
}

.fv_ttl {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.875rem, 0.65rem + 6.22vw, 6.25rem);
  color: #e3e3e3;
  text-shadow: 0 0 5px #333;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.sub-ttl {
  margin-top: 10px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.625rem, 0.52rem + 0.53vw, 1rem);
}
@media screen and (max-width: 768px) {
  .sub-ttl {
    margin-top: 5px;
  }
}

.profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .profile {
    flex-direction: column;
  }
}

.plofile__box {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .plofile__box {
    width: 100%;
  }
}

.profile__slide {
  display: none;
}

.profile__show {
  display: block;
}

.profile__img {
  aspect-ratio: 45/60;
}

.index-btn-wrapper {
  font-size: 16px;
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.index-btn {
  position: relative;
}

.index-btn::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #333;
  border-radius: 9999px;
  cursor: pointer;
}

.index-btn:hover::before {
  background-color: #5d627b;
}

.profile__table {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .profile__table {
    width: 100%;
    margin-top: 30px;
  }
}

.profile__table th {
  width: 30%;
  vertical-align: top;
}

.profile__table td {
  width: 70%;
}

.profile__table th,
.profile__table td {
  padding: 0.5em;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.75rem, 0.715rem + 0.18vw, 0.875rem);
  color: #333;
}
@media screen and (max-width: 768px) {
  .profile__table th,
  .profile__table td {
    padding: 0.3em;
  }
}

.profile__table-link {
  color: #333;
}

.appearance__tab {
  display: flex;
  justify-content: left;
  margin-top: 10px;
  column-gap: 10px;
}
@media screen and (max-width: 375px) {
  .appearance__tab {
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 5px;
  }
}

.appearance__link {
  display: inline-block;
  padding: 12px 10px;
  width: 100px;
  text-align: center;
  color: #333;
  background-color: #fff;
  color: #333;
  font-size: clamp(0.75rem, 0.68rem + 0.36vw, 1rem);
}
@media screen and (max-width: 768px) {
  .appearance__link {
    padding: 6px 5px;
  }
}

.appearance__link-active {
  background-color: #5d627b;
  color: #fff;
}

.content__area {
  margin-top: 15px;
  display: none;
  height: 200px;
  min-height: 200px;
  overflow: hidden;
}

.content__area.content__area-active {
  display: block;
  height: 200px;
  min-height: 200px;
}
@media screen and (max-width: 768px) {
  .content__area.content__area-active {
    height: 150px;
    min-height: 150px;
  }
}

.area__item {
  position: relative;
  border-bottom: 1px solid #5d627b;
  font-family: "Zen Old Mincho", serif;
  color: #333;
  font-size: clamp(0.75rem, 0.68rem + 0.36vw, 1rem);
  padding: 5px 0;
  display: block;
}

.area__item:not(:first-child) {
  padding-top: 10px;
}

.voice p {
  font-size: clamp(0.75rem, 0.68rem + 0.36vw, 1rem);
}

.work__box,
.portfolio__box {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .work__box,
  .portfolio__box {
    padding-top: 30px;
  }
}

.work__box-ttl,
.portfolio__box-ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 0.86rem + 0.71vw, 1.5rem);
  font-weight: 700;
}

.portfolio__box-subttl {
  font-size: clamp(0.625rem, 0.59rem + 0.18vw, 0.75rem);
  margin-left: 10px;
}

.work__list,
.portfolio__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(348px, 1fr));
  column-gap: 20px;
  row-gap: 40px;
  margin-top: 40px;
}
@media screen and (max-width: 375px) {
  .work__list,
  .portfolio__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.work__link:hover > .work__img img,
.portfolia__link:hover > .portfolio__img img {
  transform: scale(1.1, 1.1);
  transition: all 0.5s;
}

.work__img,
.portfolio__img {
  width: 100%;
  overflow: hidden;
}

.work__img img,
.portfolio__img img {
  transition: all 0.5s;
}

.work__date,
.portfolio__date {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.75rem, 0.715rem + 0.18vw, 0.875rem);
  color: #333;
}

.work__text,
.portfolio__text {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 0.93rem + 0.36vw, 1.25rem);
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.work__subtext,
.portfolio__subtext {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.75rem, 0.715rem + 0.18vw, 0.875rem);
  color: #333;
}

.portfolio__box .portfolio__box-ttl:nth-of-type(2) {
  padding-top: 100px;
}

.subttl__link {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.625rem, 0.59rem + 0.18vw, 0.75rem);
  color: #333;
  position: relative;
  display: block;
}

.subttl__link::before {
  content: "※";
}

.subttl__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  bottom: -2px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.contact {
  background-color: #e3e3e3;
  padding: 150px 0;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 70px 0;
  }
}
@media screen and (max-width: 375px) {
  .contact {
    padding: 30px 0;
  }
}

.contact_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .contact_box {
    flex-direction: column;
    row-gap: 20px;
  }
}

.contact_button {
  width: 45%;
  text-align: center;
  background-color: #5d627b;
  border: 1px solid #5d627b;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .contact_button {
    width: 80%;
  }
}
@media screen and (max-width: 375px) {
  .contact_button {
    width: 100%;
  }
}

.contact_button.slide {
  background: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.contact_button.slide:hover > .contact_link {
  color: #fff;
}

.contact_button.slide:after {
  background: #5d627b;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 200px;
  transform: skewY(-10deg) scale(1, 0);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.contact_button.slide:hover::after {
  transform: skewY(-10deg) scale(1, 1);
}

.contact_link {
  display: block;
  padding: 30px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(0.875rem, 0.161rem + 1.49vw, 1.5rem);
  color: #333;
}
@media screen and (max-width: 768px) {
  .contact_link {
    font-size: clamp(0.75rem, 0.663rem + 0.44vw, 0.875rem);
  }
}
@media screen and (max-width: 375px) {
  .contact_link {
    padding: 15px;
  }
}

.footer {
  padding: 80px;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 50px;
  }
}

.footer__copy-right {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 0.86rem + 0.71vw, 1.5rem);
  color: #fff;
}

.inner {
  padding: 0 30px;
  max-width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 100%;
  }
}

.ttl {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 1.79rem + 1.07vw, 2.75rem);
  text-align: center;
}

.about,
.work {
  background-color: #e3e3e3;
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .about,
  .work {
    padding-top: 70px;
  }
}
@media screen and (max-width: 375px) {
  .about,
  .work {
    padding-top: 30px;
  }
}

.appearance,
.voice {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .appearance,
  .voice {
    padding-top: 30px;
  }
}

.appearance__ttl,
.voice__ttl {
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(1rem, 0.86rem + 0.71vw, 1.5rem);
}/*# sourceMappingURL=style.css.map */