@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
  text-decoration: none;
  list-style-type: none;
  font-family: serif;
}

*, *:before, *:after { box-sizing: border-box; }

html {
  overflow: auto;
}

body {
  position: relative;
  overflow: hidden;
  background-color: rgb(231, 238, 245);
}

p {
  font-size: 1.3vw;
}

nav.NavMenu{
	position: fixed; /*表示位置を固定*/
	z-index: 2; /*重ね順を変更*/
	top: -0.7vw; /*表示位置を指定*/
	left: 70%; /*表示位置を指定*/
	/*背景を白にする*/
	color: #000; /*文字色を黒にする*/
	text-align: center; /*テキストを中央揃え*/
	width: 30%; /*全幅表示*/
	transform: translatex(100%); /*ナビを上に隠す上から出したい場合は、transform: translateYを使う。*/
  transition: all 0.6s;/*アニメーションの時間を指定*/
}

nav.NavMenu ul{
	background: #ccc; /*背景をグレーにする*/
	width: 100%;
	margin: 0 auto;
	padding: 0;
  border-radius: 0 0 0 20%;
}

nav.NavMenu ul li{
	font-size: 1.1em;
	list-style-type: none;
	padding: 0;
	width: 100%;
}

nav.NavMenu ul li:last-child{
	padding-bottom: 0;
}

nav.NavMenu ul li a {
	display: block; /*クリックできる領域を広げる*/
	color: #000;
	padding: 1em 0;
}

/*トグルボタンが押されたときに付与するクラス*/
nav.NavMenu.active{
	transform: translateY(0%);/*上から出したい場合は、transform: translateYを使う。*/
}

/*トグルボタンのスタイルを指定*/
.Toggle {
	position: fixed;/* bodyに対しての絶対位置指定 */
	right: 13px;
	top: 12px;
	width: 42px;
	height: 42px;
	cursor: pointer;/*divだけどカーソルが変わるようにしている*/
	z-index: 3;/*ボタンを一番上にしている(押せなくなるから)*/
}

.Toggle span {
	display: block;
	position: absolute;
	left: 6px;
	width: 30px;
	border-bottom: solid 3px #000;
	transition: .35s ease-in-out;/*変化の速度を指定*/
}

.Toggle span:nth-child(1) {
	top: 9px;
  
}

.Toggle span:nth-child(2) {
	top: 18px;
}

.Toggle span:nth-child(3) {
	top: 27px;
}

/* 最初のspanをマイナス45度に */
.Toggle.active span:nth-child(1) {
	top: 18px;
	left: 6px;
	transform: rotate(-45deg);
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
	top: 18px;
	transform: rotate(45deg);
}

/* 画像lightbox */
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid rgb(100, 100, 100);
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: rgb(100, 100, 100);
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images-product-list/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images-product-list/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images-product-list/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images-product-list/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

main {
    background-color: rgb(231, 238, 245);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 1000;
}
#page-top a {
  background: #a4b893;
  text-decoration: none;
  color: #fff;
  width: 60px;
  padding: 12px 5px;
  text-align: center;
  display: block;
  border-radius: 50%;
  opacity: 0.9;
  transition: all .4s ease;
}
#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

.top-wrap {
    display: flex;
    width: 100%;
}

.company p {
  margin-top: 1vw;
  margin-left: 7vw;
  margin-bottom: -1vw;
  font-size: 1.1vw;
}

.company h1{
  margin-left: 3vw;
  font-size: 3vw;
}

.hero {
    width: 100%;
    margin-top: 3vw;
    text-align: center;
}

.hero img {
    width: 80%;
}

.hero h2 {
    text-align: center;
    font-size: 3vw;
}

.product-top {
    width: 60%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

.product-top p:nth-child(1) {
    font-size: 1.5vw;
}

.product-item1 {
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.product-item1 h3 {
    margin-bottom: 3vw;
    text-align: center;
    line-height: 2;
    background-color: #a3a3a3;
    border-radius: 20vw;
    font-size: 2.2vw;
}

/* 1 */
.product-item-flex {
    display: flex;
    margin-top: 5vw;
}

.product-item_image1 {
    width: 30%;
}

.product-item_image1 img {
    width: 100%;
}

.product-wrap {
    width: 65%;
    margin-left: 5%;
}

.product-wrap p {
  font-size: 1.3;
}

.product-item1-contener {
    display: flex;
    margin-bottom: 2vw;
}

.product-smallframe1 {
    width: 7em;
    margin-right: 1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}

.product-smallframe2 {
    width: 7em;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}

.explanation{
    width: 50%;
    margin-top: 3vw;
    margin-bottom: 3vw;
    font-size: 1.2vw;
}

.price {
    display: flex;
    margin-bottom: 3vw;
}

.price p:nth-child(1) {
    width: 45%;
    margin-right: 3vw;
    font-size: 1.7vw;
    text-align: center;
    background-color: rgba(124, 167, 168, 0.267);
    border-radius: 20px;
}

.price p:nth-child(2) {
    font-size: 1.7vw;
    color: brown;
}

.price p:nth-child(3) {
    margin-top: 0.6vw;
    font-size: 1.1vw;
}

.choose {
    margin-bottom: 2vw;
    font-size: 1.3vw;
    border-bottom: 2px solid #a3a3a3;
}

.material-wrap p {
  font-size: 1.3vw;
}

.materials {
    display: flex;
    text-align: center;
}


.materials div {
    width: 15%;
    margin-right: 1vw;
}

.materials div img {
    width: 100%;
}

.premium-wrap {
    margin-top: 2vw;
}

.premium {
    margin-top: 3vw;
}

.material-text {
    margin-top: 2vw;
    margin-bottom: 5vw;
    font-size: 1.2vw;
}

/* 2 */
.product-item2 {
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
}

.product-item2 h3 {
    margin-bottom: 3vw;
    text-align: center;
    line-height: 2;
    background-color: #a3a3a3;
    border-radius: 20vw;
    font-size: 2.2vw;
}

.product-item_image1 {
    width: 30%;
}

.product-item_image1 img {
    width: 100%;
}

.product-item1-contener {
    display: flex;
}

.product-smallframe3 {
    width: 9em;
    margin-right: 1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}

.product-smallframe4 {
    width: 6em;
    margin-right: 1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}

.product-smallframe5 {
    width: 9em;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
}
.price-premium {
    display: flex;
    margin-top: 8vw;
    margin-bottom: 8vw;
}

.price-premium p:nth-child(1) {
    width: 45%;
    margin-right: 3vw;
    font-size: 1.7vw;
    text-align: center;
    background-color: rgba(124, 167, 168, 0.267);
    border-radius: 20px;
}

.price-premium p:nth-child(2) {
    font-size: 1.7vw;
    color: brown;
}

.price-premium p:nth-child(3) {
    margin-top: 0.6vw;
    font-size: 1.1vw;
}

.price-basic {
    display: flex;
    margin-top: 8vw;
    margin-bottom: 8vw;
}

.price-basic p:nth-child(1) {
    width: 45%;
    margin-right: 3vw;
    font-size: 1.7vw;
    text-align: center;
    background-color: rgba(124, 167, 168, 0.267);
    border-radius: 20px;
}

.price-basic p:nth-child(2) {
    font-size: 1.7vw;
    color: brown;
}

.price-basic p:nth-child(3) {
    margin-top: 0.6vw;
    font-size: 1.1vw;
}

.premium-wrap {
    margin-top: 2vw;
}

.premium {
    margin-top: 3vw;
}

.material-text {
    margin-top: 2vw;
    margin-bottom: 5vw;
    font-size: 1.2vw;
}

.pillow-regular_material {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #e7e7e7;
}

.pillow-regular_material-border {
    position: absolute;
    width: 60%;
    margin-top: 4.5vw;
    margin-left: 10%;
    border-bottom: 2px solid #a3a3a3; 
    z-index: 1;
}

.pillow-regular_material h3 {
    position: absolute;
    width: 15vw;
    margin-top: 3vw;
    margin-left: 33vw;
    font-size: 2vw;
    font-weight: 400;
    text-align: center;
    z-index: 2;
    background-color: #e7e7e7;;
}

.regular-items {
    width: 90%;
    padding-top: 8vw;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20vw, 1fr));
    gap: 2vw;
}

.regular-items div {
    padding: 0.5vw;
}

.regular-items div img {
    width: 100%;
}

.regular-items h4 {
    text-align: center;
}

.regular-items1-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items1-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.regular-items2-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items2-text p:nth-child(3) {
    width: 12vw;
    margin-top: 3vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.regular-items3-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items3-text p:nth-child(3) {
    width: 12vw;
    margin-top: 3vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.regular-items4-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items4-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.regular-items5-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items5-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.regular-items6-text p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2vw;
    line-height: 1.6;
}

.regular-items6-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    margin-bottom: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.pillow-premium_material {
    width: 90%;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    background-color: #e7e7e7;
}

.pillow-premium_material-border {
    position: absolute;
    width: 60%;
    margin-top: 4.5vw;
    margin-left: 10%;
    border-bottom: 2px solid #a3a3a3; 
    z-index: 1;
}

.pillow-premium_material h3 {
    position: absolute;
    width: 15vw;
    margin-top: 3vw;
    margin-left: 33vw;
    font-size: 2vw;
    font-weight: 400;
    text-align: center;
    z-index: 2;
    background-color: #e7e7e7;;
}

.premium-material-item1 {
    display: flex;
    padding-top: 10vw;
}

.premium-material-item1 img {
    width: 40%;
    height: 25vw;
    margin-left: 3.33%;
}

.premium-items1-text {
    width: 50%;
    margin-left: 3.33%;
}

.premium-items1-text h4 {
    font-size: 1.4vw;
    margin-bottom: 2vw;
}

.premium-items1-text p {
    width: 100%;
    font-size: 1.2vw;
    line-height: 1.6;
}

.premium-items1-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

/* 2 */
.pillow-premium_material2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #e7e7e7;
}

.premium-material-item2 {
    display: flex;
    padding-top: 5vw;
}

.premium-material-item2 img {
    width: 40%;
    height: 25vw;
    margin-left: 3.33%;
}

.premium-items2-text {
    width: 50%;
    margin-left: 3.33%;
}

.premium-items2-text h4 {
    font-size: 1.4vw;
    margin-bottom: 2vw;
}

.premium-items2-text p {
    width: 100%;
    font-size: 1.2vw;
    line-height: 1.6;
}

.premium-items2-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

.premium-items2-text p:nth-child(4) {
    width: 12vw;
    margin-top: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

/* 3 */
.pillow-premium_material3 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    background-color: #e7e7e7;
}

.premium-material-item3 {
    display: flex;
    padding-top: 5vw;
}

.premium-material-item3 img {
    width: 40%;
    height: 25vw;
    margin-left: 3.33%;
}

.premium-items3-text {
    width: 50%;
    margin-left: 3.33%;
}

.premium-items3-text h4 {
    font-size: 1.4vw;
    margin-bottom: 2vw;
}

.premium-items3-text p {
    width: 100%;
    font-size: 1.2vw;
    line-height: 1.6;
}

.premium-items3-text p:nth-child(3) {
    width: 12vw;
    margin-top: 1vw;
    font-size: 1.1vw;
    text-align: center;
    border: 1px solid #000;
    border-radius: 20px;
    background-color: #fff;
}

footer {
  margin-top: 5vw;
  width: 100%;
}

.footer-nav {
  width: 90%;
  display: flex;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3vw;
}

.company2 {
  width: 20%
}

.company2 p {
  text-align: center;
  font-size: 1.1vw;
}

.company2 h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 2.2vw;
}

footer a {
  color: #000;
}

.footer-adrress {
  width: 45%;
  font-size: 1.2vw;
}

address h3 {
  font-size: 1.8vw;
  margin-bottom: 2vw;
}

.address-item1,
.address-item2,
.address-item3 {
  display: flex;
}

.address-item1 h4,
.address-item2 h4,
.address-item3 h4 {
  width: 13%;
  margin-right: 5%;
  font-size: 1.2vw;
}

.address-item1 p {
  font-size: 1.2vw;
}

.address-item2 p {
  font-size: 1.2vw;
}

.address-item3 p {
  font-size: 1.2vw;
}

.footer-menu-wrap {
  width: 35%;
}

.footer-menu-wrap h3 {
  margin-left: 3vw;
  font-size: 1.8vw;
  margin-bottom: 2vw;
}

.footer-menu {
  width: 100%;
  display: flex;
}

.footer-menu1 ul {
  font-size: 1.2vw;
  margin-left: 15%;
}

.footer-menu2 {
  width: 50%;
  padding-bottom: 5%;
}

.footer-menu2 ul {
  font-size: 1.2vw;
}

.tel a {
  text-decoration-line: underline;
}

.tel a:hover{
  transition: 0.5s;
  opacity:0.6;
}

.border5 {
  position: absolute;
  width: 20vw;
  height: 60vw;
  margin-top: -30vw;
  margin-left: 41vw;
  border-left: 1px solid #c75353;
  transform: rotate(-45deg);
  z-index: -1;
  opacity: 0.5;
  
}

.border6 {
  position: absolute;
  width: 20vw;
  height: 47vw;
  margin-top: -20vw;
  margin-left: 11vw;
  border-left: 1px solid #134681;
  transform: rotate(-45deg);
  z-index: -1;
  opacity: 0.5;
}

.border7 {
  position: absolute;
  width: 50vw;
  height: 70vw;
  margin-top: -50vw;
  margin-left: -20vw;
  border-right: 1px solid #a3a3a3;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.5;
}

.border8 {
  position: absolute;
  width: 48vw;
  height: 50vw;
  margin-top: -32vw;
  margin-left: 8vw;
  border-right: 1px solid #417c19;
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.5;
}

.sns-box {
  display: flex;
  width: 10%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3vw;
}

.sns-box i {
  font-size: 1.8vw;
}
.fa-x-twitter {
  color: #000;
}

.fa-square-facebook {
  color: #3b5998;
}

.fa-square-instagram {
  color: #CF2E92;
}

.fa-line {
  color: #00B900;
}

.sns-box a {
  display: block;
  margin-top: 2%;
  margin-right: 10%;
  text-decoration: none;
}

small p {
  font-size: 0.9vw;
  text-align: center;
}

