@charset "UTF-8";
/* 
Theme Name: fd
*/

/* Base */
html {
  font-size: 100%;
}
body {
  position: relative;
  color: #333;
  font-size: 0.875rem;
  min-height: 100vh;
}
.wrapper {
  max-width: 1360px;
  padding-left: 40px;
  padding-right: 40px;
  margin-right: auto;
  margin-left: auto;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #333;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.7;
}


/********** 
TopPage
**********/

/* main */


/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
}
.headerLogo__img {
  width: 180px;
}

/* Hamburger Menu */
.hamburgerBtn {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: all 0.5s;
  z-index: 10;
}
.hamburgerLine {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.5s;
}
.hamburgerLine:nth-child(1) {
  top: 10px;
}
.hamburgerLine:nth-child(2) {
  bottom: 10px;
}
/* MenuClose */
.header__nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  padding: 30px 50px;
  z-index: 10;
  transition: all 0.5s;
  opacity: 0;
  z-index: 20;
}
.nav__item {
  margin-bottom: 14px;
}
.nav__link {
  color: #fff;
}
.menuMask {
  /* display: none; */
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  transition: all 0.5s;
  opacity: 0;
  z-index: 5;
}

/* MenuOpen */
.open .header__nav {
  left: 0;
  opacity: 1;
}
.open .hamburgerLine {
  background: #fff;
}
.open .hamburgerLine:nth-child(1) {
  transform: translateY(4px) rotate(-45deg);
  -webkit-transform: translateY(4px) rotate(-45deg);
}
.open .hamburgerLine:nth-child(2) {
  transform: translateY(-4px) rotate(45deg);
  -webkit-transform: translateY(-4px) rotate(45deg);
}
.open .menuMask {
  /* display: block; */
  visibility: visible;
  opacity: 0.8;
}


/* top */
.top {
  padding-top: 80px;
  padding-bottom: 160px;
}
.top__itemList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.75rem;
}
.top__item {
  width: calc(100% / 4 - 2%);
  margin: 0 2% 3% 0;
}
.top__item:nth-child(4n) {
  margin-right: 0;
}
.item__img {
  width: 100%;
}
.top__link {
  text-align: center;
}
.top__link a {
  display: inline-block;
  width: 100%;
}

/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.footer__list {
  display: flex;
}
.footer__item {
  margin-right: 30px;
}
.footer__link {
  font-size: 0.75rem;
}
.footer__copyright {
  font-size: 0.625rem;
}


@media screen and (max-width: 900px) {
  .top__item {
    width: calc(100% / 2 - 3%);
    margin-bottom: 4%;
  }
  .top__item:nth-child(2n) {
    margin-right: 0;
  }
  .footer {
    display: block;
  }

}


/*************
Products Page
*************/

.products__title {
  font-size: 0.875rem;
  font-weight: normal;
  padding-top: 40px;
  margin-bottom: 30px;
}
.pagination ul {
  display: flex;
  justify-content: center;
}
.pagination li {
  width: auto;
}
.pagination li:nth-child(n+2) {
  padding-left: 40px;
}


/*************
Item Page
*************/

.card {
  padding-top: 80px;
  padding-bottom: 160px;
}
.card__title {
  font-size: 0.875rem;
  font-weight: normal;
  padding-top: 40px;
  padding-bottom: 30px;
}
.card__item {
  display: flex;
  justify-content: space-between;
  max-width: 800px;
  margin-bottom: 60px;
}
.card__imageArea {
  width: 50%;
}
.card__img {
  width: 100%;
}
.card__textArea {
  width: 42%;
}
.card__text {
  margin-bottom: 30px;
}
.card__itemPrice{
  margin-bottom: 30px;
}
.card__itemInfo {
  display: flex;
  flex-wrap: wrap;
}
.card__itemInfo--title {
  width: 30%;
}
.card__itemInfo--description {
  width: 70%;
}

@media screen and (max-width: 900px) {
  .card__item {
    display: block;
  }
  .card__imageArea {
    width: 100%;
    margin-bottom: 30px;
  }
  .card__textArea {
    width: 100%;
  }
}

/*************
About Page
*************/

.about {
  padding-top: 80px;
  padding-bottom: 160px;
}
.about__title {
  font-size: 0.875rem;
  font-weight: normal;
  padding-top: 40px;
  padding-bottom: 30px;
}
.about__item {
  max-width: 600px;
}
.about__text {
  line-height: 1.9;
  margin-bottom: 30px;
}

/*************
Company Page
*************/

.company {
  padding-top: 80px;
  padding-bottom: 160px;
}
.company__title {
  font-size: 0.875rem;
  font-weight: normal;
  padding-top: 40px;
  padding-bottom: 30px;
}
.company__contents{
  max-width: 600px;
}
.company__info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.company__infoTitle {
  width: 30%;
}
.company__infoDescription {
  width: 70%;
}
.company__infoTitle,
.company__infoDescription {
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
}
.company__infoTitle:last-of-type {
  border-bottom: none;
}
.company__infoDescription:last-of-type {
  border-bottom: none;
}
.company__map {
  filter: grayscale(1);
}
iframe {
  width: 100%;
}

@media screen and (max-width: 900px) {
  .company__contents{
    width: 100%;
  }
  .company__info {
    display: block;
  }
  .company__infoTitle {
    padding-bottom: 0;
    border-bottom: none;
  }
  .company__infoDescription {
    padding-top: 10px;
    width: 100%;
  }
}