@charset "UTF-8";

/* 共通部分
--------------------------- */
html {
  font-size: 100%;
}
body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #000;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;

}
.wrapper {
  max-width: 1100px;
  margin:0 auto;
  padding:0 4%;
}


/* ヘッダー */
h1 {
  font-family: 'Abel', sans-serif;
  margin: 1em;
  font-size: 40px;
}
/* ホームコンテンツ */
.home-content {
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  height: 130vh;
  position: relative;
}
/* メイン画像 */
.main-img {
  width: 82%;
  border-bottom-right-radius: 10%;
  position:absolute;
  left: 0;
  top: 0;
}
.main h2 {
  font-family: 'Scheherazade New', serif;
  font-size: 40px;
  background-color: rgba(255,255,255,.2);
  padding: .3em 1em;
  position: absolute;
  right: 0;
  bottom: 28%;
  z-index: 2;
}
.main p {
  font-size: 15px;
  background-color: rgba(255,255,255,.2);
  padding: .5em 2.5em;
  position: absolute;
  right: 18%;
  bottom: 20%;
  z-index: 1;
}
/* メインメニュー*/
.main-nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 3%;
  right: 6%;
}
.main-nav li {
  list-style: none;
  margin-top: 3.5em;
  font-size: 13px;
}
.main-nav li a {
  color: #000;
}
.main-nav li a:hover {
  color: #000;
}

/* 商品 */
h3 {
  font-family: 'Varela Round', sans-serif;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 5px;
  margin-top: 100px;
}
.more {
  display: block;
  text-align: right;
  color: #808080;
  font-size: 13px;
  margin-right: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}
.more::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #888;
  top: 11%;
  right: 55px;
}
.more::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
  transform: rotate(45deg);
  top: 38%;
  right: 63px;
}
.category {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0;
  border-bottom: 1px solid #c0c0c0;
  padding-bottom: 50px;
}
/* 画像 */
.cat img {
  width: 250px;
}
.cat p {
  font-size: 15px;
  margin: 20px 20px 65px;
}

/* ご紹介 */
.aboutus {
  margin-top: 100px;
  margin-bottom: 100px;
}
h4 {
  font-family: 'Varela Round', sans-serif;
  font-size: 24px;
  letter-spacing: 3px;
  margin: 20px 0 0 25px;
}
.about-us {
  display: flex;
  justify-content: space-around;
}
.article p {
  font-size: 15px;
  margin: 25px;
}
.about-more {
  font-size: 13px;
  background-color: #000;
  color: #FFF;
  padding: 8px 10px;
  margin-left: 20px;
}

/* フッター */
.footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
}
.footer-nav {
  display: flex;
  justify-content: center;
}
.store {
  width: 370px;
}
.footer-nav p {
  font-size: 13px;
  padding: 1em;
  margin: 4.8em 3em;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  margin: 3em 4em;
}
.footer-menu li {
  list-style: none;
  font-size: 13px;
  padding: 0.3em 0;
}
.footer-menu li a {
  color: #fff;
}

/* goods
--------------------------------------- */
.sub-nav {
  display: flex;
  justify-content: flex-end;
  background-color: #000;
  color: #fff;
  padding: 27px;
}
.sub-nav li {
  list-style: none;
  margin: 0 28px;
  font-size: 13px;
  letter-spacing: 1px;
}
.sub-nav li a {
  color: #fff;
}
.sub-nav li a:hover {
  color: #fff;
}

/* ページタイトル */
.goods-back {
  background: #ddd url(images/goods-contents.jpg) no-repeat center/cover;
  height: 400px;
  position: relative;
}
.goods-title {
  font-family: 'Scheherazade New', serif;
  font-size: 37px;
  color: #fff;
  background-color: rgba(255,255,255,.2);
  padding: 10px 50px;
  position: absolute;
  left: 200px;
  top: 150px;
}
.goods-contents p {
  margin: 40px 120px 120px 120px;
  border-bottom: 1px #ddd solid;
  padding: 40px;
}
/* 画像 */
.grid {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  margin-bottom: 100px;
}
.item p {
  margin-top: 1em;
  margin-bottom: 5em;
}
.item span {
  display: block;
  text-align: right;
  border-top: 1px solid #ddd;
  margin-top: 1em;
  padding-top: 1em;
}

/* about
-----------------------------------------*/
.about-back {
  background: #ddd url(images/about-contents.jpg) no-repeat center/cover;
  height: 450px;
  position: relative;
}
.about-title {
  font-family: 'Scheherazade New', serif;
  font-size: 37px;
  color: #000;
  background-color: rgba(255,255,255,.5);
  padding: 10px 50px;
  position: absolute;
  left: 470px;
  top: 170px;
}
.about-contents p {
  margin: 60px 120px 160px;
}
.about {
  text-align: center;
  margin-top: 100px;
  margin-bottom: 250px;
}
.about h3 {
  font-size: 32px;
  display: flex;
  align-items: center;
}
.about h3::before,
.about h3::after {
  content: '';
  border-top: 1px solid;
  flex-grow: 1;
}
.about h3::before {
margin-right: 30px;
}
.about h3::after {
margin-left: 30px;
}
.about img {
  width: 300px;
  margin-top: 50px;
}
.about p {
  font-size: 22px;
  background: linear-gradient(transparent 60%, #d2b48c 60%);
  margin-top: 2em;
  margin-bottom: 1.8em;
}
.about span {
  font-size: 15px;
}

/* questions
-------------------------------------------- */
.questions-back {
  background: #ddd url(images/questions-contents.jpg) no-repeat center/cover;
  height: 400px;
  position: relative;
}
.questions-title {
  font-family: 'Scheherazade New', serif;
  font-size: 37px;
  color: #000;
  background-color: rgba(255,255,255,.6);
  padding: 10px 50px;
  position: absolute;
  left: 470px;
  top: 150px;
}
.questions-contents {
  text-align: left;
  font-size: 15px;
  margin-bottom: 15em;
}
.q-ttl {
  font-size: 20px;
  margin-top: 6em;
  margin-bottom: 2em;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}
.q-qes {
  font-size: 17px;
  margin-top: 2em;
  margin-bottom: 1em;
  margin-left: 50px;
}
.q-ans {
  margin-left: 70px;
}

/* company
--------------------------------------------- */
.company-back {
  background: #ddd url(images/company-contents.jpg) no-repeat center/cover;
  height: 400px;
  position: relative;
}
.company-title {
  font-family: 'Scheherazade New', serif;
  font-size: 37px;
  color: #000;
  background-color: rgba(255,255,255,.2);
  padding: 10px 50px;
  position: absolute;
  right: 350px;
  top: 150px;
}
.company-contents {
  margin-top: 10em;
  margin-bottom:  15em;
  font-size: 15px;
}
.c-li {
  display: flex;
  flex-direction: column;
}
.c-info {
  display: flex;
  justify-content: center;
}
.c-info li {
  list-style: none;
  border-bottom: 1px solid #ddd;
  width: 350px;
  padding: 25px;
}
.c-info li:last-child {
  border-bottom: none;
}
.c-info span {
  padding-left: 30px;
}

/* contact
------------------------------------------- */
.contact-back {
  background: #ddd url(images/contact-contents.jpg) no-repeat center/cover;
  height: 400px;
  position: relative;
}
.contact-title {
  font-family: 'Scheherazade New', serif;
  font-size: 37px;
  color: #000;
  background-color: rgba(255,255,255,.2);
  padding: 10px 50px;
  position: absolute;
  left: 200px;
  top: 150px;
}
.contact-contents p {
  margin: 50px 0 80px 150px;
}

.contact {
  background-color: #eee;
  border-radius: 10px;
  height: 100vh;
  padding-top: 60px;
  margin-bottom: 100px;
}
form div {
  margin-bottom: 20px;
}
label {
  margin-bottom: 10px;
  display: block;
}
input[type="text"],
input[type="email"],
textarea {
  background-color: rgba(255,255,255,.5);
  border-bottom: 1px solid #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}
input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 240px;
}
textarea {
  width: 100%;
  max-width: 450px;
  height: 8rem;
}
.button {
  background-color: rgba(255,255,255,.8);
  color: #000;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 14px;
  margin-left: 5px;
  margin-top: 30px;
}



/* モバイル版
--------------------------------------- */
/* 960px～1279px : 小型PC */
@media screen and (min-width:960px) {
/* ホームコンテンツ */
.home-content {
  height: 120vh;
}
/* メイン画像 */
.main h2 {
  bottom: 40%;
}
.main p {
  right: 19%;
  bottom: 35%;
}
.category {
  margin: 40px 50px;
}
}

/* 600px～959px : タブレット */
@media screen and (min-width:600px) and (max-width:959px) {
/* ヘッダー */
h1 {
  margin: .5em 1em;
  font-size: 30px;
}
/* ホームコンテンツ */
.home-content {
  height: 90vh;
}
.main h2 {
  font-size: 25px;
  bottom: 45%;
}
.main p {
  right: 0%;
  bottom: 35%;
}
/* メインメニュー*/
.main-nav {
  right: 4%;
}
.main-nav li {
  margin-top: 2em;
}
/* 商品 */
h3 {
  letter-spacing: 2px;
  margin-top: 70px;
}
.category {
  justify-content: center;
  padding-bottom: 4em;
  margin-bottom: 2em;
}
.cat img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-top: 3em;
  margin-left: 1em;
  margin-right: 1em;
}
.cat p {
  font-size: 13px;
  margin: .5em;
}
.mcat p {
  margin-left: .5em;
}
/* ご紹介 */
h4 {
  font-size: 20px;
  letter-spacing: 1.5px;
  margin: 10px 0 0 8px;
}
.article p {
  font-size: 13px;
  margin: 8px;
}
.about-more {
  font-size: 11px;
  padding: 6px 8px;
  margin-left: 10px;
}
.about-img {
  width: 320px;
  margin-bottom: 20px;
}
/* フッター */
.footer {
  padding: 10px;
}
.store {
  padding-top: 3em;
  width: 250px;
  height: 200px;
  object-fit: cover;
}
.footer-nav p {
  font-size: 12px;
  padding: .5em;
  margin: 5.5em 1.5em;
}
.footer-menu {
  margin: 3em .5em;
}
.footer-menu li {
  font-size: 12px;
}
/* goods */
.sub-nav {
  padding: 14px;
}
.sub-nav li {
  margin: 0 12px;
  font-size: 13px;
}
/* ページタイトル */
.goods-title {
  font-size: 35px;
  left: 170px;
}
.goods-contents p {
  margin: 30px 0px 120px 60px;
}
/* about */
.about-title {
  font-size: 35px;
  left: 100px;
}
.about {
  margin-top: 80px;
  margin-bottom: 150px;
}
.about h3 {
  font-size: 25px;
}
.about h3::before {
margin-right: 20px;
}
.about h3::after {
margin-left: 20px;
}
.about img {
  width: 270px;
  margin-top: 45px;
}
.about p {
  margin-top: 1.5em;
  margin-bottom: 1.2em;
}
/* questions */
.questions-title {
  font-size: 35px;
  left: 150px;
}
/* company */
.company-title {
  font-size: 35px;
  right: 150px;
}
.company-contents {
  margin-top: 8em;
  margin-bottom:  10em;
}
.c-info li {
  width: 295px;
  padding: 20px;
}
.c-info span {
  padding-left: 10px;
}
/* contact */
.contact-title {
  font-size: 35px;
}
.contact-contents p {
  margin: 50px 0 80px 100px;
}
}

/* ～479px : スマートフォン縦 */
@media screen and (max-width:479px) {
/* ヘッダー */
h1 {
  font-size: 25px;
}
/* ホームコンテンツ */
.home-content {
  height: 55vh;
  margin-top: 5em;
  margin-bottom: 9em;
}
.main h2 {
  font-size: 20px;
  left: 5%;
  bottom: 30%;
  word-break: keep-all;
  line-height: 1.6;
}
.main p {
  font-size: 12px;
  left: 5%;
  bottom: 15%;
}
/* メインメニュー*/
.main-nav {
  flex-direction: row;
  flex-wrap: wrap;
  top: -12%;
  left: 7%;
}
.main-nav li {
  font-size: 10px;
  margin-top: .3em;
  padding-right: 20px;
}
/* 商品 */
h3 {
  font-size: 18px;
  letter-spacing: 2px;
  margin: 4em 2em 1em;
}
.category {
  justify-content: center;
  padding-bottom: 4em;
  margin-bottom: 0;
}
.cat img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin-top: 2em;
  margin-left: .5em;
  margin-right: .5em;
}
.cat p {
  font-size: 10px;
  margin: .5em;
}
.mcat p {
  margin-left: .5em;
}
/* about */
.about {
  margin-top: 50px;
  margin-bottom: 70px;
}
h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin: 20px 0 10px 25px;
}
.about-us {
  flex-direction: column-reverse;
  align-items: center;
}
.article p {
  font-size: 11px;
  margin: 10px 27px 15px;
}
.about-more {
  font-size: 10px;
  padding: 6px 8px;
  margin-left: 27px;
}
.about-img {
  width: 300px;
  margin-bottom: 20px;
}
/* footer */
.footer {
  padding: 20px;
}
.footer-nav {
  flex-direction: column;
}
.store {
  width: 230px;
  margin: 0 auto ;
}
.footer-nav p {
  font-size: 11px;
  margin: 15px 50px 0;
}
.footer-menu {
  flex-direction: row;
  flex-wrap: wrap;
  margin: 15px 40px;
}
.footer-menu li {
  font-size: 11px;
  padding: 0 15px;
}

/* goods */
.sub-nav {
  padding: 15px 5px;
}
.sub-nav li {
  margin: 0 5px 0;
  font-size: 10px;
  letter-spacing: 0;
}
/* ページタイトル */
.goods-back {
  height: 200px;
}
.goods-title {
  font-size: 30px;
  padding: 10px 40px;
  left: 80px;
  top: 65px;
}
.goods-contents p {
  font-size: 12px;
  margin: 10px 8px 60px 8px;
  padding: 30px;
}
/* 画像 */
.grid {
  gap: 20px;
  grid-template-columns: repeat(2,1fr);
  margin-bottom: 20px;
}
.item p {
  font-size: 12px;
  margin-left: 10px;
}
.item span {
  margin-right: 10px;
}

/* about */
.about-back {
  height: 200px;
}
.about-title {
  font-size: 24px;
  padding: 10px 35px;
  left: 55px;
  top: 70px;
}
.about-contents p {
  font-size: 12px;
  margin: 30px 50px 80px;
}
.about {
  margin-top: 10px;
  margin-bottom: 120px;
}
.about h3 {
  font-size: 18px;
}
.about h3::before {
margin-right: 15px;
}
.about h3::after {
margin-left: 15px;
}
.about img {
  width: 200px;
  margin-top: 20px;
}
.about p {
  font-size: 15px;
  margin-top: 1em;
  margin-bottom: 0.8em;
}
.about span {
  font-size: 12px;
}

/* questions */
.questions-back {
  height: 200px;
}
.questions-title {
  font-size: 28px;
  padding: 10px 40px;
  left: 60px;
  top: 65px;
}
.questions-contents {
  font-size: 12px;
  margin-bottom: 7em;
}
.q-ttl {
  font-size: 15px;
  margin-top: 3em;
  margin-bottom: 1em;
  padding: 10px;
}
.q-qes {
  font-size: 13px;
  margin-left: 20px;
}
.q-ans {
  margin-left: 30px;
}

/* company */
.company-back {
  height: 200px;
}
.company-title {
  font-size: 30px;
  padding: 10px 40px;
  right: 92px;
  top: 65px;
}
.company-contents {
  margin-top: 3.5em;
  margin-bottom: 5em;
  font-size: 12px;
}
.c-info li {
  width: 230px;
  padding: 10px;
}
.c-li1 {
  width: 70px;
}
.c-info span {
  padding-left: 5px;
}

/* contact */
.contact-back {
  height: 200px;
}
.contact-title {
  font-size: 28px;
  padding: 10px 40px;
  left: 63px;
  top: 70px;
}
.contact-contents p {
  margin: 30px 0 60px 50px;
}

.contact {
  height: 80vh;
  padding-top: 45px;
  width: 90%;
}
form div {
  margin-bottom: 22px;
}
label {
  margin-bottom: 7px;
  font-size: 14px;
}
input[type="text"],
input[type="email"],
textarea {
  font-size: 12px;
}
.button {
  padding: 5px 13px;
  font-size: 13px;
  margin-left: 7px;
  margin-top: 1rem;
}
}
