@charset "UTF-8";
/* ---------------font--------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP');
.mincyou {
  font-family: "Noto Serif JP", serif;
}
/* --------------------共通-------------------- */
h2 {
  text-align: center;
  color: #000;
  border-bottom: 1px solid #000;
  display: inline-block;
  font-size: 40px;
}
@media screen and (max-width:767px) {
  h2 {
    font-size:calc(45 * (100vw / 750)) ;
  }
}
/* --------------------MV-------------------- */
.MV {
  text-align: center;
  line-height: 1.3;
  position: relative;
}
.MV h1 img {
  width: 100%;
  height: auto;
}
/* --------------------ハンバーガーメニュー-------------------- */
.menu {
  position: absolute;
  top: 2%;
  left: 1.7%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: transform 250ms ease;
  cursor: pointer;
  z-index: 9999;
}
.hamburger_menutext{
  color: #A97B50;
  font-size: 14px;
  transform: translateY(-4px);
}

.hamburger_border {
  position: relative;
  display: block;
  width: 80%;
  height: 2.5px;
  background: #A97B50;
  transform-origin: center center;
  transition: transform 250ms ease;
  z-index: 200;
}
.hamburger_border:nth-of-type(3) {
  transform: translateY(10px);
}
.hamburger_border:nth-of-type(4) {
  transform: translateY(19px);
}

#menu {
  display: none;
}

#menu:checked ~ .menu span:nth-of-type(2) {
  transform: translateY(15px) rotate(45deg);
}

#menu:checked ~ .menu span:nth-of-type(3) {
  display: none;
}

#menu:checked ~ .menu span:nth-of-type(4) {
  transform: translateY(12px) rotate(-45deg);
}

#menu:checked ~ .nav {
  left: 0px;
  transition: left 500ms ease;
}

.nav {
  position: absolute;
  top: 0;
  left: -100%;
  width: 23%;
  height: 100%;
  background: rgba(242, 172, 188, 0.5);
  transition: left 500ms ease;
  z-index: 80;
}
.nav ul {
  margin: 100px 0;
  text-align: left;
}
.nav ul li a {
  display: block;
  padding: 15px 40px;
  color: #A97B50;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav ul li a:hover {
  opacity: .7;
}
@media screen and (max-width:767px) {
  .menu {
    top: 3%;
    left: 2%;
  }
  .hamburger_menutext{
    font-size: 10px;
  }
  .hamburger_border {
    width: 60%;
  }
  .hamburger_border:nth-of-type(3) {
    transform: translateY(5px);
  }
  .hamburger_border:nth-of-type(4) {
      transform: translateY(11px);
  }
  #menu:checked ~ .menu span:nth-of-type(2) {
      transform: translateY(8px) rotate(45deg);
  }

  #menu:checked ~ .menu span:nth-of-type(4) {
      transform: translateY(6px) rotate(-45deg);
  }
  .nav {
    width: 150px;
    z-index: 1000;
  }
  .nav ul {
    margin: 64px 0 100px;
  }
  .nav ul li {
    text-align: left;
  }
  .nav ul li a {
    padding: 15px 20px 5px;
    font-size: 16px;
  }
}

/* -

/* --------------------アンカー-------------------- */
.anker_wrap {
  display: flex;
  height: auto;
}
.anker_wrap_img {
  width: 25vw;
  height: auto;
}
@media screen and (max-width:767px) {
  .anker_wrap {
  display: flex;
  height: auto;
  justify-content: center;
  }
  .anker_wrap_img {
  width: 50vw;
  height: auto;
}
}
/* --------------------紹介-------------------- */
.introduction {
  text-align: center;
}
/* --------------------ポイント-------------------- */
.point {
  margin: 160px 0;
  text-align: center;
}
.chart {
  text-align: center;
  margin: 0;
}
.chart img {
  width: 1200px;
}
.point_wrap {
  display: flex;
  justify-content: center;
}
.point_wrap li {
  margin-right: 30px;
}
.point02_img {
  width: 330px;
  border-radius: 20px;
}
.point01,.point02,.point03 {
  background-color: #FCEEE5;
  padding-bottom: 80px;
}
.point_h2 {
  width: 100%;
  padding: 10px 0;
  margin-bottom: 80px;
  text-align: center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体";
  font-size: 44px;
  color: #FFF;
  background-color: #000;
}
.point_h2 span {
  font-family: 'Noto Serif Japanese', serif;
  font-weight: 600;
  text-align: left;
  padding-right: 20px;
}
.point02 p {
  text-align: center;
  font-size: 33px;
}
.point02 .bubble {
  font-size: 30px;
  margin: 60px 0 0 60px;
  position: relative;
}
.point02 .bubble::after {
  content: '';
  background-image: url(/img/usr/freepage/BT/bubble.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  top: 8%;
  right: 64%;
  width: 50%;
  height: 100%;
}
.point03_img {
  width: 690px;
  border-radius: 20px;
}
.point03_p {
  font-size: 30px;
  text-align: left;
  margin: auto 0;
}
@media screen and (max-width:767px) {
  .point {
  margin: calc(107 * (100vw / 750)) 0;
  text-align: center;
  }
  .point_wrap {
    width: calc(670 * (100vw / 750));
    margin: 0 auto;
  }
  .point_wrap li {
    margin: calc(40 * (100vw / 750)) calc(20 * (100vw / 750)) 0;
  }
  .point01,.point02,.point03 {
    padding-bottom: calc(20 * (100vw / 750));
  }
  .point02_img {
    width: calc(310 * (100vw / 750));
    border-radius: calc(20 * (100vw / 750));
  }
  .point_h2 {
    margin-bottom: calc(40 * (100vw / 750));
    padding-left: calc(90 * (100vw / 750));
    font-size: calc(40 * (100vw / 750));
    text-align: left;
    display: flex;
    font-family: 'Noto Sans Japanese';
  }
  .point_h2 span {
    display: inline-block;
    padding-right: calc(20 * (100vw / 750));
    font-size: calc(80 * (100vw / 750));
    font-family: 'Noto Serif Japanese', serif;
  }
  .chart img {
  width: calc(670 * (100vw / 750));
  }
  .point02 p {
    font-size: calc(30 * (100vw / 750));
  }
  .point02 .bubble {
    position: relative;
    font-size: calc(30 * (100vw / 750));
    margin: calc(70 * (100vw / 750)) 0 0 0;
  }
  .point02 .bubble::after {
    content: '';
    background-image: url(/img/usr/freepage/BT/SP_bubble.png);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    top: -75%;
    right: -51%;
    width: 130%;
    height: 130%;
  }
  .point03 .point_wrap {
    width: calc(670 * (100vw / 750));
    margin: 0 auto;
    display: flex;
    flex-direction: column-reverse;
  }
  .point03 p {
    font-size: calc(30 * (100vw / 750));
    text-align: center;
    margin-top: calc(40 * (100vw / 750));
  }
}
/* -
/* --------------------商品説明-------------------- */
.goods_wrap_355 {
  max-width: 1200px;
  background-color: #FCEEE5;
  margin: 160px auto 80px auto;
  padding: 80px 40px;
}
.goods_wrap_355:nth-of-type(2) {
  background-color: #F9DECD;
}
.goods_wrap_355:nth-of-type(3) {
  background-color: #FDEDDB;
}
.goods_wrap_355:nth-of-type(4) {
  background-color: #F7DEC1;
}
.goods img {
  width: 100%;
}
.btn_wrap {
  display: flex;
  justify-content: space-evenly;
  margin-top: 60px;
}
@media screen and (max-width:767px) {
  .goods_wrap_355 {
    max-width: 767px;
    margin: calc(80 * (100vw / 750)) auto calc(40 * (100vw / 750)) auto;
    padding: calc(40 * (100vw / 750));
  }
  .btn_wrap {
    display: flex;
    justify-content: space-between;
    margin-top: calc(30 * (100vw / 750));
  }
  .btn_wrap li {
    width: calc(327 * (100vw / 750));
  }
}