@charset "UTF-8";
/* CSS menu */

body {
  margin: 0;
  padding: 0;
  line-height: 1.6em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.back-pink {
background: rgba(211,188,183,0.70);
	padding-bottom: 40px 
}
.back-black {
background: rgba(0,0,0,1.00);
	color: rgba(255,255,255,1.00);
		padding-bottom: 40px 
}
.normal-box {
margin-top: 100px
}

@media screen and (max-width: 48em) {
.normal-box {
margin-top: 60px
}

}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.8;
}
p {
  font-size: 1em;
  line-height: 2em;
  letter-spacing: 0.02em
}
h2, .h2, h3, .h3 {
  font-size: 1.4rem;
}

.boxdes {
  margin-top: 40px;
  margin-bottom: 0
}
.boxdes-l {
  margin-top: 100px;
  margin-bottom: 0
}
@media screen and (max-width: 48em) {
  .boxdes {
    margin-top: 30px;
    margin-bottom: 40px
  }
  .boxdes-l {
    margin-top: 100px;
    margin-bottom: 0
  }
}
.mb-100 {
  margin-bottom: 100px
}
@media screen and (max-width: 48em) {
  .mb-100 {
    margin-bottom: 50px
  }
}
a:hover {
  text-decoration: none;
}

.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.button-2 {
  font-family: "Oswald", sans-serif;
font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
  user-select: none;
  border: 1px #595757 solid;
  border-radius: 70px;
  padding: 0.8em 1.6em 0.6em;
  margin: 100px auto 100px;
  min-height: 38px;
  width: 200px;
	text-align: center
}

.button-2 a{
	padding-top: 20px;
  color: #4E4E4E;
  font-size: 20px;
	  text-align: center;
		line-height: 1em
}
.button-2:hover {
  color: #4E4E4E!important;
background: rgba(255,255,255,0.47);
  text-decoration: none;
}
.button-2 img {
  width: 100px;
  margin: 0 auto;
}
@media screen and (max-width: 48em) {
	.button-2 {
  margin: 50px auto 80px;
}
}
	
	
	
.button-3 {
  padding: 0.8em 1.6em 0.3em;
  font-size: 1rem;
  color: #595757;
  text-align: 1em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  user-select: none;
  border-radius: 70px;
  transition: 0.4s ease;
  padding: 4px 50px 10px;
  margin: 0 auto;
  min-height: 38px;
  width: 200px;
  background: #FFFFFF
}
.button-3:hover {
  opacity: 0.8;
  color: #fff;
  text-decoration: none;
}
.button-3 img {
  width: 100px;
  margin: 0 auto;
}

.back-yellow {
  background-image: url("../rice-pillow/img/yellow.jpg"); /* 背景画像指定 */
  background-repeat: repeat;
}
.back-rice {
  background-image: url("../rice-pillow/img/rice-back.jpg"); /* 背景画像指定 */
  background-size: cover contain;
  background-position: bottom;
  padding: 0 0 100px;
  background-attachment: fixed;
}
@media (min-width: 1200px) {
  .back-rice {
    padding: 0 0 200px
  }
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.4em 1em 3.4em;
background: rgba(219,218,206,0.26)	
}
.logotype {
  font-family: sans-serif;
  font-size: 24px;
  color: #ffffff;
  width: 180px;
}
nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 48em) {
  nav nav {
    display: inline;
  }
	header {
  padding: 1em 1.4em 1em 1em;	
}
  .logotype img {
 width: 140px;
  }
}
.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  padding-top: 0.5em
}
@media screen and (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: -200px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: #2d303a;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
  }
}
.red {
  color: #f06c64;
}
.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 48em) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
  .menu__item:hover {
    background-color: #4f5464;
  }
}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}
.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
  top: -8px;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
  top: 8px;
  transition-duration: 0.25s;
}
@media screen and (min-width: 48em) {
  .menu__btn {
    display: none;
  }
}
.bottom-box {
  position: relative;
  padding: 0 10px 0px;
  bottom: 0;
}
@media (min-width: 1200px) {
  .bottom-box-l {
    position: absolute;
    padding: 0 20px 0 0;
    bottom: 0;
  }
  .bottom-box-r {
    position: absolute;
    padding: 0 0 0 20px;
    bottom: 0;
  }
}


.top-background-rp {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.top-background-rp::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../rice-pillow/img/top-ricepillow.jpg'); /* 背景画像のURL */
  background-size: cover;          /* 全画面表示 */
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);             /* 初期100% */
  transform-origin: center;
  animation: zoomIn 12s ease-in-out forwards;
  will-change: transform;
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to   { transform: scale(1.12); } /* ズーム量 */
}

/* 上に文字などを置く場合 */
.top-background-rp > * {
  position: relative;
  z-index: 1;
}



.handwrite-wrap {
  width: 240px;
	float: left;
	margin-left: 14%;
	top: 39vh
}



@media screen and (max-width: 48em) {

.top-background-rp {
    background-size: cover;
    max-height: 100vh;
		  align-items: baseline;
  }
	.top-background-rp::before {
  background-image: url('../rice-pillow/img/top-ricepillow-sp.jpg'); /* 背景画像のURL */
}
	.handwrite-wrap {
  width: 270px;
		float: none;
	margin: 10% auto auto;
}
	
.handwrite-wrap {
	top: 12vh
}



	
	}




.pr-background {
  background-image: url('../rice-pillow/img/nakami-rice-pillow.jpg'); /* 背景画像のURL */
  background-size: cover contain;
  background-position: center;
  min-height: 100vh;
	width: 100%;
	background-attachment: fixed;
	float: left;
	padding: 0 10%;
}

.pr-background-box {
   width: 70%;
	float: right;
	margin-left: 30%;
}

.pr-text-wrap {
  width: 400px;
	color: rgba(255,255,255,1.00);
	float: right;
	margin-right: 15%
	
}
.size-text {
padding: 30px 0 20px;
	
}


@media screen and (max-width: 48em) {
	
	.pr-background {
  background-image: url('../rice-pillow/img/nakami-rice-pillow-sp.jpg'); /* 背景画像のURL */
		padding-bottom: 100px;
		min-height: 120vh;
}
.pr-background-box {
  width: 80%;
	float: left;
	margin-left: 10%;
	color: rgba(255,255,255,1.00)
}

.pr-text-wrap {
  width: 300px;
	color: rgba(255,255,255,1.00);
	float: right;
	margin-right: 15%
	
}
.size-text {
padding: 50px 0 20px;
	border-bottom: rgba(164,164,164,1.00) solid 1px;
	margin-bottom: 20px
	
}
}

.text-l-box {
  border: rgba(188,188,188,1.00) solid 1px;
	padding: 10px 20px
}

.b-b-d-1 {
  border-bottom: rgba(188,188,188,1.00) dotted 1px;
	padding: 20px 0 5px;
}
.box-padding {
	padding: 30px;
}

@media screen and (max-width: 48em) {
	.b-b-d-1 {
	padding: 10px 0 10px;
}
.box-padding {
	padding: 10px;
}
}
 
.how-two-box {
	padding: 30px 20px 10px;
}


.how-two-box p{
	line-height: 1.6em;
}




.content img {
  width: 400px;
  max-width: 100%;
}
@media screen and (max-width: 48em) {
  .top-background {
    background-image: url('../rice-pillow/img/top-sp.jpg'); /* 背景画像のURL */
    background-size: cover;
    max-height: 45vh;
  }
  .content img {
    max-width: 250px;
    padding-bottom: 160px;
  }
}
.text-price {
  text-align: center;
  margin-top: 10px
}
.price-price {
  font-size: 1.5rem;
}
.price-type {
  margin-top: -25px;
  font-size: 18px;
}
.price-zei {
  font-size: 12px;
}
.back-hot {
  background-image: url('../rice-pillow/img/back-hot.svg'); /* 背景画像のURL */
  background-size: cover;
  padding: 80px 0
}

.img-box {
	float: left;
}


.img-right {
  width: 92%;
	float: right
}

.img-left {
  width: 92%;
	float: left
}
.nakami-box {
	margin-top: 100px
}
.nakami-box h3{
  font-size: 17px;
	line-height: 1em;
	margin: 15px 0  10px
}
.nakami-box p{
  font-size: 14px;
	line-height: 1.5em;
}