@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&family=Yusei+Magic&display=swap');
/* 
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Yusei Magic', sans-serif;
*/

html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'M PLUS Rounded 1c', sans-serif;

  position: relative;
  z-index: -1000;
}

.body-container {
  position: relative;
  z-index: -1000;
}

li,
a {
  text-decoration: none;
  list-style: none;
}

/* 丸いボタン */
.btn-circle {
  width: 80px;
  height: 55px;
  background-color: #ffffff;
  border-radius: 50px;

  display: flex;
  flex-direction: row;
}

.btn-circle i {
  font-size: 30px;
  color: #0092dd;
}

.flavor-btn,
.about-btn {
  width: 95px;
  height: 55px;
}

.flavor-btn i,
.about-btn i {
  font-size: 16px;
}

/* font awesome  */
i {
  display: block;
  margin: auto;
  padding: 0;

  font-size: 26px;
}

.nav-fixed i.fa-apple-whole::before,
.nav-fixed i.fa-hand-point-up::before {
  font-size: 28px;
}

.flavor-container i.fa-apple-whole::before {
  font-size: 45px;
}

.about-container i.fa-hand-point-up::before {
  font-size: 43px;
}

/* for pc display none------------------ */
.mobile-none {
  display: none;
}

/* animation opacity --------------------- */
.menu-block-text,
.menu-block-circle {
  opacity: 0%;
}

/* nav-fixed */
.nav-fixed-ul {
  width: 100%;
  max-width: 414px;
  height: 70px;

  position: fixed;
  bottom: 0;
  z-index: 1000;

  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.nav-fixed-ul li {
  width: 100%;

  background-color: #ffffff;

  display: flex;

  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
}

.nav-fixed-ul li:nth-child(1) {
  border-radius: 50% 0 0 0;
}

.nav-fixed-ul li:nth-child(4) {
  border-radius: 0 50% 0 0;

  background-color: #ed1b24;
}

.nav-fixed-ul li a {
  width: 100%;
  height: 100%;

  margin: auto;
  padding: 16px 0 8px;

  font-size: 12px;
  font-weight: bold;

  color: #ed1b24;

  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.nav-white i {
  color: #ffffff;
}

.nav-white span {
  color: #ffffff;
}

/* container ---------------------------------- */
.container {
  width: 100%;
  background-color: #fffef0;
  margin-top: 30px;

  position: relative;
  z-index: -100;
}

/* title */
.title-container {
  width: 100%;
  height: 140px;

  background-color: #0092dd;
  border-bottom-left-radius: 50% 20%;
  border-bottom-right-radius: 50% 20%;

  display: flex;
  flex-direction: row;
}

.main-logo {
  width: 50px;

  position: fixed;
  top: 40px;
  left: 25px;
  z-index: 900;
}

.main-logo img {
  width: 100%;
  filter: drop-shadow(1px 3px 10px rgba(0, 0, 0, 0.4));
}

.btn-instagram {
  width: 38px;
  height: 38px;

  position: fixed;
  top: 105px;
  left: 33px;
  z-index: 800;

  box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.4);
  animation: moveDown 1s ease-in-out forwards;
}

@keyframes moveDown {
  to {
    top: 135px;
  }
}
.btn-instagram i {
  font-size: 26px;
}

/* content-header ---------------------------------*/
.content-header {
  margin: auto;

  align-items: center;

  color: #ffffff;

  display: flex;
  flex-direction: row;
}

.content-header i {
  font-size: 40px;
  margin-right: 7px;
}

.content-header h2 {
  font-size: 32px;
  line-height: 35px;
}

.content-header h3 {
  font-size: 16px;
  margin-left: 5%;
}

.flavor-container .content-header h3 {
  font-size: 16px;
  margin-left: 10%;
}

.point-container .content-header h3 {
  font-size: 16px;
  margin-left: 0;
}

/* ----------------------------------------------- */

/* content */

.design-container {
  width: 100%;
  padding: 6% 8%;

  background-color: #fffef0;
  color: #aa5213;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.design-title {
  width: 100%;
  height: 450px;

  background-color: #ffbe00;
  background-image: url(../images/harapaca.png);
  background-position: center 83%;
  background-size: contain;
  background-repeat: no-repeat;
}

.design-header-text {
  text-wrap: nowrap;
}

.design-header-text h3 {
  margin-left: 0;
  margin-top: 1px;
}

.des-text h3 {
  margin: 6px auto;
  font-size: 19px;
}

.des-text p {
  margin: auto;
  margin-bottom: 6px;
  font-size: 16px;
}

/* slider */
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 98%;
  margin: 0 auto;
}

.slider img {
  width: 60vw; /*スライダー内の画像を60vwにしてレスポンシブ化*/
  max-width: 250px;
  height: auto;
}

.slider .slick-slide {
  transform: scale(0.8); /*左右の画像のサイズを80%に*/
  transition: all 0.5s; /*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5; /*透過50%*/
}

.slider .slick-slide.slick-center {
  transform: scale(1); /*中央の画像のサイズだけ等倍に*/
  opacity: 1; /*透過なし*/
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  z-index: 1000;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 4px solid #ffbe00; /*矢印の色*/
  border-right: 4px solid #ffbe00; /*矢印の色*/
  height: 13px;
  width: 13px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
  text-align: center;
  margin: 12px 0 10px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;

  border: 2px solid #ffbe00;
  /* KEY POINT */

  background: #fffef0; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #ffbe00; /*ドットボタンの現在地表示の色*/
}

/* mail */
.des-mail {
  text-decoration: none;
  font-style: normal;
  text-align: center;
  display: block;

  color: #aa5213;
  margin-bottom: 6px;
  font-size: 18px;
}

/* des-btn */
/* .des-btn {
    width: 260px;
    margin: 20px auto;

    display: flex;
    flex-direction: row;
}

.des-btn a {
    margin: auto;
    font-size: 16px;
    border-radius: 50px;

    text-align: center;
    align-items: center;

    display: flex;
    flex-direction: row;
    justify-content: center;

    background-color: #ffbe00;
    color: #fffef0;
}

.des-btn a:nth-child(1) {
    width: 180px;
    height: 60px;

    text-wrap: nowrap;
}

.des-btn a:nth-child(2) {
    width: 60px;
    height: 60px;
}

.des-btn a {
  width: 60px;
  height: 60px;
}

.des-btn a:nth-child(1) i {
    margin: auto;
    margin-left: 4px;
    font-size: 16px;
} */

.des-melt {
  width: 100%;
  background-color: #0092dd;
}

.des-melt img {
  width: 100%;
}

/* footer ーーーーーーーーーーーーーーーーーーーーーーー */
footer {
  width: 100%;
  height: 700px;
  background-color: #0092dd;

  position: relative;
}

.footer-content {
  width: 85%;
  height: 550px;
  margin: auto;
  padding-top: 10%;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-nav {
  width: 100%;

  margin: auto;
}

.footer-nav p {
  margin-top: 20px;
  text-align: center;
  align-items: center;
  font-size: 16px;
  color: #ffffff;
}

.footer-title {
  width: 80%;
  margin: auto;

  display: flex;
  flex-direction: row;
  justify-content: center;
}

.footer-title img {
  width: 100%;
}

.contact-btn {
  width: 220px;
  height: 60px;
  margin: auto;
  align-items: center;
  text-align: center;

  display: flex;
  flex-direction: row;

  background-color: #ffffff;
  border-radius: 50px;
}

.contact-btn a {
  margin: auto;
  font-size: 16px;

  color: #ed1b24;

  display: flex;
}

.contact-btn i {
  margin: auto;
  margin-left: 4px;
  font-size: 16px;
}

.footer-btn {
  width: 50px;
  height: 50px;

  position: absolute;
  right: 10%;
  bottom: 15%;
}

.footer-btn a {
  margin: auto;
  background-color: #ffffff;
}

.footer-btn i {
  color: #ed1b24;
}

/* mobile view */
@media (min-width: 414px) {
  .body-container {
    width: 414px;
    margin: auto;
  }

  body {
    background-color: #0092dd;
  }
}

/* tablet view */
@media (min-width: 768px) {
  .nav-fixed-ul {
    display: none;
  }

  .nav-pc {
    display: flex;
    width: 150px;

    background-color: transparent;

    position: fixed;
    top: 130px;
    left: 3%;
  }

  .nav-pc a {
    text-shadow: 1px 3px 2px #0092dd;
  }

  /* SNS */
  .main-logo {
    width: 60px;
  }

  .btn-instagram {
    display: none;
  }

  .sns-pc {
    width: 200px;

    display: flex;
    flex-direction: column;

    position: fixed;
    top: 80px;
    right: -12%;
  }

  .sns-pc a {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;

    background-color: #ffffff;
    border-radius: 50px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.3);
  }

  .sns-pc img {
    height: 50%;
    margin: auto;
  }

  /* design for pc */
  .body-container {
    position: relative;
  }

  .design-pc {
    display: flex;
  }

  .design-pc .circle1 {
    width: 20%;

    position: absolute;
    top: 38%;
    left: -45%;
    z-index: -1000;
  }

  .design-pc .circle2 {
    width: 55%;

    position: absolute;
    top: 40%;
    left: -100%;
    z-index: -1000;
  }

  .design-pc .candy1 {
    width: 30%;

    position: absolute;
    top: 65%;
    left: 120%;
    z-index: -1000;
  }

  .design-pc .candy2 {
    width: 60%;

    position: absolute;
    top: 80%;
    left: -100%;
    z-index: -1000;
  }

  /* footer */
  footer {
    height: 400px;
  }

  .footer-content {
    height: 250px;

    padding-top: 10%;
  }

  .footer-nav {
    display: none;
  }
}

/* pc view */
@media (min-width: 950px) {
  /* nav */
  .nav-pc {
    display: flex;
    width: 150px;

    background-color: transparent;

    position: fixed;
    top: 130px;
    left: 7%;
  }

  /* sns */
  .sns-pc {
    flex-direction: row;

    position: fixed;
    top: 80px;
    right: 3%;
  }

  .sns-pc a {
    margin-left: 10px;
  }
}
