@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; 
　font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Playfair Display', serif;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.8em;
  line-height: 2.4rem;
  text-align: center;
  padding-top: 40px;
}
@media(max-width:525px){
  body{
    padding-top: 0;
  }
}
section h2 {
  font-size: 3.6rem;
  font-weight: 600;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}

.header-box {
  color: #8d53a8;
  display: flex;
  justify-content: flex-end;
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
}
#nav-input{
  display: none;
}
.header__navigation h1{
display: none;
}
.header-tel, .header-instagram, .header-line {
  border: 1px solid #8d53a8;
  padding: 10px 20px;
  width: 160px;
  position: fixed;
  z-index: 999;
  top: 20px;
  background-color: #fff;
  text-decoration: none;
  color: #8d53a8;
  font-size: 1.4rem;
  border-radius: 6px;
  box-shadow: 0px 2px 2px 0  rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);

}
.header-tel {
  margin-right: 340px;
}
.header-tel a{
  text-decoration: none;
  color: inherit;
}
.header-instagram {
  margin-right: 170px;
}
.header ul {
  font-size: 2.4rem;
  display: flex;
  justify-content: space-around;
  max-width: 1040px;
  margin: 50px auto 50px;
  
}
.header__menu a{
  display: none;

}
.header__line {
  padding-top: 10px;
}
.header ul a {
  text-decoration: none;
  color: #8d53a8;
  font-weight: 550;
  font-family: "Playfair Display";
  
}
.header ul li span {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Serif JP";
}
.close-button{
  display: none;
}

@media(max-width:525px) {
  .header {
    height: 100px;
    background-color: #fff;
  }
  .header__navigation h1{
    color: #8d53a8;
  font-family: "Playfair Display";
  font-size: 2.8rem;
    line-height: 3.5rem;
    top: 10px;
    position: absolute;
    left: 0;
    display: initial;
  }
  .header__navigation h1 span {
  font-size: 5.0rem;
    font-weight: 600;
  }
  .header-box {
  display: initial;
    position: absolute;
    top: 400px;
    left: 25%;
  }
  .header-instagram{
    text-align: center;
    top: 70px;
    left: 25%;
    text-decoration: none;
    position: absolute;
  }
  .header-line{
    text-align: center;
        top: 140px;
        left: 25%;
        text-decoration: none;
        position: absolute;
  }
  .header-tel{
    margin-bottom: 10px;
    margin-right: 0;
    top: 0;
    left: 25%;
    position: absolute;
  }
  .header ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    margin-top: 150px;
    text-align: left;
  }
  .header ul li{
    margin: 0 30px 10px;
    width: 125px;
  }
  .header__menu {
    display:initial;
  }
  .header__menu li{
    display: initial;
    list-style: none;
    font-size: 1.4rem;
    color: #6e6b68;
  } 

  .header__line{
    display: none;
  }
  /*ハンバーガーアイコン*/
  nav {
  display: block;
  width: 100%;
  position: fixed;
  background-color: #f3e6fb;
  top:0;
  left:-3000px;
  bottom: 0;
  transition: all 0.5s;
  z-index: 3;
  opacity: 1;
}
  .open nav{
  left: 0;
  opacity: 1;
  }
  
.toggle-btn{
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  z-index: 3;
  cursor: pointer;
  color: #8d53a8;
  background-color: #f3e6fb;
}
.toggle-btn span{
  position: absolute;
  display: block;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #8d53a8;
  transition: all 0.5s;
  border-radius: 4px;
}
  .toggle-btn span:nth-child(1){
  top: 35px;
    left: 30px;
}
.toggle-btn span:nth-child(2){
  top: 50px;
  left: 30px;
}
.toggle-btn span:nth-child(3){
  top: 65px;
  left: 30px;
}

.open .toggle-btn span{
  background-color:#8d53a8;
  
}
.open .toggle-btn span:nth-child(1){
  width: 50px;
  transform: translateY(15px)rotate(-315deg);
}
.open .toggle-btn span:nth-child(2){
  opacity: 0;
}
.open .toggle-btn span:nth-child(3){
  width: 50px;
  transform: translateY(-15px)rotate(315deg);
}
  #mask{
    display: none;
    transition: all 0.5s;
  }
 .open #mask{
  display: block;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position:fixed;
  opacity: 0.8;
  cursor: pointer;
}
}
@media(max-width:380px){
  .header-instagram{
    top: 120px;
  }
  .header-tel{
    top: 55px;
  }
   .header-line{
    top: 190px;
  }
}
.section-top{
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}
.section-top h1 {
  color: #8d53a8;
  font-family: "Playfair Display";
  font-size: 6.0rem;
  font-weight: 500;
  line-height: 8.0rem;
  position: absolute;
  left: 40px;
}
.section-top__title-photo {
  display: flex;
  justify-content: center;
  margin-top: -530px;
  position: relative;
}
.section-top__img1 {
  width: 555px;
  height: 560px;
  margin-left: 490px;
}
.section-top span {
  font-size: 10.0rem;
  font-weight: 600;
}
.section-top__bg {
  background-color: #f3e6fb;
  width: 555px;
  height: 560px;
  
}
.section-top h2 {
  font-size: 3.0rem;
  margin-top: -350px;
  font-weight: 400;
  margin-bottom: 50px;
  text-align: left;
  margin-left: 50px;
  position: relative;
}
.br {
  display: none;
}
.section-top__img2 {
  width: 400px;
  height: 360px;
  display: block;
  margin-left: 100px;
  background-image: url("../images/27200196_s.jpg");
  background-color: rgba(255, 255, 255, 0.3);
  background-blend-mode: overlay;
}
@media(max-width:900px){
  .section-top__title-photo{
    justify-content: flex-end;
  }
 .br {
    display: block;
  }
  
  .section-top__img2 {
    display: none;
  }
  .section-top h2{
    line-height: 5.0rem;
    background-color: rgba(255,255,255,0.7);
    width: 300px;
  }
}
@media(max-width:525px) {
  .section-top__bg {
    display: none;
  }
  .section-top__title-photo {
    display: contents;
  }
  .section-top h1 {
    font-size: 2.8rem;
    line-height: 3.5rem;
    top: 10px;
    position: absolute;
    color: #8d53a8;
    left: 0;
  }
  .section-top span {
    font-size: 5.0rem;
    font-weight: 600;
  }
  .section-top__img1 {
    width: 100%;
    height: 300px;
    margin-left: 0;
    object-fit: cover;
  }
  
  .br {
    display: block;
  }
  .section-top h2 {
    font-size: 2.2rem;
    margin-top: -250px;
    margin-left: 24px;
    line-height: 4.0rem;
    margin-bottom: 170px;
    width: 200px;
    background-color: rgba(255,255,255,0.7);
  }
  .section-top__img2 {
    display: none;
  }
}
.footer {
  background-color: #f4f4f4;
  width: auto;
  padding-bottom: 20px;
}
.footer ul {
  max-width: 1040px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 40px;
  margin-bottom: 40px;
}
.footer ul a {
  text-decoration: none;
  color: #8d53a8;
  font-family: "Playfair Display";
}
.footer_name {
  color: #8d53a8;
  font-family: "Playfair Display";
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 4.0rem;
}
.footer_name span {
  font-size: 6.0rem;
  font-weight: 600;
}
.footer-box {
  display: flex;
  justify-content: space-around;
  max-width: 1040px;
  margin: 0 auto;
}

.footer__reserve2 {
  display: flex;
  margin-top: 20px;
  margin-bottom: 80px;
}
.footer__tel, .footer__instagram,.footer__line {
  border: 1px solid #8d53a8;
  height: 50px;
  text-decoration: none;
  color: #8d53a8;
  background-color: #fff;
  padding: 10px 20px;
  width: 160px;
  font-size: 1.4rem;
  border-radius: 6px;
  box-shadow: 0px 2px 2px 0  rgba(0,0,0,0.12),0 1px 5px 0 rgba(0,0,0,0.12),0 3px 1px -2px rgba(0,0,0,0.2);
}
.footer__tel {
  margin-right: 0px;
}
.footer__tel a{
  text-decoration: none;
  color: inherit;
}
.footer__instagram {
  margin-left: 10px;
}
.footer__line {
  margin-left: 10px;
}
.footer small {
  font-family: "Playfair Display";
}
@media(max-width:750px){
  .footer{
    position: relative;
  }
.footer ul {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px;
  margin: 10px auto 10px;
  width: 260px;
  padding-top: 115px;
}
.footer ul a {
  font-size: 1.6rem;
}
  .footer ul li{
    margin: 0 16px 10px;
  }
  .footer__li{
    display: none;
  }
.footer_name {
  font-size: 2.8rem;
  margin-top: -260px;
  padding-bottom: 150px;
}
.footer_name span {
  font-size: 5.0rem;
}
.footer-box {
  display: initial;
}
  .footer__reserve{
    display: none;
  }
.footer__reserve2 {
  display: none;
  }}
