html {
  font-size: 62.5%;
  color: #404040;
}

@media(max-width:1320px) {
  html {
    font-size: calc(12 / 1320* 100vw);
  }
}

@media(max-width:640px) {
  html {
    font-size: calc(12 / 640* 100vw);
  }
	body {
		word-break: break-all;
	}
}

body {
  font-family: 'Shippori Mincho', serif;
  font-family: 'Noto Serif JP', serif;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

img {
  width: 100%;
  height: 100%;
	
}
@media(min-width:641px) {
	img {
	  object-fit: cover;
	  overflow: hidden;
	}
}
@media(max-width:640px) {
	img {
		height: auto;
	}
}
.sp {
  display: none;
}

@media(max-width:640px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.common-btn {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background-color: #da6d8a;
  width: 40rem;
  height: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: solid .2rem #da6d8a;
  position: relative;
  transition: .3s;
}

.common-btn::before {
  content: "";
  border-left: 1rem solid transparent;
  border-bottom: 1rem solid #fff;
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  transition: .3s;
}

@media (hover: hover) and (pointer: fine) {
  .common-btn:hover {
    color: #da6d8a;
    background-color: #fff;
  }
  
  .common-btn:hover::before {
    border-bottom: 1rem solid #da6d8a;
  }
}

@media(max-width:640px) {
  .common-btn {
    font-size: 2.6rem;
    letter-spacing: .05em;
    width: 100%;
    height: 8rem;
  }

  .common-btn::before {
    border-left: 1.6rem solid transparent;
    border-bottom: 1.6rem solid #fff;
    right: 1.2rem;
    bottom: 1.2rem;
  }
}

@media(min-width:641px) {
.sp_br {
  display: none;
}