@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #1E2C37;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: normal;
}
h2 {
  font-family: "cormorant", sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.5rem;
  position: relative;
  z-index: 2;
}
.square {
  width: 50px;
  height: 50px;
  border: solid 3px rgba(134, 159, 177, .6);
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.h2-area {
  position: relative;
  padding-left: 20px;
  width: fit-content;
  margin: 0 auto;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
main {
  background-color: #F2EDE3;
}
@media(max-width:768px) {
  .square {
    width: 30px;
    height: 30px;
  }
  h2 {
    letter-spacing: 0.2rem;
  }
  .h2-area {
    padding-left: 15px;
  }
}
/*header*/
#menu-btn-check {
  display: none;
}
.nav-block {
  position: fixed;
  top: 3%;
  right: 5%;
  background-color: rgba(242, 237, 227, .5);
  font-family: "cormorant", sans-serif;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.1rem;
  padding: 20px;
  z-index: 1000;
}
header ul li {
  margin-top: 30px;
}
header ul li:first-child {
  margin-top: 0;
}
header ul li a {
  text-decoration: none;
  color: #1E2C37;
}
@media(max-width:768px) {
  .hamburger-menu {
    position: absolute;
  }
  .nav-block {
    display: none;
  }
  #menu-btn-check {
    display: block;
  }
  .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 100;
  }
  .menu-btn span, .menu-btn span:before, .menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background-color: #1E2C37;
    position: absolute;
    transition: all 0.5s;
  }
  .menu-btn span:before {
    bottom: 10px;
  }
  .menu-btn span:after {
    top: 10px;
  }
  #menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
  }
  #menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
  }
  #menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }
  .nav-block {
    width: 30vw;
    height: 100vh;
    position: fixed;
    top: 0;
    right: -120%;
    z-index: 80;
    background-color: rgba(242, 237, 227, .9);
    transition: all 0.5s; 
    display: block;
  }
  .nav-block ul {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
  }
  .nav-block ul li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
    color: #869FB1;
    text-decoration: none;
    padding: 9px 20px;
    text-align: right;
    transition: all 0.5s;
  }
  #menu-btn-check:checked ~ .nav-block {
    right: 0;
  }
  #menu-btn-check {
    display: none;
  }
}
/*main-view*/
.section-main {
  position: relative;
  width: 100%;
}
.top-image {
  background-image: url("../images/top.webp");
  background-repeat: no-repeat;
  background-position: 30% 10%;
  background-size: cover;
  height: 100vh;
  width: 25vw;
}
h1 {
  position: absolute;
  top: 50%;
  left: 10px;
  right: 0;
  width: 55%;
  max-width: 1120px;
  min-width: 650px;
  margin: auto;
  transform: translateY(-50%);
}
h1 img {
  width: 100%;
}
@media(max-width:768px) {
  .top-image {
    width: 30%;
  }
  h1 {
    width: 90%;
    min-width: unset;
  }
}
/*message*/
.section-message {
  margin-top: 57px;
}
.message-bg {
  background-image: url("../images/massage-bg_pc.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 96%;
  height: 630px;
  position: relative;
  margin: 0 auto;
}
.message-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.section-message img {
  width: 195px;
  height: auto;
  object-fit: cover;
}
.section-message p {
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  font-weight: 400;
  width: 41%;
  text-align: center;
  line-height: 2.0;
  max-width: 868px;
  min-width: 590px;
  margin-top: 2%;
}
.section-message p span {
  white-space: nowrap;
}
.section-message p.message_p2 {
  margin-top: 20px;
}
@media(max-width:768px) {
  .message-bg {
    background-image: url("../images/message-bg_sp.webp");
  }
  .message-content {
    width: 80%;
    margin: 0 auto;
    max-width: 500px;
  }
  .section-message img {
    width: 105px;
  }
  .section-message p {
    min-width: unset;
    line-height: 1.5;
    width: 100%;
    margin-top: 5%;
  }
  .section-message p.message_p2 {
    margin-top: 13px;
  }
}
/*about*/
.section-about {
  margin-top: 105px;
}
.about-content {
  display: flex;
  flex-direction: row-reverse;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  margin: 46px auto 0;
  max-width: 1100px;
}
.miyu-photoarea {
  width: 50%;
  height: 500px;
  background-color: #869FB1;
  position: relative;
  max-width: 462px;
  box-shadow: 15px 15px 0px 0px rgba(217, 217, 217, 1);
}
.miyu-photoarea img {
  width: 85%;
  height: 440px;
  border-radius: 50% 0 0;
  object-fit: cover;
  object-position: top;
  position: absolute;
  bottom: 0;
  right: 0;
}
.profile-area {
  width: 48%;
}
.profile-area h3 {
  font-size: clamp(2.6rem, 4vw, 4.0rem);
  font-weight: 500;
  color: #869FB1;
  letter-spacing: 0.5rem;
  margin-bottom: 20px;
}
.profile-area h4 {
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  font-weight: 400;
  margin-bottom: 8px;
}
.profile-area p {
  margin-bottom: 15px;
  line-height: 1rem;
  padding-right: 10px;
}
.profile-area p.profile-messase {
  padding-right: 10px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 0;
}
.wrapper {
  display: grid;
  grid-template-columns: 15% 85%;
  row-gap: 8px;
  margin-bottom: 15px;
}
.section-about hr {
  border-top: 2px solid #869FB1;
  margin: 20px 0;
}
@media(max-width:768px) {
  .section-about {
    margin-top: 83px;
  }
  .about-content {
    flex-direction: column;
    width: 80%;
  }
  .miyu-photoarea {
    width: 80%;
    height: 330px;
    max-width: 300px;
    min-width: 275px;
  }
  .miyu-photoarea img {
    height: 300px;
  }
  .profile-area {
    width: 100%;
  }
  .profile-area h3 {
    margin-top: 50px;
    margin-bottom: 15px;
  }
  .profile-area p {
    margin-bottom: 12px;
  }
  .profile-area h4 {
    margin-bottom: 6px;
  }
  .wrapper {
    grid-row-gap: 6px;
    margin-bottom: 12px;
  }
  .section-about hr {
    border-top: 1px solid #869FB1;
  }
}
/*works*/
.section-work {
  background-color: rgba(134, 159, 177, 0.5);
  margin-top: 160px;
  padding-top: 70px;
  margin-bottom: 100px;
}
.work-h2_span {
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 300;
}
.worksquare {
  border: solid 3px rgba(242, 237, 227, 0.8);
  top: -3px;
}
.production-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px 2%;
  margin: 65px auto 0;
  padding-bottom: 100px;
  width: 100%;
  max-width: 1330px;
}
.work-production {
  background-color: rgba(255, 255, 255, .9);
  height: fit-content;
  width: 100%;
}
.work-production img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  object-position: center;
}
.production-description {
  padding: 0 2% 30px;
}
.production-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30%;
  min-width: 395px;
}
.production-area h3 {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  font-weight: 300;
  text-align: center;
}
.production-area p {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-weight: 300;
  text-align: center;
  margin-top: 10px;
}
.production-area p.production-title {
  font-family: "cormorant", sans-serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 300;
  text-align: left;
  margin-top: 8px;
}
.view-btn {
  width: 135px;
  height: 135px;
  border: 1px solid #F2EDE3;
  box-shadow: 0px 0px 8px 2px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.view-btn_area {
  text-decoration: none;
  color: #F2EDE3;
  display: contents;
}
.view-btn:hover {
  opacity: 0.5;
}
.view-btn p {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-family: "cormorant", sans-serif;
  font-weight: 400;
  position: relative;
  margin-bottom: 20px;
}
.view-btn p::after {
  content: "";
  width: 40px;
  height: 7px;
  border-right: 1px solid #F2EDE3;
  border-bottom: 1px solid #F2EDE3;
  transform: skew(45deg);
  position: absolute;
  top: 40px;
  left: 5px;
}
/*popover*/
.light-box {
  position: fixed;
  max-width: 768px;
  max-height: calc(100% - 16px * 2);
  inset: 0;
  margin: auto;
  background: #fff;
  padding: 16px;
  overflow: auto;
  z-index: 1100;
}
.light-box::backdrop {
  background-color: rgba(0, 0, 0, 0.2);
}
.popup-image_pc {
  width: 100%;
  padding-bottom: 70px;
}
.popup-image_sp {
  display: none;
}
.light-box__button {
  position: fixed;
  bottom: 2%;
  right: 0;
  left: 0;
  cursor: pointer;
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-top: 16px;
  padding: 6px 32px;
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  background: #869fb1;
  color: #fff;
  border: 1px solid #fff;
}
@media(max-width:768px) {
  .section-work {
    margin-top: 78px;
    padding-top: 55px;
  }
  .production-wrap {
    margin-top: 50px;
  }
  .production-area {
    width: 80%;
    max-width: 425px;
    min-width: 300px;
  }
  .work-production img {
    height: auto;
  }
  .production-area p {
    margin-top: 8px;
  }
  .production-description {
    padding: 0 2% 23px;
  }
  .production-description span {
    white-space: nowrap;
  }
  .view-btn {
    width: 95px;
    height: 95px;
  }
  .view-btn p::after {
    width: 30px;
    height: 5px;
    top: 30px;
  }
  /*popover*/
  .light-box {
    width: 90%;
  }
  .popup-image_pc {
    display: none;
  }
  .popup-image_sp {
    display: block;
    width: 100%;
    padding-bottom: 70px;
  }
}
/*skill*/
.section-skill {
  background-image: url("../images/skill.webp");
  background-position: 10% 55%;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  margin-bottom: 200px;
}
.skill-area {
  display: flex;
  justify-content: flex-end;
  max-width: 1270px;
  margin: 0 auto;
  padding: 5%;
}
.skill-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, .7);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
  width: 45%;
  max-width: 475px;
  min-width: 300px;
  padding: 6% 1%;
}
.skill-wrapper {
  display: grid;
  grid-template-columns: 22% 73%;
  grid-column-gap: 5%;
  grid-row-gap: 15px;
  font-family: "cormorant", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.8rem);
  width: 90%;
  margin: 40px auto 0;
  box-sizing: border-box;
}
.skill-title {
  text-align: right;
  white-space: nowrap;
}
.skill-wrapper span {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  margin-left: 8px;
}
@media(max-width:768px) {
  .section-skill {
    background-position: 85% 55%;
    margin-bottom: 100px;
  }
  .skill-area {
    justify-content: center;
    max-width: 380px;
    padding: 10%;
  }
  .skill-content {
    width: 85%;
    min-width: unset;
    padding: 13%;
  }
  .skill-wrapper {
    margin: 20px auto 0;
    grid-row-gap: 9px;
    width: 100%;
  }
}
/*contact*/
.section-contact p {
  font-size: clamp(1.3rem, 1.6vw, 1.6rem);
  text-align: center;
  line-height: 3.2rem;
  margin-top: 50px;
}
form {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  max-width: 780px;
  margin: 50px auto 0;
}
.item {
  display: flex;
  flex-direction: column;
  width: 100%;
  ;
}
label {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  margin-bottom: 15px;
}
.label-required {
  color: #869FB1;
  margin-left: 1%;
}
.name-area{
  display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.name-area input{
  width: 48%;
}
textarea {
  height: 140px;
  border: solid 1px #869FB1;
}
input {
  border: solid 1px #869FB1;
  height: 50px;
  text-align: left;
  margin-bottom: 20px;
}
::placeholder {
  color: rgba(134, 159, 177, .3);
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  padding-left: 1%;
  letter-spacing: 0.2rem;
}
.btn {
  margin: 100px auto 120px;
}
.btn-bg {
  width: 145px;
  height: 50px;
  background-color: #D9D9D9;
  position: relative;
}
button {
  height: 50px;
  width: 145px;
  border: solid 1px #869FB1;
  background-color: rgba(255, 225, 255, 0);
  color: #869FB1;
  font-family: "cormorant", sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  letter-spacing: 0.2rem;
  position: absolute;
  bottom: 7px;
  right: 7px;
  padding-top: 5px;
}
button:hover {
  cursor: pointer;
  opacity: 0.5;
  background-color: #869FB1;
  color: #F2EDE3;
}
.btn-bg:hover {
  background-color: #F2EDE3;
}
.formmailar{
  color: #869FB1;
  text-decoration: none;
}
@media(max-width:768px) {
  .section-contact p {
    width: 80%;
    margin: 50px auto 32px;
    line-height: 1.5;
    text-align: center;
    max-width: 450px;
  }
  form {
    max-width: 580px;
  }
  label {
    margin-bottom: 8px;
  }
  .name-area input{
  width: 47%;
}
  input {
    height: 40px;
  }
  textarea {
    height: 160px;
  }
  .btn {
    margin: 50px auto 100px;
  }
}
/*footer*/
footer {
  background-color: #869FB1;
}
#page-top {
  position: fixed;
  right: 3%;
  bottom: 30px;
  color: #869FB1;
  background-color: rgba(255, 255, 255, .8);
  padding: 40px;
  border: solid 1px #869FB1;
  border-radius: 50%;
  z-index: 1000;
}
#page-top::after {
  content: "";
  width: 20px;
  height: 20px;
  border-right: 2px solid #869FB1;
  border-bottom: 2px solid #869FB1;
  transform: rotate(225deg);
  position: absolute;
  top: 35px;
  left: 31px;
}
footer img {
  width: 135px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding-top: 40px;
}
small {
  display: block;
  color: #F2EDE3;
  font-family: "cormorant", sans-serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  letter-spacing: 0.1rem;
  text-align: center;
  margin-top: 90px;
  padding-bottom: 30px;
}
@media(max-width:768px) {
  #page-top {
    padding: 25px;
  }
  #page-top::after {
    width: 15px;
    height: 15px;
    top: 21px;
    left: 18px;
  }
  footer img {
    width: 75px;
    padding-top: 30px;
  }
  small {
    margin-top: 30px;
  }
}
/*--------mail.php------*/
.complete-main {
  background-color: rgba(134, 159, 177, .6);
  height: 100vh;
  position: relative;
}
.complete-content {
  width: 70%;
  margin: 0 auto;
  height: fit-content;
  background-color: #F2EDE3;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 3%;
  max-width: 720px;
}
.complete-h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-family: "Noto Serif JP", serif;
  letter-spacing: normal;
  margin-bottom: 30px;
}
.complete-btn {
  margin-top: 50px;
}
.complete-message {
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
  margin: 30px auto 0;
}
.complete-content span {
  white-space: nowrap;
}
.complete-btn a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  background-color: #869FB1;
  padding: 10px 20px;
  border-radius: 10px;
}
.complete-image {
  width: 120px;
  height: auto;
  margin: 50px auto 10px;
}
.complete-image img {
  width: 100%;
}
@media(max-width:768px) {
  .complete-content {
    width: 80%;
  }
}