@charset "UTF-8";
/*------common---------*/
html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  font-family: 'Noto Sans JP', '游ゴシック Medium', '游ゴシック体', 'Yu Gothic Medium', YuGothic, 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: 1.4rem;
  /* 16px */
  font-weight: 400;
  line-height: 1.7;
}

img {
  width: 100%;
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
}

/*-----link----------*/
a {
  transition: all 0.5s ease;
  color: #333;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

a :hover {
  opacity: 0.6;
}

a img {
  transition: all 0.5s ease;
}

a img:hover {
  opacity: 0.6;
}

*:focus {
  outline: none;
}

/*-----box---------*/
.container--l {
  height: auto;
  margin: 0 auto;
  max-width: 1080px;
  width: 100%;
}

.container--m {
  height: auto;
  margin: 0 auto;
  max-width: 860px;
  width: 92%;
}

.container--s {
  height: auto;
  margin: 0 auto;
  max-width: 740px;
  width: 80%;
}

/*-----responsive---------*/
.pc {
  display: none !important;
}

.sp {
  display: block !important;
}

/*-----header---------*/
header {
  height: 100%;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

main {
  background-color: #f7f7f5;
  padding: 40px 0 60px;
}

.lead {
  font-weight: 500;
}

/*------loopslide-----*/
.slider {
  margin-top: 24px;
}

/*------item-----*/
.item {
  margin: 60px auto 0;
  width: 92%;
}

.item--detail {
  margin-top: 24px;
}

.item--detail > p {
  margin-top: 16px;
}

.item--name {
  background-color: #f4bc09;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 1px;
  padding: 4px 8px;
}

.item--price {
  text-align: right;
}

.item--ec {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.item--ec li {
  background-color: #000;
  margin-left: 16px;
  padding: 0px 16px;
}

.item--ec li a {
  color: #fff;
}

.item--detailImg {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.item--detailImg div {
  width: 49%;
}

.item--detailImg div p {
  font-size: 1.2rem;
}

/*-----profile-----*/
.profile {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 16px;
}

.profile .img {
  width: 30%;
}

.profile .img img {
  border-radius: 50%;
  border: solid 1px #ccc;
}

.profile .text {
  width: 65%;
}

.profile .text .name {
  font-size: 1.8rem;
  font-weight: 500;
}

.profile .text .note {
  display: inline-block;
  font-size: 1.4rem;
}

/*------cap---------*/
.cap {
  margin-top: 60px;
}

.cap .midashi {
  font-size: 1.9rem;
  font-weight: 500;
  margin-bottom: 16px;
  text-align: center;
}

.cap > p {
  margin-top: 16px;
}

.cap--name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  margin-top: 16px;
}

.cap--price {
  text-align: right;
}

.cap--ec {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.cap--ec li {
  background-color: #000;
  margin-left: 16px;
  padding: 0px 16px;
}

.cap--ec li a {
  color: #fff;
}

/*------link---------*/
.link {
  margin-top: 60px;
}

.link .info {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
}

/*------button---------*/
.button {
  display: block;
  font-size: 1.6rem;
  width: 80%;
  margin: 16px auto 0;
  height: 54px;
  text-align: center;
  text-decoration: none;
  line-height: 54px;
  outline: none;
  background-color: #f3c13d;
  color: #fff;
}

.button::before,
.button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.button,
.button::before,
.button::after {
  box-sizing: border-box;
  transition: all .3s;
}

.button:hover {
  background-color: #402f03;
}

/*---------fadein--------*/
.fadein {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/*-----footer---------*/
footer {
  width: 100%;
}

footer .logo {
  max-width: 200px;
  width: 30%;
  margin: 0 auto;
  padding: 30px 0;
}

footer .copy {
  background-color: #333;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}

/*----------------------------
pc
------------------------------*/
@media (min-width: 600px) {
  /*-----responsive---------*/
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  /*-----header---------*/
  main {
    padding: 60px 0 80px;
  }
  .lead {
    font-weight: 500;
    font-size: 1.6rem;
    text-align: center;
  }
  /*------loopslide-----*/
  .slider {
    margin-top: 32px;
  }
  /*------item-----*/
  .item {
    display: flex;
    justify-content: space-between;
    margin: 100px auto 0;
  }
  .item--img {
    width: 50%;
  }
  .item--detail {
    width: 48%;
    margin-top: 0;
  }
  .item--detail > p {
    margin-top: 16px;
  }
  .item--name {
    font-size: 1.8rem;
    line-height: 2.5;
  }
  .item--price {
    text-align: right;
  }
  .item--ec {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .item--ec li {
    margin-left: 16px;
    padding: 0px 16px;
  }
  .item--ec li a {
    color: #fff;
    background-color: #000;
  }
  .item--ec li a:hover {
    opacity: 0.6;
  }
  /*-----profile-----*/
  .profile {
    margin-top: 60px;
    padding: 30px;
  }
  .profile .img {
    max-width: 120px;
    width: 20%;
  }
  .profile .img img {
    border-radius: 50%;
    border: solid 1px #ccc;
  }
  .profile .text {
    width: 80%;
  }
  .profile .text .note {
    font-size: 1.4rem;
    margin-top: 16px;
  }
  .profile + .profile {
    margin-top: 16px;
  }
  /*------cap---------*/
  .cap {
    margin-top: 120px;
  }
  .cap .midashi {
    font-size: 2.4rem;
  }
  .cap > p {
    margin-top: 16px;
  }
  .cap--name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    margin-top: 16px;
  }
  .cap--price {
    text-align: right;
  }
  .cap--ec {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
  }
  .cap--ec li {
    background-color: #000;
    margin-left: 16px;
    padding: 0px 16px;
  }
  .cap--ec li a {
    color: #fff;
  }
  /*------link---------*/
  .link {
    margin-top: 120px;
  }
  .link--btn {
    display: flex;
    justify-content: space-between;
  }
  .link--btn li {
    width: 48%;
  }
  .link .info {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
  }
  /*------button---------*/
  .button {
    width: 100%;
  }
  /*-----footer---------*/
  footer {
    width: 100%;
  }
  footer .logo {
    max-width: 120px;
    width: 30%;
    padding: 50px 0;
  }
}
/*# sourceMappingURL=style.css.map */