@charset "UTF-8";

body {
  color: #333;
  font-size: 100%;
}

html {
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif, "游ゴシック Medium";
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

img {
  width: 100%;
  vertical-align: bottom;
}

p {
  font-size: 1.5rem;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  /* border: solid 1px black; */
}

/* header ------------ */
#header {
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  text-align: center;
  background-color: #f26c69;
  z-index: 40;
}

.title-logo {
  width: 250px;
}

h1 {
  margin-left: 30px;
}

.cart {
  font-size: 300%;
  position: fixed;
  top: 0%;
  margin: 17px;
  right: 150px;
  color: #094D58;
  /* border: solid 2px green; */
}

.fa-solid {
  cursor: pointer;
}

/* （メニューが閉じている時 三） */
.toggle_btn {
  width: 90px;
  height: 90px;
  position: fixed;
  top: 0;
  right: 2%;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 50;
  /* border: solid 2px blue; */
}

.toggle_btn span {
  display: block;
  /* ← spanはインライン要素のため */
  position: absolute;
  width: 60%;
  height: 3px;
  /* 線の太さ */
  background-color: #094D58;
  transition: all 0.5s;
  left: 20%;
}

/*1本目の位置を設定*/
.toggle_btn span:nth-child(1) {
  top: 30%;
}

/* 2本目の位置 */
.toggle_btn span:nth-child(2) {
  top: 46%;
}

/*3本目の位置*/
.toggle_btn span:nth-child(3) {
  top: 62%;
}


#navi {
  position: fixed;
  top: 0;
  right: -30%;
  width: 30%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  font-size: large;
  /* z-index: 40; */
  visibility: hidden;
  transition: 0.5s;
}

.open #navi {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  transition: all 0.5s;
  /* z-index: 20; */
  visibility: visible;
  position: fixed;
}

.menu {
  width: 100%;
  display: block;
  margin-top: 60px;
  margin-right: 500px;
}

.menu a,
.sns a {
  line-height: 3rem;
  color: #fff;
}

.menu li,
.sns li {
  border-bottom: solid 1px #fff;
  width: 50%;
  margin: 0 auto;
}

.menu a:hover,
.sns li a:hover {
  color: #f26c69;
}

.sns {
  display: block;
  margin-top: 60px;
  margin-bottom: 40px;
}

/* menu 閉じてる時 */

/*1本目の線を-45度回転 → 45＋360dge １回転で45度に
transformで線のど真ん中の点を中心に動く*/
.open .toggle_btn span:nth-child(1) {
  top: 50%;
  transform: rotate(-45deg);
  background-color: #fff;
}

/*2本目の線*/
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
  transform: rotate(45deg);
}

/*3本目の線を45度回転*/
.open .toggle_btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
  background-color: #fff;
}


/* main ----------- */

.title {
  text-align: center;
  padding-top: 130px;
  font-size: 2.3rem;
  color: #094D58;
  margin-bottom: 5px;
  border-bottom: solid 6px #f26c69;
}

h2 {
  width: 45%;
  margin: 0 auto;
  border-bottom: solid 3px #f26c69;
}

/* item1～item11--------*/
#boxes-wrp {
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 50px auto;
}

.boxes img {
  width: 35%;
  height: 250px;
  margin-top: 1%;
  margin-right: 80px;
  border-radius: 50px;
  /* border: solid 2px blue; */
}

.boxs-text {
  width: 35%;
  height: 200px;
  margin: 4% 0;
  font-size: 1.3rem;
 
  /* border: solid 1px greenyellow; */
}


.btn {
  width: 200px;
  position: absolute;
  bottom: -20px;
bottom: -53px;
  left: 60%;
  padding: 6px;
  margin-bottom: 3%;
  text-align: center;
  border-radius: 40px;
  transition: 0.3s;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  background-color: #f26c69;
  border: solid 3px #094D58;
}

.btn:hover {
  background-color: #fff;
  border: solid 3px #f26c69;
  color: #094D58;
}

/* scroll-------------- */
.parent {
  /* grid-template-columns: 1fr 1fr 1fr 1fr 1fr; */
  /* grid-template-rows: 1fr; */
  width: 100%;
  margin-bottom: 20px;
  font-size: 0;
  /* text-align: center; */

}

.parent .slick-slide {
  margin-inline: 2vw;
  margin-top: 30px;
}
/* .parent > div {
    border: solid 2px red;
  } */


.parent img {
  height: 110px;
  object-fit: cover;
  border-radius: 10px 50px;
  /* border: solid 2px blue; */
}


/* footer----------- */
.footer {
  width: 100%;
  background-color: #f26c69;
}

.footer h1 {
  margin: 0 auto;
}

@media screen and (max-width: 930px) {
  .cart {
    font-size: 300%;
    margin: 2% 3%;
  }
  .title {
    font-size: 2rem;
  }

  #boxes-wrp {
    width: 95%;
  }

  .boxs-text {
    font-size: 1.1rem;
  }

  .btn {
    bottom: -30px;
  }

  .parent {
    margin-top: 50px;
  }
}

@media screen and (max-width: 700px) {

  .wrapper {
    width: 95%;
    padding-top: 20px;
    /* border: solid 2px #bbb; */
  }

  /* header ------------ */
  .title-logo {
    width: 30%;
  }

  h1 {
    margin-left: 20px;
  }

  .cart {
    font-size: 200%;
    right: 12%;
  }

  .toggle_btn {
    width: 10%;
    top: -3px;
    height: 65px;
  }

  .toggle_btn span {
    height: 2px;
  }

  #navi {
    width: 40%;
  }

  .menu,
  .sns {
    margin-top: 50px;
    /* background-color: aqua; */
  }

  /* main ----------- */
  .title {
    padding-top: 60px;
    font-size: 2.0rem;
  }

  h2 {
    width: 80%;
  }

  /* item1～item11--------*/
  #boxes-wrp {
    display: block;
    width: 70%;
  }

  .boxes img {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }

  .boxs-text {
    width: 100%;
    font-size: 1rem;
  }

  .btn {
    width: 35%;
    left: 32%;
    bottom: -10px;
  }

  .parent .slick-slide {
    margin-top: 0px;
  }
  .footer {
    margin-top: 50px;
  }

}