@charset "utf-8";

body {
  background-color: #fff;
}
.about {
  max-width: 100%;
  position: relative;
  overflow: hidden;
}
h1 {
  font-family: Palatino;
  font-weight: lighter;
  font-size: 6.25em;
  position: absolute;
  top: 8.6%;
  left: 5.1%;
  z-index: 1;
  transform: rotate(90deg);
  transform-origin: left bottom;
}
.about ul {
  display: flex;
  justify-content: end;
  gap: 25%;
}
.about li {
  font-family: Palatino;
  font-weight: lighter;
}
.pc_nav {
  position: fixed;
  top: 7%;
  right: 3%;
  z-index: 100;
}
.sp_nav,
.sp_btn {
  display: none;
}

.pc-nav-contact {
  position: relative;
}
.pc-nav-contact::before {
  content: "";
  display: block;
  width: 200px;
  height: 200px;
  background-color: #ffd78d;
  border-radius: 50%;
  position: absolute;
  bottom: -60px;
  left: -50px;
  z-index: -1;
}
@media screen and (max-width: 850px) {
  .pc_nav {
    display: none;
  }
  /*ハンバーガー*/
  .sp_btn {
    display: block;
    height: 23px;
    cursor: pointer;
    position: fixed;
    top: -57px;
    right: -40px;
    z-index: 101;
    width: 158px;
    height: 158px;
    background-color: #ffd78d;
    border-radius: 50%;
  }
  .sp_btn span {
    display: block;
    width: 33px;
    height: 3px;
    background-color: #826b63;
    border-radius: 2px;
    /*位置の調整ー*/
    position: relative;
    top: 95px;
    left: 45px;
    /*ボタンの変化*/
    transition: 0.3s;
  }
  .sp_btn span::before,
  .sp_btn span::after {
    content: "";
    display: block;
    width: 33px;
    height: 3px;
    background-color: #826b63;
    border-radius: 2px;
    position: absolute;
    transition: 0.3s;
  }
  .sp_btn span::before {
    bottom: 10px;
  }
  .sp_btn span::after {
    top: 10px;
  }
  /*ばつ印*/
  .sp_btn.open span {
    background: transparent;
  }
  .sp_btn.open span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  .sp_btn.open span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .sp_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    z-index: 100;
  }
  .sp_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20%;
    align-items: flex-start;
    height: 50%;
    padding: 35% 0 0 30%;
  }
  .sp_nav ul li {
    color: #826b63;
    font-size: 30px;
    font-family: Palatino;
  }
}

.about_object {
  width: 833px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #f4e5e2;
  position: absolute;
  top: -144px;
  left: -144px;
  z-index: -1;
}
.about_box {
  max-width: 66%;
  margin: 15% auto 10% auto;
  position: relative;
}

h2 {
  font-family: Palatino;
  font-weight: lighter;
  font-size: 1.3rem;
}

.about_profile {
  display: flex;
  justify-content: flex-start;
  gap: 6.6%;
  margin-bottom: 8.5%;
}
.about_profile p {
  line-height: 175%;
}
.about_like {
  display: flex;
  justify-content: flex-start;
  gap: 8.9%;
}
h3 {
  margin-bottom: 1%;
}
.about_like p {
  width: 70%;
  margin-bottom: 4.5%;
}
.about_box img {
  width: 40%;
  height: auto;
  position: absolute;
  bottom: 5%;
  right: -20%;
}
@media screen and (max-width: 850px) {
  .about_box {
    max-width: 80%;
    margin-top: 80%;
  }

  .about_profile {
    display: flex;
    flex-direction: column;
    margin-bottom: 10% 0;
  }
  .about_like {
    display: flex;
    flex-direction: column;
  }
  h1 {
    font-size: 13vw;
    top: 6%;
  }
  h2 {
    margin: 20% 0 5% 0;
    font-weight: bold;
  }
  h3 {
    margin-bottom: 2%;
  }
  .about_object {
    width: 108%;
    aspect-ratio: 1;
    right: 10%;
  }
  .about_box img {
    position: static;
    bottom: 0%;
    right: 0%;
    order: -1;
    width: 100%;
  }
  .about_like p {
    width: 100%;
  }
}
.line {
  align-items: center;
  border-bottom: solid 1px#826b63;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding-bottom: 5px;
  position: relative;
  max-width: 51%;
  margin: 0 auto 15% auto;
}
.line::after,
.line::before {
  content: "";
  background: #826b63;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  bottom: -3px;
  position: absolute;
}
.line::after {
  right: -2px;
}
.line::before {
  left: 0;
}

.contact {
  text-align: center;
}
.contact strong {
  display: block;
  font-size: 28px;
  font-family: Palatino;
  font-weight: lighter;
  padding-bottom: 4.4%;
}

.contact .contact_text {
  max-width: 36%;
  margin: 0 auto;
  text-align: left;
  line-height: 1.6;
  margin-bottom: 4.4%;
}
/* ボタンのスタイル */
.btn a {
  position: relative;
  display: block;
  width: 35%;
  margin: 0 auto 9.3% auto;
  padding: 25px 0;
  border: solid 1px #826b63;
  border-radius: 35px;
  font-size: 20px;
  color: #826b63;
  text-decoration: none;
  text-align: center;
}

/* アイコンのスタイル */
.btn-triangle-right a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4%;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #826b63;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .line {
    margin: 15% auto 15% auto;
    max-width: 70%;
  }
  .contact strong {
    padding: 6% 0;
  }
  .contact .contact_text {
    max-width: 80%;
    line-height: 1.6;
  }
  .btn a {
    width: 300px;
    margin: 10% auto 30% auto;
  }
}
footer {
  background-color: #f9f5f1;
  position: relative;
}
footer .logo img {
  width: 11%;
  aspect-ratio: 1;
  position: absolute;
  top: 25%;
  left: 10%;
}
.footer_menu ul {
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 30%;
  padding: 10% 0 3% 0;
  gap: 0;
}
.footer_menu li {
  font-family: Palatino;
  font-weight: lighter;
  font-size: 12px;
}
.footer_menu img {
  display: block;
  margin: 0 auto;
  padding-bottom: 6%;
  width: 1.3%;
  height: auto;
}
small {
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 3%;
}
.copylight {
  font-size: 11px;
  text-align: center;
  padding-bottom: 3%;
}
@media screen and (max-width: 767px) {
  .line {
    margin: 15% auto 15% auto;
    max-width: 70%;
  }
  footer .logo img {
    display: block;
    position: initial;
    width: 150px;
    aspect-ratio: 1;
    padding-top: 70px;
    margin: 0 auto;
  }

  .footer_menu ul {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
  }
  .footer_menu li {
    font-family: Palatino;
    font-weight: lighter;
    font-size: 30px;
    line-height: 3em;
  }
  .footer_menu img {
    display: block;
    margin-left: 10%;
    padding-bottom: 6%;
    width: 36px;
    height: auto;
  }
}
